Мне интересно, есть ли в Code Igniter что-то эквивалентное небольшому фреймворку, который я построил, и как это можно назвать.Я построил небольшую структуру, которая создает представление списка и редактирование представления для каждой таблицы базы данных mysql.Ниже приведен пример кода того, как я могу настроить CMS для управления таблицей базы данных:
// CODE FOR LIST VIEW - http://mysite.com/admin/user.php
// This code will output an html table of records from db table t_user.
// The html table will have controls that allow user to search, delete, and paginate
// You can click on each record to edit the record
<?php
include('class/framework.php');
$template = new ListView();
$template->data_object = new DB($mysql_table_name = 't_user');
$template->setCol($col = 'user_name', $label = 'User Name');
$template->setCol($col = 'email', $label = 'Email');
$template->setCol($col = 'last_login', $label = 'Last Time Logged In', $format='Y-m-d H:i:s');
$tempate->run();
?>
// CODE FOR EDIT VIEW - http://mysite.com/admin/user.edit.php
// This code will output an html form that adds, edits, deletes
// and validates a record from t_user
<?php
include('class/framework.php');
$template = new EditView();
$template->data_object = new DB($mysql_table_name = 't_user'):
$f = new Field($col = 'user_id', $type = 'hidden');
$template->field[] = $f;
$f = new Field($col = 'email', $type = 'text');
$f->arr_validate = array('is_email', 'is_required');
$template->field[] = $f;
$f = new Field($col = 'phone', $type = 'text');
$f->arr_validate = array('is_phone', 'is_required');
$template->field[] = $f;
$f = new Field($col = 'password', $type = 'password');
$template->field[] = $f;
$f = new Field($col = 'bio', $type = 'wysiwyg');
$template->field[] = $f;
$f = new Field($col = 'pic', $type = 'image');
$template->field[] = $f;
$template->run();
?>
И это все ... Мне не нужно писать ни одной строки html, css иликод JavaScriptВсе проверки выполняются для меня, пока я заполняю $f->arr_validate
.Возможность поиска, сортировки, разбивки на страницы, редактирования, удаления и т. Д. Выполняется всего лишь с помощью приведенного выше кода.
Есть ли в Code Igniter что-то подобное?Если такого нет из коробки, просто скажите.