0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
4.0.5-0
/
standard
/
htdocs
/
inc
/
files
/
[
Home
]
File: _files.init.php
<?php /** * This is the init file for the files module * * @copyright (c)2003-2010 by Francois PLANQUE - {@link http://fplanque.net/} * * @package admin * * @version $Id: _files.init.php,v 1.9.2.3 2010/10/19 01:04:48 fplanque Exp $ */ if( !defined('EVO_CONFIG_LOADED') ) die( 'Please, do not access this page directly.' ); /** * Aliases for table names: * * (You should not need to change them. * If you want to have multiple b2evo installations in a single database you should * change {@link $tableprefix} in _basic_config.php) */ $db_config['aliases'] = array_merge( $db_config['aliases'], array( 'T_files' => $tableprefix.'files', 'T_filetypes' => $tableprefix.'filetypes', ) ); /** * Controller mappings. * * For each controller name, we associate a controller file to be found in /inc/ . * The advantage of this indirection is that it is easy to reorganize the controllers into * subdirectories by modules. It is also easy to deactivate some controllers if you don't * want to provide this functionality on a given installation. * * Note: while the controller mappings might more or less follow the menu structure, we do not merge * the two tables since we could, at any time, decide to make a skin with a different menu structure. * The controllers however would most likely remain the same. * * @global array */ $ctrl_mappings = array_merge( $ctrl_mappings, array( 'files' => 'files/files.ctrl.php', 'fileset' => 'files/file_settings.ctrl.php', 'filetypes' => 'files/file_types.ctrl.php', ) ); /** * Get the FileCache * * @return FileCache */ function & get_FileCache() { global $FileCache; if( ! isset( $FileCache ) ) { // Cache doesn't exist yet: load_class( 'files/model/_filecache.class.php', 'FileCache' ); $FileCache = new FileCache(); // COPY (FUNC) } return $FileCache; } /** * Get the FileRootCache * * @return FileRootCache */ function & get_FileRootCache() { global $Plugins, $FileRootCache; if( ! isset( $FileRootCache ) ) { // Cache doesn't exist yet: load_class( 'files/model/_filerootcache.class.php', 'FileRootCache' ); $Plugins->get_object_from_cacheplugin_or_create( 'FileRootCache' ); } return $FileRootCache; } /** * Get the FiletypeCache * * @return FiletypeCache */ function & get_FiletypeCache() { global $Plugins; global $FiletypeCache; if( ! isset( $FiletypeCache ) ) { // Cache doesn't exist yet: load_class( 'files/model/_filetypecache.class.php', 'FiletypeCache' ); $Plugins->get_object_from_cacheplugin_or_create( 'FiletypeCache' ); } return $FiletypeCache; } /** * adsense_Module definition */ class files_Module extends Module { /** * Do the initializations. Called from in _main.inc.php. * This is typically where classes matching DB tables for this module are registered/loaded. * * Note: this should only load/register things that are going to be needed application wide, * for example: for constructing menus. * Anything that is needed only in a specific controller should be loaded only there. * Anything that is needed only in a specific view should be loaded only there. */ function init() { load_class( 'files/model/_file.class.php', 'File' ); load_class( 'files/model/_filetype.class.php', 'FileType' ); load_class( 'files/model/_filetypecache.class.php', 'FileTypeCache' ); } /** * Build teh evobar menu */ function build_evobar_menu() { } /** * Builds the 1st half of the menu. This is the one with the most important features */ function build_menu_1() { global $blog, $dispatcher; /** * @var User */ global $current_User; global $Blog; global $Settings; /** * @var AdminUI_general */ global $AdminUI; if( $current_User->check_perm( 'files', 'view', false, $blog ? $blog : NULL ) ) { // FM enabled and permission to view files: $AdminUI->add_menu_entries( NULL, array( 'files' => array( 'text' => T_('Files'), 'title' => T_('File management'), 'href' => $dispatcher.'?ctrl=files', // Controller may add subtabs ), ) ); } } /** * Builds the 3rd half of the menu. This is the one with the configuration features * * At some point this might be displayed differently than the 1st half. */ function build_menu_3() { } } $files_Module = new files_Module(); /* * $Log: _files.init.php,v $ */ ?>
© 2017 -
ZeroByte.ID
.