Exemplo n.º 1
0
 /**
  * Returns the link to the report admin section, or the specific report that is currently displayed
  * @return String
  */
 public function Link($action = null)
 {
     if ($this->reportObject) {
         $link = $this->reportObject->getLink($action);
     } else {
         $link = self::join_links(parent::Link('index'), $action);
     }
     return $link;
 }