Example #1
0
 /**
  * Create a new category
  *
  * @param	bool    $isNew  Flag the new object as "new"?
  *
  * @return	object  New {@link icms_config_category_Object}
  * @see htdocs/kernel/icms_core_ObjectHandler#create()
  */
 public function &create($isNew = true)
 {
     $confcat = new icms_config_category_Object();
     if ($isNew) {
         $confcat->setNew();
     }
     return $confcat;
 }