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/core/AgaviContext.class.php

    r1063 r1237  
    123123  protected function __construct()  
    124124  { 
    125     // Singleton, use Context::getInstance($controller) to get the instance 
     125    // Singleton, setting up the class happens in initialize() 
    126126  } 
    127127 
     
    164164   * @param      name A database name. 
    165165   * 
    166    * @return     mixed An AgaviDatabase instance. 
    167    * 
    168    * @throws     <b>AgaviDatabaseException</b> If the requested database name does 
    169    *                                           not exist. 
     166   * @return     mixed A database connection. 
     167   * 
     168   * @throws     <b>AgaviDatabaseException</b> If the requested database name  
     169   *                                           does not exist. 
    170170   * 
    171171   * @author     Sean Kerr <skerr@mojavi.org> 
     
    195195   * Retrieve the AgaviContext instance. 
    196196   * 
    197    * @param      string name corresponding to a section of the config 
    198    * 
    199    * @return     AgaviContext instance of the requested name 
     197   * If you don't supply a profile name this will try to return the context  
     198   * specified in the <kbd>core.default_context</kbd> setting. 
     199   * 
     200   * @param      string A name corresponding to a section of the config 
     201   * 
     202   * @return     AgaviContext An context instance initialized with the  
     203   *                          settings of the requested context name 
    200204   * 
    201205   * @author     Dominik del Bondio <ddb@bitxtender.com> 
     
    228232   * Retrieve the LoggerManager 
    229233   * 
    230    * @return     AgaviLoggerManager The current LoggerManager implementation instance 
     234   * @return     AgaviLoggerManager The current LoggerManager implementation  
     235   *                                instance. 
    231236   * 
    232237   * @author     David Zuelke <dz@bitxtender.com> 
     
    241246   * (re)Initialize the AgaviContext instance. 
    242247   * 
    243    * @param      string name corresponding to a section of the config 
     248   * @param      string A name corresponding to a section of the config 
    244249   * 
    245250   * @author     Dominik del Bondio <ddb@bitxtender.com> 
     
    492497   * Retrieve the ValidatorManager 
    493498   * 
    494    * @return     AgaviValidatorManager The current ValidatorManager implementation 
    495    *                                   instance. 
     499   * @return     AgaviValidatorManager The current ValidatorManager  
     500   *                                   implementation instance. 
    496501   * 
    497502   * @author     David Zuelke <dz@bitxtender.com>