Show
Ignore:
Timestamp:
11/04/06 23:29:49 (2 years ago)
Author:
dominik
Message:

phpdoc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/database/AgaviPropelDatabase.class.php

    r1189 r1237  
    7575  /** 
    7676   * Stores whether a Propel configuration file path has been explicitly set 
    77    * as default for use with Propel::init() in database.ini 
     77   * as default for use with Propel::init() in database.xml 
    7878   * 
    7979   * @var        bool A flag indicating whether a default config path was set. 
     
    8585  /** 
    8686   * Returns the path to the config file that is passed to Propel::init() when 
    87    * PropelAutoload.php is used in autoload.ini 
     87   * PropelAutoload.php is used in autoload.xml 
    8888   * 
    8989   * @return     mixed The path if one has been set, otherwise null 
     
    9999  /** 
    100100   * Sets the path to the config file that is passed to Propel::init() when 
    101    * PropelAutoload.php is used in autoload.ini 
     101   * PropelAutoload.php is used in autoload.xml 
    102102   * 
    103103   * @param      string The path to the configuration file 
     
    117117  /** 
    118118   * Returns whether a Propel configuration file path has been explicitly set 
    119    * as default for use with Propel::init() in database.ini 
     119   * as default for use with Propel::init() in database.xml 
    120120   * 
    121121   * @return     bool true, if a Propel configuration file path has explicitely 
    122    *              been set as default in database.ini, otherwise false 
     122   *                  been set as default in database.ini, otherwise false 
    123123   * 
    124124   * @author     David Zuelke <dz@bitxtender.com> 
     
    132132  /** 
    133133   * Sets a flag indicating a Propel configuration file path has been 
    134    * explicitly set as default for use with Propel::init() in database.ini 
     134   * explicitly set as default for use with Propel::init() in database.xml 
    135135   * 
    136136   * @author     David Zuelke <dz@bitxtender.com> 
     
    144144  /** 
    145145   * Connect to the database. 
    146    * This method is used only if param.use_autoload is false 
     146   * This method is used only if the <kbd>use_autoload</kbd> parameter is false 
    147147   *  
    148148   * 
     
    204204   * @return     mixed A database connection. 
    205205   * 
    206    * @throws     <b>AgaviDatabaseException</b> If a connection could not be retrieved. 
     206   * @throws     <b>AgaviDatabaseException</b> If a connection could not be 
     207   *                                           retrieved. 
    207208   * 
    208209   * @author     Sean Kerr <skerr@mojavi.org> 
     
    241242   * Load Propel config 
    242243   *  
     244   * @param      AgaviDatabaseManager The database manager of this instance. 
    243245   * @param      array An associative array of initialization parameters. 
    244246   * 
     
    302304  /** 
    303305   * Get the path to the Propel config file for this connection which has been 
    304    * specified in databases.ini. 
     306   * specified in databases.xml. 
    305307   * 
    306308   * @return     string The path to the Propel configuration file 
     
    317319   * Execute the shutdown procedure. 
    318320   * 
    319    * @throws     <b>AgaviDatabaseException</b> If an error occurs while shutting  
     321   * @throws     <b>AgaviDatabaseException</b> If an error occurs while shutting 
    320322   *                                           down this database. 
    321323   *