Download the PHP package sintret/yii2-todolist without Composer
On this page you can find all versions of the php package sintret/yii2-todolist. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package yii2-todolist
yii2-todolist
yii2 to do list using adminlte template
you can preview in http://sintret.com/adiadrian with username : kasir password : jakarta
create table todolist like these following :
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 :
= \sintret\todolist\ListView::widget([
'url' => \yii\helpers\Url::to(['/ajax/todolist'])
]);
?>
in controllers :
public function actionTodolist() {
if(isset($_POST)){
$model = new \sintret\todolist\models();
$model->post = $_POST;
echo $model->send();
}
}
All versions of yii2-todolist with dependencies
PHP Build Version
Package Version
The package sintret/yii2-todolist contains the following files
Loading the files please wait ...