开发者

cakephp truncate helper not working

e.g. (file = views/elements/photos/tag.ctp)

In this element I have to show a description about that photo. I want to truncate the description text, so i'm using the Truncate function of the Text Core Helper but this throws the following exception

echo $this->Text->truncate($photo['Photo']['description'], 30,array(  'ending' => '...', 'exact' => false,'html' => true ));

Fatal error: Call to a member function truncate() on a non-object开发者_如何学Python i


Next time, please post the full error message.

It looks like you didn't include the helper within the Controller you are using here.

Make sure, you have the following within your controller:

var $helpers = array('Text');
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜