2017 © Pedro Peláez
 

yii2-extension yii2-todolist

Yii2 extension for To Do list plugin using adminlte template

image

sintret/yii2-todolist

Yii2 extension for To Do list plugin using adminlte template

  • Wednesday, June 29, 2016
  • by sintret
  • Repository
  • 1 Watchers
  • 6 Stars
  • 2,489 Installations
  • JavaScript
  • 3 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 3 Versions
  • 23 % Grown

The README.md

yii2-todolist

yii2 to do list using adminlte template, (*1)

you can preview in http://sintret.com/adiadrian with username : kasir password : jakarta, (*2)

create table todolist like these following :, (*3)

CREATE TABLE `todolist` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `status` tinyint(1) DEFAULT '0',
  `params` text,
  `createDate` datetime DEFAULT NULL,
  `updateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB;

in your view , you have to set url and relations for User like this following code :, (*4)

= \sintret\todolist\ListView::widget([
            'url' => \yii\helpers\Url::to(['/ajax/todolist'])
        ]);
        ?>

in controllers :, (*5)

public function actionTodolist() {
        if(isset($_POST)){
            $model = new \sintret\todolist\models();
            $model->post = $_POST;
            echo $model->send();
        }
        
    }

The Versions

29/06 2016

dev-master

9999999-dev https://github.com/sintret/yii2-todolist

Yii2 extension for To Do list plugin using adminlte template

  Sources   Download

MIT

The Requires

 

plugin yii2 jquery ajax adminlte todolist

24/01 2015

1.0.0.x-dev

1.0.0.9999999-dev https://github.com/sintret/yii2-todolist

Yii2 extension for To Do list plugin using adminlte template

  Sources   Download

MIT

The Requires

 

plugin yii2 jquery ajax adminlte todolist

18/01 2015

v1.0.0

1.0.0.0 https://github.com/sintret/yii2-todolist

Yii2 extension for To Do list plugin using adminlte template

  Sources   Download

MIT

The Requires

 

plugin yii2 jquery ajax adminlte todolist