/profile/components/views/profile_comments.php
https://github.com/yii-simon/yii-user-management · PHP · 19 lines · 17 code · 2 blank · 0 comment · 1 complexity · 6718fdd7edf934427682e1f18ec215c2 MD5 · raw file
- <?
- if($comments) {
- echo '<p>'.Yum::t('These users have commented your profile recently') . ': </p>';
- foreach($comments as $comment) {
- printf('<div style="text-align:center;width: 50px;float:left;margin: 0px 10px 10px 0;">%s %s</div>',
- CHtml::link($comment->user->getAvatar(true), array(
- '//profile/profile/view', 'id' => $comment->user_id)),
- CHtml::link($comment->user->username, array(
- '//profile/profile/view', 'id' => $comment->user_id)));
- printf('<div style="float:left;width:250px; margin-bottom:10px;">%s </div>',
- substr($comment->comment, 0, 100));
- echo '<div style="clear: both;"></div>';
- }
- } else
- echo Yum::t('Nobody has commented your profile yet');
- ?>
- <div style="clear: both;"> </div>