Example #1
0
 /**
  * Creates a new image category
  *
  * @param bool $isNew is the new image category new??
  * @return object $imgcat {@link icms_image_category_Object} reference to the new image category
  **/
 public function &create($isNew = true)
 {
     $imgcat = new icms_image_category_Object();
     if ($isNew) {
         $imgcat->setNew();
     }
     return $imgcat;
 }