示例#1
0
 /**
  * Load the configuration group for the key.
  *
  * @param    string     $group
  * @return     void
  */
 public function load($group)
 {
     if (isset($this->items[$group])) {
         return;
     }
     $this->items[$group] = $this->loader->load($group);
 }
示例#2
0
 /**
  * Set the database table for the database loader.
  *
  * @param string
  * @return void
  */
 public function setTable($table)
 {
     $this->dbLoader->setTable($table);
 }