示例#1
0
 /**
  * Sets the needed static variables
  * 
  * @return  void
  */
 private static function _setStaticVars()
 {
     // Gets the instance of the string utilities
     self::$_str = Woops_String_Utils::getInstance();
     // Static variables are set
     self::$_hasStatic = true;
 }
示例#2
0
 /**
  * Adds an array item in the INI file
  * 
  * @param   Woops_Ini_Item_Array    The array object to add
  * @return  void
  */
 public function addArrayItem(Woops_Ini_Item_Array $array)
 {
     $this->_items[$array->getName()] = $array;
 }