0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
4.1.5b-1
/
standard
/
scripts
/
[
Home
]
File: _admin.php.in
<?php /** * This is the admin config file * * This sets how the back-office/admin interface works * * @package conf */ if( !defined('EVO_CONFIG_LOADED') ) die( 'Please, do not access this page directly.' ); /** * Cross posting * * Possible values: * - -1 if you don't want to use categories at all * - 0 if you want users to post to a single category only * - 1 if you want to be able to cross-post among multiple categories * - 2 if you want to be able to cross-post among multiple blogs/categories * - 3 if you want to be able to change main cat among blogs (which will move the * posts from one blog to another; use with caution) * * @todo fp>This should be moved to the backoffice. * In the BO, this should actually be split into: * App Settings: * checkbox [] allow cross posting * another checkbox [] allow moving posting between different blogs * Each blog's settings: radio between: * o One category per post * o Multiple categories per post (requires transparent handling of main cat) * o Main cat + extra cats * o Don't use categories (this requires to transparently manage a default category) * * @global int $allow_cross_posting */ $allow_cross_posting = @@ALLOW_CROSS_POSTING@@; /** * Locked post type IDs. * * These post types can't be edited or deleted in the post type editor. * They're needed by certain b2evolution features, so * don't remove any IDs from this array. * * @global array $posttypes_locked_IDs */ $posttypes_locked_IDs = array( 1000, 1500, 1520, 1530, 1570, 1600, 2000, 3000 ); /** * Reserved post type IDs. * * These post types are reserved for future use and can't be edited or * deleted in the post type editor. It also is not possible to select * them when creating a new post. * Do not remove any IDs from this array. * * @global array $posttypes_reserved_IDs */ $posttypes_reserved_IDs = array( 4000, 5000 ); ?>