PHP code example of axgle / yii2-hitable-behavior
1. Go to this page and download the library: Download axgle/yii2-hitable-behavior library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
axgle / yii2-hitable-behavior example snippets
class Post extends \yii\db\ActiveRecord
{
public function behaviors()
{
return [
'hit' => [
'class' => \axgle\yii2\behavior\HitableBehavior::className(),
'attribute' => 'hits_count', //attribute which should contain uniquie hits value
'group' => false, //group name of the model (class name by default)
'delay' => 60 * 60, //register the same visitor every hour
'table_name' => '{{%hits}}' //table with hits data
]
];
}
}
$post = Post::findOne(1);
//increase counter
$post->getBehavior('hit')->touch();
//get hits count
echo $post->getBehavior('hit')->getHitsCount();