2017 © Pedro Peláez
 

yii2-extension yii2-virtual-points

image

maks757/yii2-virtual-points

  • Thursday, November 3, 2016
  • by maks757
  • Repository
  • 1 Watchers
  • 0 Stars
  • 25 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

yii2 virtual point

status extension dev

Install

composer.phar require maks757/yii2-virtual-point

or, (*1)

composer require maks757/yii2-virtual-point

and applying migrations, (*2)

php yii migrate --migrationPath=@vendor/maks757/yii2-virtual-point/migrations

or, (*3)

yii migrate --migrationPath=@vendor/maks757/yii2-virtual-point/migrations

Configuration

main.php (config)
'components' => [
    // Point config
    'points' => [
        'class' => \bl\virtual_points\Points::className(),

        //Set key
        'category' => 'auth' //or User::className(),
        //or
        //'ar_object' => new User(),
    ],
    // ...
]

Using

   //add point to user
   $user = User::find()->one();
   /** @var $point Points */
   $size_point = User::POINT_ADD_WINNER // or integer
   $point = Yii::$app->points;
   $point->ar_object = $user;
   $point->addPoint($size_point);
   //

Using example

    //get points
    /** @var $point Points */
    $point = Yii::$app->points;
    $points = $point->getAllPoint();
    //or
    //$points = $point->getPoint($object_id);
    //

Alt text, (*4)

The Versions

03/11 2016

dev-master

9999999-dev

  Sources   Download

GNU Public License

by Maxim Cherednyk

yii2 points maks757 virtual points

03/11 2016

0.2.2

0.2.2.0

  Sources   Download

GNU Public License

by Maxim Cherednyk

yii2 points maks757 virtual points

03/11 2016

0.2.1

0.2.1.0

  Sources   Download

GNU Public License

by Maxim Cherednyk

yii2 points maks757 virtual points

19/10 2016

0.2.0

0.2.0.0

  Sources   Download

GNU Public License

by Maxim Cherednyk

yii2 points maks757 virtual points

10/10 2016

0.1.2

0.1.2.0

  Sources   Download

GNU Public License

by Maxim Cherednyk

yii2 points maks757 virtual points

09/10 2016

0.1.1

0.1.1.0

  Sources   Download

GNU Public License

by Maxim Cherednyk

yii2 points maks757 virtual points

09/10 2016

0.0.1

0.0.1.0

  Sources   Download

GNU Public License

by Maxim Cherednyk

yii2 points maks757 virtual points