プロジェクト

全般

プロフィール

opCommunityTopicPlugin3.8.12PluginBundledVersion.diff

isao sano, 2014-07-17 11:36

ダウンロード (3.48 KB)

差分を表示:

apps/pc_frontend/modules/communityEventComment/templates/_list.php
39 39
<?php echo op_url_cmd(nl2br($comment->getBody())) ?>
40 40
</p>
41 41
</div>
42
<!--Like Plugin -->
43
<div class="like" style="display: none;">
44
<span class="like-wrapper" data-like-id="<?php echo $comment->getId() ?>" data-like-target="e" member-id="<?php echo $comment->member_id ?>">
45
<span class="like-post">いいね!</span>
46
<span class="like-cancel">いいね!を取り消す&nbsp;</span>
47
<span class="like-you">あなたが「いいね!」と言っています。</span><br />
48
<a class="like-list" href="#likeModal" data-toggle="modal"></a>
49
<div class="like-list-member"></div>
50
<span class="like-friend-list"></span>
51
</span>
52
</div>
42 53
</dd>
43 54
</dl>
44 55
<?php endforeach; ?>
......
48 59
</div>
49 60
</div>
50 61
<?php endif; ?>
62

  
63
<script id="LikelistTemplate" type="text/x-jquery-tmpl">
64
<table>
65
<tr style="padding: 2px;">
66
<td style="width: 48px; padding: 2px;"><a href="${profile_url}"><img src="${profile_image}" width="48"></a></td>
67
<td style="padding: 2px;"><a href="${profile_url}">${name}</a></td>
68
</tr>
69
</table>
70
</script>
71

  
72
<div id="likeModal" class="modal hide">
73
  <div class="modal-header">
74
    <h1>「いいね!」と言っている人</h1>
75
  </div>
76
  <div class="like-modal-body">
77
  </div>
78
  <div class="modal-footer">
79
    <a href="#" class="btn close" data-dismiss="modal" aria-hidden="true">閉じる</a>
80
  </div>
81
</div>
apps/pc_frontend/modules/communityTopicComment/templates/_list.php
38 38
<?php echo op_url_cmd(nl2br($comment->getBody())) ?>
39 39
</p>
40 40
</div>
41
<!--Like Plugin -->
42
<div class="like" style="display: none;">
43
<span class="like-wrapper" data-like-id="<?php echo $comment->getId() ?>" data-like-target="t" member-id="<?php echo $comment->member_id ?>">
44
<span class="like-post">いいね!</span>
45
<span class="like-cancel">いいね!を取り消す&nbsp;</span>
46
<span class="like-you">あなたが「いいね!」と言っています。</span><br />
47
<a class="like-list" href="#likeModal" data-toggle="modal"></a>
48
<div class="like-list-member"></div>
49
<span class="like-friend-list"></span>
50
</span>
51
</div>
41 52
</dd>
42 53
</dl>
43 54
<?php endforeach; ?>
......
47 58
</div>
48 59
</div>
49 60
<?php endif; ?>
61

  
62
<script id="LikelistTemplate" type="text/x-jquery-tmpl">
63
<table>
64
<tr style="padding: 2px;">
65
<td style="width: 48px; padding: 2px;"><a href="${profile_url}"><img src="${profile_image}" width="48"></a></td>
66
<td style="padding: 2px;"><a href="${profile_url}">${name}</a></td>
67
</tr>
68
</table>
69
</script>
70

  
71
<div id="likeModal" class="modal hide">
72
  <div class="modal-header">
73
    <h1>「いいね!」と言っている人</h1>
74
  </div>
75
  <div class="like-modal-body">
76
  </div>
77
  <div class="modal-footer">
78
    <a href="#" class="btn close" data-dismiss="modal" aria-hidden="true">閉じる</a>
79
  </div>
80
</div>