开发者

Zend Framework can't find standard view helpers

开发者 https://www.devze.com 2022-12-13 13:39 出处:网络
I\'m trying to use a View helpe开发者_运维技巧r inside a view. I put echo $this->formCheckbox(\'foo\');

I'm trying to use a View helpe开发者_运维技巧r inside a view. I put

echo $this->formCheckbox('foo');

in the view, but it errors out and tells me FormCheckbox.php

/application/modules/user/views/helpers/FormCheckbox.php can't be found.

Why isn't it loading Zend_View_Helper_FormCheckbox in /Zend/View/Helper? The manual states

The default helper path always points to the Zend Framework view helpers, i.e., 'Zend/View/Helper/'. Even if you call setHelperPath() to overwrite the existing paths, this path will be set to ensure the default helpers work.


To use helpers in my views I use:

<?= $this->LinkTo('css/general/screen.css'); ?>

Is your helper 'FormCheckbox' with a capital F?

0

精彩评论

暂无评论...
验证码 换一张
取 消