Example #1
0
 /**
  * Returns the list of markers to scan for and summize in their separate page.
  *
  * @return string[]
  */
 public function getMarkers()
 {
     if (parent::getMarkers()) {
         return explode(',', parent::getMarkers());
     }
     return DocBlox_Core_Abstract::config()->getArrayFromPath('parser/markers/item');
 }
Example #2
0
 /**
  * Returns the name of the current template, or the default.
  *
  * @return string
  */
 public function getTemplate()
 {
     return parent::getTemplate() ? parent::getTemplate() : DocBlox_Core_Abstract::config()->transformations->template->name;
 }