ZendFramworkとSmarty
class MyView extends Smarty implements Zend_View_Interface{
}
なんて出来たら便利だろうなぁ。と思うのですが。出来なかった。
現実的には
class MyView exnteds Zend_View_Abstract{
var $smarty
public function __construct(){
$this->smarty = new Smarty()
}
}
程度に落ち着くしかない。
class MyView extends Smarty implements Zend_View_Interface{
}
なんて出来たら便利だろうなぁ。と思うのですが。出来なかった。
現実的には
class MyView exnteds Zend_View_Abstract{
var $smarty
public function __construct(){
$this->smarty = new Smarty()
}
}
程度に落ち着くしかない。