Skip to content
Shohei Nakajima edited this page Sep 15, 2015 · 2 revisions

いいね(Likes)プラグインのガイドライン

いいね、わるいねの利用可否の設定

ヘルパーの設定

public $helpers = array(
	'Likes.Like',
);

Viewの設定

<?php echo $this->Like->setting('BbsSetting.use_like', 'BbsSetting.use_unlike'); ?>

いいね、わるいねの登録・表示

ビヘイビアの設定

public $actsAs = array(
	'Likes.Like',
);

ヘルパーの設定

public $helpers = array(
	'Likes.Like',
);

Viewの設定(表示のみ)

<?php echo $this->Like->display($bbsSetting, $bbsArticle, array('div' => true)); ?>

Viewの設定(ボタン付き)

<?php echo $this->Like->buttons('BbsArticle', $bbsSetting, $bbsArticle, array('div' => true)); ?>

※ただし、一度クリックすると、クリックができなくなる。