我正在使用bootstrap来更改grocery-crud
中的主题,但我的代码无效。
我的控制器:
public function siswa(){
$crud = new grocery_CRUD();
$crud->set_theme('bootstrap');
$crud->set_table('murid');
$output = $crud->render();
$this->load->view('tampilan',$output);
}
请帮帮我。
以下错误消息
遇到PHP错误
严重性:警告
消息:include(assets / grocery_crud / themes / bootstrap / config.php): 无法打开流:没有这样的文件或目录
文件名:libraries / Grocery_CRUD.php
行号:2852
回溯:
文件: C:\ XAMPP \ htdocs中\ grocerycrud \程序\库\ Grocery_CRUD.php 行:2852功能:_error_handler
文件: C:\ XAMPP \ htdocs中\ grocerycrud \程序\库\ Grocery_CRUD.php 行:2852功能:setThemeBasics
文件: C:\ XAMPP \ htdocs中\ grocerycrud \程序\库\ Grocery_CRUD.php 行:4476功能:setThemeBasics
文件:C:\ xampp \ htdocs \ grocerycrud \ application \ controllers \ Coba.php 行:19功能:渲染
文件:C:\ xampp \ htdocs \ grocerycrud \ index.php行:292功能: require_once
答案 0 :(得分:2)
只需在grocery_crud / themes / bootstrap中创建config.php文件并输入空白
答案 1 :(得分:0)
Is easy in the controller add.
public function siswa(){
$crud = new grocery_CRUD();
$crud->set_theme('bootstrap');
$crud->set_table('murid');
$output = $crud->render();
$this->_example_output($output);
}
And the view, load all CSS, and bootstrap, etc.
<div class="box box-primary">
<div class="box-body">
<?php echo $output; ?>
</div>
</div>