[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 <?php 2 // 3 // Created on: <11-Aug-2003 18:30:20 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 /*! \file function_definition.php 28 */ 29 30 $FunctionList = array(); 31 $FunctionList['list'] = array( 'name' => 'list', 32 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 33 'class' => 'eZPackageFunctionCollection', 34 'method' => 'fetchList' ), 35 'parameter_type' => 'standard', 36 'parameters' => array( array( 'name' => 'filter_array', 37 'type' => 'array', 38 'required' => false, 39 'default' => false ), 40 array( 'name' => 'offset', 41 'type' => 'integer', 42 'default' => false, 43 'required' => false ), 44 array( 'name' => 'limit', 45 'type' => 'integer', 46 'default' => false, 47 'required' => false ), 48 array( 'name' => 'repository_id', 49 'type' => 'string', 50 'default' => false, 51 'required' => false ) ) ); 52 $FunctionList['maintainer_role_list'] = array( 'name' => 'maintainer_role_list', 53 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 54 'class' => 'eZPackageFunctionCollection', 55 'method' => 'fetchMaintainerRoleList' ), 56 'parameter_type' => 'standard', 57 'parameters' => array( array( 'name' => 'type', 58 'type' => 'string', 59 'required' => false, 60 'default' => false ), 61 array( 'name' => 'check_roles', 62 'type' => 'boolean', 63 'required' => false, 64 'default' => false ) ) ); 65 $FunctionList['can_create'] = array( 'name' => 'can_create', 66 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 67 'class' => 'eZPackageFunctionCollection', 68 'method' => 'canCreate' ), 69 'parameter_type' => 'standard', 70 'parameters' => array() ); 71 72 $FunctionList['can_edit'] = array( 'name' => 'can_edit', 73 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 74 'class' => 'eZPackageFunctionCollection', 75 'method' => 'canEdit' ), 76 'parameter_type' => 'standard', 77 'parameters' => array() ); 78 79 $FunctionList['can_import'] = array( 'name' => 'can_import', 80 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 81 'class' => 'eZPackageFunctionCollection', 82 'method' => 'canImport' ), 83 'parameter_type' => 'standard', 84 'parameters' => array() ); 85 86 $FunctionList['can_install'] = array( 'name' => 'can_install', 87 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 88 'class' => 'eZPackageFunctionCollection', 89 'method' => 'canInstall' ), 90 'parameter_type' => 'standard', 91 'parameters' => array() ); 92 93 $FunctionList['can_export'] = array( 'name' => 'can_export', 94 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 95 'class' => 'eZPackageFunctionCollection', 96 'method' => 'canExport' ), 97 'parameter_type' => 'standard', 98 'parameters' => array() ); 99 100 $FunctionList['can_read'] = array( 'name' => 'can_read', 101 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 102 'class' => 'eZPackageFunctionCollection', 103 'method' => 'canRead' ), 104 'parameter_type' => 'standard', 105 'parameters' => array() ); 106 107 $FunctionList['can_list'] = array( 'name' => 'can_list', 108 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 109 'class' => 'eZPackageFunctionCollection', 110 'method' => 'canList' ), 111 'parameter_type' => 'standard', 112 'parameters' => array() ); 113 114 $FunctionList['can_remove'] = array( 'name' => 'can_remove', 115 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 116 'class' => 'eZPackageFunctionCollection', 117 'method' => 'canRemove' ), 118 'parameter_type' => 'standard', 119 'parameters' => array() ); 120 121 122 $FunctionList['item'] = array( 'name' => 'item', 123 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 124 'class' => 'eZPackageFunctionCollection', 125 'method' => 'fetchPackage' ), 126 'parameter_type' => 'standard', 127 'parameters' => array( array( 'name' => 'package_name', 128 'type' => 'string', 129 'required' => true ), 130 array( 'name' => 'repository_id', 131 'type' => 'string', 132 'default' => false, 133 'required' => false ) ) ); 134 135 $FunctionList['dependent_list'] = array( 'name' => 'dependent_list', 136 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 137 'class' => 'eZPackageFunctionCollection', 138 'method' => 'fetchDependentPackageList' ), 139 'parameter_type' => 'standard', 140 'parameters' => array( array( 'name' => 'package_name', 141 'type' => 'string', 142 'required' => true ), 143 array( 'name' => 'parameters', 144 'type' => 'array', 145 'required' => false, 146 'default' => false ), 147 array( 'name' => 'repository_id', 148 'type' => 'string', 149 'default' => false, 150 'required' => false ) ) ); 151 $FunctionList['repository_list'] = array( 'name' => 'repository_list', 152 'call_method' => array( 'include_file' => 'kernel/package/ezpackagefunctioncollection.php', 153 'class' => 'eZPackageFunctionCollection', 154 'method' => 'fetchRepositoryList' ), 155 'parameter_type' => 'standard', 156 'parameters' => array() ); 157 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |