- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
949 B
PHP
Executable File
29 lines
949 B
PHP
Executable File
<?php
|
|
/**
|
|
* Factory Pages
|
|
*
|
|
* Factory is an internal professional framework developed by OnePress Ltd
|
|
* for own needs. Please don't use it to create your own independent plugins.
|
|
* In future the one will be documentated and released for public.
|
|
*
|
|
* @author Paul Kashtanoff <paul@byonepress.com>
|
|
* @copyright (c) 2013, OnePress Ltd
|
|
*
|
|
* @package core
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
// module provides function only for the admin area
|
|
if ( !is_admin() ) return;
|
|
|
|
if (defined('FACTORY_PAGES_321_LOADED')) return;
|
|
define('FACTORY_PAGES_321_LOADED', true);
|
|
|
|
define('FACTORY_PAGES_321_DIR', dirname(__FILE__));
|
|
define('FACTORY_PAGES_321_URL', plugins_url(null, __FILE__ ));
|
|
|
|
if ( !defined('FACTORY_FLAT_ADMIN')) define('FACTORY_FLAT_ADMIN', true);
|
|
|
|
require(FACTORY_PAGES_321_DIR . '/pages.php');
|
|
require(FACTORY_PAGES_321_DIR . '/includes/page.class.php');
|
|
require(FACTORY_PAGES_321_DIR . '/includes/admin-page.class.php'); |