[ Index ]
 

Code source de eZ Publish 3.9.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/kernel/setup/ -> module.php (source)

   1  <?php
   2  //
   3  // Created on: <17-Apr-2002 11:05:08 amos>
   4  //
   5  // SOFTWARE NAME: eZ publish
   6  // SOFTWARE RELEASE: 3.9.0
   7  // BUILD VERSION: 17785
   8  // COPYRIGHT NOTICE: Copyright (C) 1999-2006 eZ systems AS
   9  // SOFTWARE LICENSE: GNU General Public License v2.0
  10  // NOTICE: >
  11  //   This program is free software; you can redistribute it and/or
  12  //   modify it under the terms of version 2.0  of the GNU General
  13  //   Public License as published by the Free Software Foundation.
  14  //
  15  //   This program is distributed in the hope that it will be useful,
  16  //   but WITHOUT ANY WARRANTY; without even the implied warranty of
  17  //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18  //   GNU General Public License for more details.
  19  //
  20  //   You should have received a copy of version 2.0 of the GNU General
  21  //   Public License along with this program; if not, write to the Free
  22  //   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  23  //   MA 02110-1301, USA.
  24  //
  25  //
  26  
  27  $Module = array( "name" => "eZSetup",
  28                   "variable_params" => true,
  29                   'ui_component_match' => 'view',
  30                   "function" => array(
  31                       "script" => "setup.php",
  32                       "params" => array( ) ) );
  33  
  34  $ViewList = array();
  35  $ViewList["init"] = array(
  36      "script" => "ezsetup.php",
  37      'single_post_actions' => array( 'ChangeStepAction' => 'ChangeStep' ),
  38      'post_value_action_parameters' => array( 'ChangeStep' => array( 'Step' => 'StepButton' ) ),
  39      "params" => array() );
  40  
  41  $ViewList["cache"] = array(
  42      "script" => "cache.php",
  43      'functions' => array( 'managecache' ),
  44      'ui_context' => 'administration',
  45      "default_navigation_part" => 'ezsetupnavigationpart',
  46      'single_post_actions' => array( 'ClearCacheButton' => 'ClearCache',
  47                                      'ClearAllCacheButton' => 'ClearAllCache',
  48                                      'ClearContentCacheButton' => 'ClearContentCache',
  49                                      'ClearINICacheButton' => 'ClearINICache',
  50                                      'ClearTemplateCacheButton' => 'ClearTemplateCache',
  51                                      'RegenerateStaticCacheButton' => 'RegenerateStaticCache' ),
  52      'post_action_parameters' => array( 'ClearCache' => array( 'CacheList' => 'CacheList' ) ),
  53      "params" => array() );
  54  
  55  $ViewList['cachetoolbar'] = array(
  56      'script' => 'cachetoolbar.php',
  57      'functions' => array( 'managecache' ),
  58      'single_post_actions' => array( 'ClearCacheButton' => 'ClearCache' ),
  59      'post_action_parameters' => array( 'ClearCache' => array( 'CacheType' => 'CacheTypeValue',
  60                                                                'NodeID' => 'NodeID',
  61                                                                'ObjectID' => 'ObjectID' ) ),
  62      'params' => array() );
  63  
  64  $ViewList['settingstoolbar'] = array(
  65      'script' => 'settingstoolbar.php',
  66      'single_post_actions' => array( 'SetButton' => 'Set' ),
  67      'post_action_parameters' => array( 'Set' => array( 'SiteAccess' => 'SiteAccess',
  68                                                         'AllSettingsList' => 'AllSettingsList',
  69                                                         'SelectedList' => 'SelectedList' ) ),
  70      'params' => array() );
  71  
  72  $ViewList['session'] = array(
  73      'script'                  => 'session.php',
  74      'ui_context'              => 'administration',
  75      'default_navigation_part' => 'ezsetupnavigationpart',
  76      'single_post_actions'     => array( 'RemoveAllSessionsButton' => 'RemoveAllSessions',
  77                                          'ShowAllUsersButton' => 'ShowAllUsers',
  78                                          'ChangeFilterButton' => 'ChangeFilter',
  79                                          'RemoveTimedOutSessionsButton' => 'RemoveTimedOutSessions',
  80                                          'RemoveSelectedSessionsButton' => 'RemoveSelectedSessions' ),
  81      'post_action_parameters' => array( 'ChangeFilter' => array( 'FilterType' => 'FilterType',
  82                                                                  'ExpirationFilterType' => 'ExpirationFilterType',
  83                                                                  'InactiveUsersCheck' => 'InactiveUsersCheck',
  84                                                                  'InactiveUsersCheckExists' => 'InactiveUsersCheckExists' ) ),
  85      'params' => array( 'UserID' ) );
  86  
  87  $ViewList["info"] = array(
  88      "script" => "info.php",
  89      "default_navigation_part" => 'ezsetupnavigationpart',
  90      "params" => array( ) );
  91  
  92  $ViewList["rad"] = array(
  93      "script" => "rad.php",
  94      'ui_context' => 'administration',
  95      "default_navigation_part" => 'ezsetupnavigationpart',
  96      "params" => array( ) );
  97  
  98  $ViewList["datatype"] = array(
  99      "script" => "datatype.php",
 100      'ui_context' => 'administration',
 101      "default_navigation_part" => 'ezsetupnavigationpart',
 102      'single_post_actions' => array( 'CreateOverrideButton' => 'CreateOverride'
 103                                      ),
 104      "params" => array( ) );
 105  
 106  $ViewList["templateoperator"] = array(
 107      "script" => "templateoperator.php",
 108      'ui_context' => 'administration',
 109      "default_navigation_part" => 'ezsetupnavigationpart',
 110      'single_post_actions' => array( 'CreateOverrideButton' => 'CreateOverride'
 111                                      ),
 112      "params" => array( ) );
 113  
 114  $ViewList["extensions"] = array(
 115      "script" => "extensions.php",
 116      'ui_context' => 'administration',
 117      "default_navigation_part" => 'ezsetupnavigationpart',
 118      'single_post_actions' => array( 'ActivateExtensionsButton' => 'ActivateExtensions' ),
 119      "params" => array( ) );
 120  
 121  $ViewList['menu'] = array(
 122      'script' => 'setupmenu.php',
 123      'default_navigation_part' => 'ezsetupnavigationpart',
 124      'params' => array( ) );
 125  
 126  $ViewList['systemupgrade'] = array(
 127      'script' => 'systemupgrade.php',
 128      'ui_context' => 'administration',
 129      'default_navigation_part' => 'ezsetupnavigationpart',
 130      'single_post_actions' => array( 'MD5CheckButton' => 'MD5Check',
 131                                      'DBCheckButton' => 'DBCheck' ),
 132      'params' => array( ) );
 133  
 134  
 135  /*! Provided for backwards compatability */
 136  $ViewList["toolbarlist"] = array(
 137      "script" => "toolbarlist.php",
 138      "default_navigation_part" => 'ezsetupnavigationpart',
 139      "params" => array( 'SiteAccess' ) );
 140  
 141  $ViewList["toolbar"] = array(
 142      "script" => "toolbar.php",
 143      'ui_context' => 'edit',
 144      "default_navigation_part" => 'ezsetupnavigationpart',
 145      'post_actions' => array( 'BrowseActionName' ),
 146      "params" => array( 'SiteAccess', 'Position' ) );
 147  
 148  $ViewList["menuconfig"] = array(
 149      "script" => "menuconfig.php",
 150      'default_navigation_part' => 'ezsetupnavigationpart',
 151      'single_post_actions' => array( 'StoreButton' => 'Store',
 152                                      'SelectCurrentSiteAccessButton' => 'SelectCurrentSiteAccess' ),
 153      "params" => array() );
 154  
 155  $ViewList["templatelist"] = array(
 156      'script' => 'templatelist.php',
 157      'default_navigation_part' => 'ezsetupnavigationpart',
 158      'params' => array( ),
 159      'unordered_params' => array( 'offset' => 'Offset' ) );
 160  
 161  $ViewList["templateview"] = array(
 162      "script" => "templateview.php",
 163      "default_navigation_part" => 'ezsetupnavigationpart',
 164      'single_post_actions' => array( 'SelectCurrentSiteAccessButton' => 'SelectCurrentSiteAccess',
 165                                      'RemoveOverrideButton' => 'RemoveOverride',
 166                                      'UpdateOverrideButton' => 'UpdateOverride',
 167                                      'NewOverrideButton' => 'NewOverride' ),
 168      "params" => array( ) );
 169  
 170  $ViewList["templateedit"] = array(
 171      "script" => "templateedit.php",
 172      'ui_context' => 'edit',
 173      "default_navigation_part" => 'ezsetupnavigationpart',
 174      'single_post_actions' => array( 'SaveButton' => 'Save',
 175                                      'DiscardButton' => 'Discard' ),
 176      "params" => array( ) );
 177  
 178  $ViewList["templatecreate"] = array(
 179      "script" => "templatecreate.php",
 180      'ui_context' => 'edit',
 181      "default_navigation_part" => 'ezsetupnavigationpart',
 182      'single_post_actions' => array( 'CreateOverrideButton' => 'CreateOverride',
 183                                      'CancelOverrideButton' => 'CancelOverride' ),
 184      "params" => array( ) );
 185  
 186  
 187  
 188  $FunctionList['managecache'] = array();
 189  
 190  ?>


Généré le : Sat Feb 24 10:30:04 2007 par Balluche grâce à PHPXref 0.7