LinksTable.php 220 B

123456789101112131415
  1. <?php
  2. class LinksTable extends BaseLinksTable
  3. {
  4. public function getUrl()
  5. {
  6. return url_for($this->getModuleName().'/'.$this->getActionName());
  7. }
  8. public function __toString()
  9. {
  10. return $this->getName();
  11. }
  12. }