Re: Designer Content Proはどうでしょう

2014年7月9日 at 21:55

こんにちは。
Designer Content で作ったテキストエリアで文字数の制限をしたいのですがどうすればよいのでしょう。制限数を過ぎたら (...) をつけられれば尚よいのですが。
該当の箇所は以下の通りです。


<div class="inhalt">
<?php $item->inhalt->display();?>
</div>


ご教示いただけると幸いです。よろしくお願いいたします。

Re: Designer Content Proはどうでしょう

2014年7月10日 at 22:15
concrete5のセオリーに従うとこんな感じです

<?php
$th = Loader::helper('text');
$text = $item->title->getText();
$text = $th->wordSafeShortText($text, 32, '...'); // 32は制限する文字数
echo $text;
?>
 

Re: Designer Content Proはどうでしょう

2014年7月10日 at 22:28
hissy 様
いつもご教示ありがとうございます!