2017 © Pedro Peláez
 

yii2-extension yii2-components

The additional components for the Yii framework

image

malankateam/yii2-components

The additional components for the Yii framework

  • Tuesday, May 29, 2018
  • by Robot72
  • Repository
  • 1 Watchers
  • 1 Stars
  • 2 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 100 % Grown

The README.md

MALANKA Logo , (*1)

Additional component Module

The additional components for Yii2 framework., (*2)

The main purpose of this module to provide the ability to wrap common function from PHP and Yii2 framework., (*3)

Installation

For the installation of modules Composer is required, (*4)

composer require malankateam/yii2-components:~0.1.0

Configuration

After adding to your composer json you have to create your migration and update migration file to:, (*5)

```php, (*6)

use robot72\components\helpers\MigrationHelper;, (*7)

class m000000_092100_our_migration extends MigrationHelper { public $tableName = '{{%lead_generate}}';, (*8)

public function up()
{
    $this->setTableOptions();
    $this->createTable($this->tableName, [
        'id' => $this->primaryKey(),
        'type' => $this->integer(11),
        'data' => $this->text(),
        'create_at' => $this->timestamp()->notNull(),
    ], $this->tableOptions);
}

public function down()
{
    $this->dropTable($this->tableName);
}

}, (*9)

The Versions

29/05 2018

dev-master

9999999-dev

The additional components for the Yii framework

  Sources   Download

BSD-3-Clause

The Requires

 

helpers yii2 components actions

18/10 2017

v0.1.1

0.1.1.0

The additional components for the Yii framework

  Sources   Download

BSD-3-Clause

The Requires

 

helpers yii2 components actions

23/11 2015

0.1.0

0.1.0.0

The additional components for the Yii framework

  Sources   Download

BSD-3-Clause

The Requires

 

helpers yii2 components actions