cisetup
Stable
是一个codeigniter 3框架,经过修改并添加了新功能,如dotenv、sweet Alert 2 & bootstrap 4等。
使用 Composer 安装cisetup 。
composer create-project kubi/ cisetup
更新依赖关系。
composer install
在 .env 中设置 dotenv 文件
APP_URL = http://localhost/Kubi_codes/cisetup/
APP_TIMEZONE = Asia/Jakarta
DB_HOST = localhost
DB_USERNAME = root
DB_PASSWORD =
DB_DATABASE =
DB_DRIVER = mysqli
<?php echos ( $ foobar ); ?>
<img src=" <?= asset_url() . 'img/foobar.png' ?> ">
APP_TIMEZONE = Asia/Jakarta
getenv('APP_TIMEZONE');
将此代码添加到html <head>
上方
<?php table_url (); ?>
之后使用表函数创建一个表
table ( $ table_title , $ table_key , $ table_data )
示例:在控制器中
$ data [ ' table_title ' ] = ' data_table ' ;
$ data [ ' table_key ' ] = [ ' ID ' , ' Category Name ' , ' Product Name ' , ' Cashier Name ' ];
$ data [ ' table_data ' ] = $ this -> db -> get ( ' product ' )-> result_array ();
在视图中
< ?php
table($table_title, $table_key, $table_data);
? >
notif ( ' type ' , ' title ' , ' message ' , ' url ' );
例子
notif ( ' success ' , ' Login Success ' , ' Welcome to app ' , ' home/user ' );
HTTP 请求 GET
request_get ( $ url );
HTTP 请求 POST
request_post ( $ url , $ query );
HTTP 请求 PUT
request_put ( $ url , $ query );
HTTP 请求删除
request_delete ( $ url );
例子
在你的控制器中
public function index ()
{
// Use notif
notif ( ' success ' , ' Welcome to kubicode ' , ' This is the message from Home/index ' );
// Data for send to view
$ data [ ' title ' ] = ' Home | Kubi Code ' ;
$ data [ ' response ' ] = request_get ( ' https://jsonplaceholder.typicode.com/todos ' );
// Load view
$ this -> load -> view ( ' layouts/header ' , $ data );
$ this -> load -> view ( ' home/index ' );
$ this -> load -> view ( ' layouts/footer ' );
}
欢迎请求请求。对于重大更改,请先打开一个问题来讨论您想要更改的内容。
请确保适当更新测试。
麻省理工学院