Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/library/Fiktiv/Controller/Action/Helper/DataService.php
2010-09-11 21:49:06 +02:00

17 lines
No EOL
406 B
PHP

<?php
/**
* Access Fiktiv_Db_Service instance from controller
* Not easier than calling the class itself but what the heck.
*/
class Fiktiv_Controller_Action_Helper_DataService extends Zend_Controller_Action_Helper_Abstract
{
public function dataService()
{
return Fiktiv_Data_Service::getInstance();
}
public function direct()
{
return $this->dataService();
}
}