17 lines
No EOL
406 B
PHP
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();
|
|
}
|
|
} |