Changeset 2944


Ignore:
Timestamp:
05/30/10 04:59:18 (21 months ago)
Author:
nuxwin
Message:
  • [GUI] Typo
Location:
trunk/gui/include/IspCP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/include/IspCP/Config.php

    r2943 r2944  
    4343 * Example: 
    4444 * 
    45  * $parameters = array('PLUGIN_NAME => 'billing', PLUGIN_VERSION => '1.0.0'); 
     45 * $parameters = array('PLUGIN_NAME' => 'billing', 'PLUGIN_VERSION' => '1.0.0'); 
    4646 * IspCP_Registry::set('My_ConfigHandler', new IspCP_ConfigHandler($parameters)); 
    4747 * 
  • trunk/gui/include/IspCP/ConfigHandler/Db.php

    r2943 r2944  
    5656         * 
    5757         * For performance reason, the PDOStatement object is created only once at 
    58          * the first execution of the {@link insert()} method. 
     58         * the first execution of the {@link _insert()} method. 
    5959         * 
    6060         * @var PDOStatement 
     
    6666         * 
    6767         * For performance reason, the PDOStatement object is created only once at 
    68          * the first execution of the {@link update()} method. 
     68         * the first execution of the {@link _update()} method. 
    6969         * 
    7070         * @var PDOStatement 
     
    7676         * 
    7777         * For performance reason, the PDOStatement object is created only once at 
    78          * the first execution of the {@link delete()} method. 
     78         * the first execution of the {@link _delete()} method. 
    7979         * 
    8080         * @var PDOStatement 
     
    8686         * 
    8787         * This variable is bound to the PDOStatement objects that are used by 
    88          * {@link insert()} , {@link update()} and {@link delete()} methods. 
     88         * {@link _insert()} , {@link _update()} and {@link _delete()} methods. 
    8989         * 
    9090         * @var string Configuration parameter key name 
     
    9696         * 
    9797         * This variable is bound to the PDOStatement objects that are used by both 
    98          * {@link insert()} and {@link update()} methods. 
     98         * {@link _insert()} and {@link _update()} methods. 
    9999         * 
    100100         * @var mixed Configuration parameter value 
     
    133133         * For an array, the possible parameters are: 
    134134         * 
    135          * db: Reference to a raw PDO (unwrapped) instance 
     135         * db: Reference to PDO instance 
    136136         * table_name: Database configuration table name 
    137137         * key_column: Database configuration key column name 
     
    142142         * For a single parameter, only a PDO instance is accepted. 
    143143         * 
    144          * @param PDO|array A PDO instance or an array of parameter that contain at 
     144         * @param PDO|array A PDO instance or an array of parameters that contain at 
    145145         *      least a PDO instance 
    146146         * @throws Exception 
     
    190190         * 
    191191         * @param string $index Configuration parameter key name 
    192          * @param string|int $value Configuration parameter value 
     192         * @param mixed $value Configuration parameter value 
    193193         * @return void 
    194194         */ 
     
    213213         * 
    214214         * @throws Exception 
    215          * @return void 
     215         * @return Array that contain all configuration parameters 
    216216         */ 
    217217        private function _load_all() { 
Note: See TracChangeset for help on using the changeset viewer.