在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → CI框架写的CMS管理

CI框架写的CMS管理

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.18M
  • 下载次数:6
  • 浏览次数:199
  • 发布时间:2021-02-26
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
CI框架写成的CMS管理系统,学习CI的好源码
【实例截图】
【核心代码】
686be38a-8e7e-4fc6-9c39-f02bfc146506
└── Dili
├── admin
│   ├── config
│   │   ├── autoload.php
│   │   ├── config.php
│   │   ├── constants.php
│   │   ├── database.php
│   │   ├── database.php.bak
│   │   ├── doctypes.php
│   │   ├── foreign_chars.php
│   │   ├── hooks.php
│   │   ├── index.html
│   │   ├── migration.php
│   │   ├── mimes.php
│   │   ├── profiler.php
│   │   ├── routes.php
│   │   ├── smileys.php
│   │   └── user_agents.php
│   ├── controllers
│   │   ├── attachment.php
│   │   ├── category_content.php
│   │   ├── category.php
│   │   ├── content.php
│   │   ├── index.html
│   │   ├── initialize.php
│   │   ├── ld.php
│   │   ├── login.php
│   │   ├── model.php
│   │   ├── module.php
│   │   ├── plugin.php
│   │   ├── role.php
│   │   ├── setting.php
│   │   ├── system.php
│   │   └── user.php
│   ├── core
│   │   ├── Dili_Controller.php
│   │   ├── Dili_Loader.php
│   │   └── index.html
│   ├── errors
│   │   ├── error_404.php
│   │   ├── error_db.php
│   │   ├── error_general.php
│   │   ├── error_php.php
│   │   └── index.html
│   ├── helpers
│   │   └── utils_helper.php
│   ├── hooks
│   │   ├── index.html
│   │   └── MethodHook.php
│   ├── index.php
│   ├── language
│   │   ├── english
│   │   │   └── index.html
│   │   └── zh-cn
│   │   ├── calendar_lang.php
│   │   ├── date_lang.php
│   │   ├── db_lang.php
│   │   ├── email_lang.php
│   │   ├── form_validation_lang.php
│   │   ├── ftp_lang.php
│   │   ├── imglib_lang.php
│   │   ├── index.html
│   │   ├── number_lang.php
│   │   ├── profiler_lang.php
│   │   ├── unit_test_lang.php
│   │   └── upload_lang.php
│   ├── robots.txt
│   ├── sample.htaccess
│   └── templates
│   ├── default
│   │   ├── category_add.php
│   │   ├── category_content_form.php
│   │   ├── category_content_list.php
│   │   ├── category_edit.php
│   │   ├── category_list.php
│   │   ├── content_form.php
│   │   ├── content_list.php
│   │   ├── fields_add.php
│   │   ├── fields_edit.php
│   │   ├── fields_list.php
│   │   ├── images
│   │   │   ├── admin_bg.gif
│   │   │   ├── admin.css
│   │   │   ├── close.gif
│   │   │   ├── error.gif
│   │   │   ├── form_bg.gif
│   │   │   ├── header_bg.gif
│   │   │   ├── icon_add.gif
│   │   │   ├── icon_asc.gif
│   │   │   ├── icon_check.gif
│   │   │   ├── icon_del.gif
│   │   │   ├── icon_desc.gif
│   │   │   ├── icon_down.gif
│   │   │   ├── icon_edit.gif
│   │   │   ├── icon_export.gif
│   │   │   ├── icon.gif
│   │   │   ├── icon_recover.gif
│   │   │   ├── icon_refresh.gif
│   │   │   ├── icon_send.gif
│   │   │   ├── icon_stop.gif
│   │   │   ├── icon_yes.gif
│   │   │   ├── loading.gif
│   │   │   ├── login_bg.gif
│   │   │   ├── loginbox_bg.gif
│   │   │   ├── logo.gif
│   │   │   ├── open.gif
│   │   │   ├── prt.gif
│   │   │   └── sel.gif
│   │   ├── index.html
│   │   ├── js
│   │   │   ├── admin.js
│   │   │   ├── colorPicker
│   │   │   │   ├── colorpicker.js
│   │   │   │   ├── css
│   │   │   │   │   └── colorpicker.css
│   │   │   │   └── images
│   │   │   │   ├── blank.gif
│   │   │   │   ├── colorpicker_background.png
│   │   │   │   ├── colorpicker_hex.png
│   │   │   │   ├── colorpicker_hsb_b.png
│   │   │   │   ├── colorpicker_hsb_h.png
│   │   │   │   ├── colorpicker_hsb_s.png
│   │   │   │   ├── colorpicker_indic.gif
│   │   │   │   ├── colorpicker_overlay.png
│   │   │   │   ├── colorpicker_rgb_b.png
│   │   │   │   ├── colorpicker_rgb_g.png
│   │   │   │   ├── colorpicker_rgb_r.png
│   │   │   │   ├── colorpicker_select.gif
│   │   │   │   ├── colorpicker_submit.png
│   │   │   │   ├── custom_background.png
│   │   │   │   ├── custom_hex.png
│   │   │   │   ├── custom_hsb_b.png
│   │   │   │   ├── custom_hsb_h.png
│   │   │   │   ├── custom_hsb_s.png
│   │   │   │   ├── custom_indic.gif
│   │   │   │   ├── custom_rgb_b.png
│   │   │   │   ├── custom_rgb_g.png
│   │   │   │   ├── custom_rgb_r.png
│   │   │   │   ├── custom_submit.png
│   │   │   │   ├── select2.png
│   │   │   │   ├── select.png
│   │   │   │   └── slider.png
│   │   │   ├── common.js
│   │   │   ├── contextMenu
│   │   │   │   ├── images
│   │   │   │   │   ├── cut.png
│   │   │   │   │   ├── door.png
│   │   │   │   │   ├── page_white_add.png
│   │   │   │   │   ├── page_white_copy.png
│   │   │   │   │   ├── page_white_delete.png
│   │   │   │   │   ├── page_white_edit.png
│   │   │   │   │   └── page_white_paste.png
│   │   │   │   ├── jquery.contextMenu.css
│   │   │   │   ├── jquery.contextMenu.js
│   │   │   │   └── jquery.ui.position.js
│   │   │   ├── DatePicker
│   │   │   │   ├── calendar.js
│   │   │   │   ├── config.js
│   │   │   │   ├── lang
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh-tw.js
│   │   │   │   ├── My97DatePicker.htm
│   │   │   │   ├── skin
│   │   │   │   │   ├── datePicker.gif
│   │   │   │   │   ├── default
│   │   │   │   │   │   ├── datepicker.css
│   │   │   │   │   │   └── img.gif
│   │   │   │   │   ├── WdatePicker.css
│   │   │   │   │   └── whyGreen
│   │   │   │   │   ├── bg.jpg
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   └── img.gif
│   │   │   │   └── WdatePicker.js
│   │   │   ├── dili_utility
│   │   │   │   ├── clipboard.swf
│   │   │   │   ├── content_form.js
│   │   │   │   ├── jquery.ld.js
│   │   │   │   ├── upload.js
│   │   │   │   ├── upload.swf
│   │   │   │   └── upload.swf_
│   │   │   ├── jquery.js
│   │   │   ├── menu.js
│   │   │   └── xheditor
│   │   │   ├── v1.1.14
│   │   │   ├── xheditor_emot
│   │   │   │   ├── default
│   │   │   │   │   ├── angry.gif
│   │   │   │   │   ├── awkward.gif
│   │   │   │   │   ├── bye.gif
│   │   │   │   │   ├── config.txt
│   │   │   │   │   ├── crazy.gif
│   │   │   │   │   ├── cry.gif
│   │   │   │   │   ├── curse.gif
│   │   │   │   │   ├── cute.gif
│   │   │   │   │   ├── despise.gif
│   │   │   │   │   ├── doubt.gif
│   │   │   │   │   ├── envy.gif
│   │   │   │   │   ├── fastcry.gif
│   │   │   │   │   ├── knock.gif
│   │   │   │   │   ├── laugh.gif
│   │   │   │   │   ├── mad.gif
│   │   │   │   │   ├── ohmy.gif
│   │   │   │   │   ├── panic.gif
│   │   │   │   │   ├── proud.gif
│   │   │   │   │   ├── quiet.gif
│   │   │   │   │   ├── sad.gif
│   │   │   │   │   ├── shutup.gif
│   │   │   │   │   ├── shy.gif
│   │   │   │   │   ├── sleep.gif
│   │   │   │   │   ├── smile.gif
│   │   │   │   │   ├── struggle.gif
│   │   │   │   │   ├── titter.gif
│   │   │   │   │   ├── tongue.gif
│   │   │   │   │   ├── wail.gif
│   │   │   │   │   └── wronged.gif
│   │   │   │   ├── ipb
│   │   │   │   │   ├── alien.gif
│   │   │   │   │   ├── angel.gif
│   │   │   │   │   ├── angry.gif
│   │   │   │   │   ├── bandit.gif
│   │   │   │   │   ├── biglaugh.gif
│   │   │   │   │   ├── blink.gif
│   │   │   │   │   ├── blush.gif
│   │   │   │   │   ├── config.txt
│   │   │   │   │   ├── cool.gif
│   │   │   │   │   ├── cry.gif
│   │   │   │   │   ├── depres.gif
│   │   │   │   │   ├── devil.gif
│   │   │   │   │   ├── glare.gif
│   │   │   │   │   ├── heart.gif
│   │   │   │   │   ├── joyful.gif
│   │   │   │   │   ├── kiss.gif
│   │   │   │   │   ├── laugh.gif
│   │   │   │   │   ├── magician.gif
│   │   │   │   │   ├── ninja.gif
│   │   │   │   │   ├── pinch.gif
│   │   │   │   │   ├── police.gif
│   │   │   │   │   ├── sad.gif
│   │   │   │   │   ├── sick.gif
│   │   │   │   │   ├── sideways.gif
│   │   │   │   │   ├── sleep.gif
│   │   │   │   │   ├── smile.gif
│   │   │   │   │   ├── surprised.gif
│   │   │   │   │   ├── tongue.gif
│   │   │   │   │   ├── unsure.gif
│   │   │   │   │   ├── w00t.gif
│   │   │   │   │   ├── whistling.gif
│   │   │   │   │   ├── wondering.gif
│   │   │   │   │   └── wub.gif
│   │   │   │   ├── msn
│   │   │   │   │   ├── 10.gif
│   │   │   │   │   ├── 11.gif
│   │   │   │   │   ├── 12.gif
│   │   │   │   │   ├── 13.gif
│   │   │   │   │   ├── 14.gif
│   │   │   │   │   ├── 15.gif
│   │   │   │   │   ├── 16.gif
│   │   │   │   │   ├── 17.gif
│   │   │   │   │   ├── 18.gif
│   │   │   │   │   ├── 19.gif
│   │   │   │   │   ├── 1.gif
│   │   │   │   │   ├── 20.gif
│   │   │   │   │   ├── 21.gif
│   │   │   │   │   ├── 22.gif
│   │   │   │   │   ├── 23.gif
│   │   │   │   │   ├── 24.gif
│   │   │   │   │   ├── 25.gif
│   │   │   │   │   ├── 26.gif
│   │   │   │   │   ├── 27.gif
│   │   │   │   │   ├── 28.gif
│   │   │   │   │   ├── 29.gif
│   │   │   │   │   ├── 2.gif
│   │   │   │   │   ├── 30.gif
│   │   │   │   │   ├── 31.gif
│   │   │   │   │   ├── 32.gif
│   │   │   │   │   ├── 33.gif
│   │   │   │   │   ├── 34.gif
│   │   │   │   │   ├── 35.gif
│   │   │   │   │   ├── 36.gif
│   │   │   │   │   ├── 37.gif
│   │   │   │   │   ├── 38.gif
│   │   │   │   │   ├── 39.gif
│   │   │   │   │   ├── 3.gif
│   │   │   │   │   ├── 40.gif
│   │   │   │   │   ├── 4.gif
│   │   │   │   │   ├── 5.gif
│   │   │   │   │   ├── 6.gif
│   │   │   │   │   ├── 7.gif
│   │   │   │   │   ├── 8.gif
│   │   │   │   │   └── 9.gif
│   │   │   │   └── pidgin
│   │   │   │   ├── angry.gif
│   │   │   │   ├── bad.gif
│   │   │   │   ├── blush.gif
│   │   │   │   ├── brokenheart.gif
│   │   │   │   ├── bye.gif
│   │   │   │   ├── coffee.gif
│   │   │   │   ├── config.txt
│   │   │   │   ├── cool.gif
│   │   │   │   ├── cry.gif
│   │   │   │   ├── curse.gif
│   │   │   │   ├── cute.gif
│   │   │   │   ├── devil.gif
│   │   │   │   ├── envy.gif
│   │   │   │   ├── gift.gif
│   │   │   │   ├── good.gif
│   │   │   │   ├── kiss.gif
│   │   │   │   ├── laugh.gif
│   │   │   │   ├── love.gif
│   │   │   │   ├── music.gif
│   │   │   │   ├── question.gif
│   │   │   │   ├── rose.gif
│   │   │   │   ├── sad.gif
│   │   │   │   ├── shocked.gif
│   │   │   │   ├── shout.gif
│   │   │   │   ├── sick.gif
│   │   │   │   ├── sleepy.gif
│   │   │   │   ├── smile.gif
│   │   │   │   ├── soccer.gif
│   │   │   │   ├── sweat.gif
│   │   │   │   ├── tired.gif
│   │   │   │   ├── tongue.gif
│   │   │   │   ├── victory.gif
│   │   │   │   └── wink.gif
│   │   │   ├── xheditor-en.min.js
│   │   │   ├── xheditor_plugins
│   │   │   │   ├── multiupload
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── add.gif
│   │   │   │   │   │   ├── bg1.gif
│   │   │   │   │   │   ├── bg2.gif
│   │   │   │   │   │   ├── btnbg.gif
│   │   │   │   │   │   ├── btnbgr.gif
│   │   │   │   │   │   ├── clear.gif
│   │   │   │   │   │   ├── progressbg.gif
│   │   │   │   │   │   └── start.gif
│   │   │   │   │   ├── multiupload.css
│   │   │   │   │   ├── multiupload.html
│   │   │   │   │   ├── multiupload.js
│   │   │   │   │   └── swfupload
│   │   │   │   │   ├── swfupload.js
│   │   │   │   │   └── swfupload.swf
│   │   │   │   └── ubb.min.js
│   │   │   ├── xheditor_skin
│   │   │   │   ├── blank.gif
│   │   │   │   ├── default
│   │   │   │   │   ├── iframe.css
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── anchor.gif
│   │   │   │   │   │   ├── close.gif
│   │   │   │   │   │   ├── flash.gif
│   │   │   │   │   │   ├── icons.gif
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── progressbg.gif
│   │   │   │   │   │   ├── progress.gif
│   │   │   │   │   │   ├── tag-address.gif
│   │   │   │   │   │   ├── tag-div.gif
│   │   │   │   │   │   ├── tag-h1.gif
│   │   │   │   │   │   ├── tag-h2.gif
│   │   │   │   │   │   ├── tag-h3.gif
│   │   │   │   │   │   ├── tag-h4.gif
│   │   │   │   │   │   ├── tag-h5.gif
│   │   │   │   │   │   ├── tag-h6.gif
│   │   │   │   │   │   ├── tag-p.gif
│   │   │   │   │   │   ├── tag-pre.gif
│   │   │   │   │   │   ├── waiting.gif
│   │   │   │   │   │   ├── wmp.gif
│   │   │   │   │   │   └── wordimg.gif
│   │   │   │   │   └── ui.css
│   │   │   │   ├── nostyle
│   │   │   │   │   ├── iframe.css
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── anchor.gif
│   │   │   │   │   │   ├── close.gif
│   │   │   │   │   │   ├── flash.gif
│   │   │   │   │   │   ├── icons.gif
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── progressbg.gif
│   │   │   │   │   │   ├── progress.gif
│   │   │   │   │   │   ├── tag-address.gif
│   │   │   │   │   │   ├── tag-div.gif
│   │   │   │   │   │   ├── tag-h1.gif
│   │   │   │   │   │   ├── tag-h2.gif
│   │   │   │   │   │   ├── tag-h3.gif
│   │   │   │   │   │   ├── tag-h4.gif
│   │   │   │   │   │   ├── tag-h5.gif
│   │   │   │   │   │   ├── tag-h6.gif
│   │   │   │   │   │   ├── tag-p.gif
│   │   │   │   │   │   ├── tag-pre.gif
│   │   │   │   │   │   ├── waiting.gif
│   │   │   │   │   │   ├── wmp.gif
│   │   │   │   │   │   └── wordimg.gif
│   │   │   │   │   └── ui.css
│   │   │   │   ├── o2007blue
│   │   │   │   │   ├── iframe.css
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── anchor.gif
│   │   │   │   │   │   ├── buttonbg.gif
│   │   │   │   │   │   ├── close.gif
│   │   │   │   │   │   ├── flash.gif
│   │   │   │   │   │   ├── icons.gif
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── progressbg.gif
│   │   │   │   │   │   ├── progress.gif
│   │   │   │   │   │   ├── tag-address.gif
│   │   │   │   │   │   ├── tag-div.gif
│   │   │   │   │   │   ├── tag-h1.gif
│   │   │   │   │   │   ├── tag-h2.gif
│   │   │   │   │   │   ├── tag-h3.gif
│   │   │   │   │   │   ├── tag-h4.gif
│   │   │   │   │   │   ├── tag-h5.gif
│   │   │   │   │   │   ├── tag-h6.gif
│   │   │   │   │   │   ├── tag-p.gif
│   │   │   │   │   │   ├── tag-pre.gif
│   │   │   │   │   │   ├── waiting.gif
│   │   │   │   │   │   ├── wmp.gif
│   │   │   │   │   │   └── wordimg.gif
│   │   │   │   │   └── ui.css
│   │   │   │   ├── o2007silver
│   │   │   │   │   ├── iframe.css
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── anchor.gif
│   │   │   │   │   │   ├── buttonbg.gif
│   │   │   │   │   │   ├── close.gif
│   │   │   │   │   │   ├── flash.gif
│   │   │   │   │   │   ├── icons.gif
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── progressbg.gif
│   │   │   │   │   │   ├── progress.gif
│   │   │   │   │   │   ├── tag-address.gif
│   │   │   │   │   │   ├── tag-div.gif
│   │   │   │   │   │   ├── tag-h1.gif
│   │   │   │   │   │   ├── tag-h2.gif
│   │   │   │   │   │   ├── tag-h3.gif
│   │   │   │   │   │   ├── tag-h4.gif
│   │   │   │   │   │   ├── tag-h5.gif
│   │   │   │   │   │   ├── tag-h6.gif
│   │   │   │   │   │   ├── tag-p.gif
│   │   │   │   │   │   ├── tag-pre.gif
│   │   │   │   │   │   ├── waiting.gif
│   │   │   │   │   │   ├── wmp.gif
│   │   │   │   │   │   └── wordimg.gif
│   │   │   │   │   └── ui.css
│   │   │   │   └── vista
│   │   │   │   ├── iframe.css
│   │   │   │   ├── img
│   │   │   │   │   ├── anchor.gif
│   │   │   │   │   ├── buttonbg.gif
│   │   │   │   │   ├── close.gif
│   │   │   │   │   ├── flash.gif
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── progressbg.gif
│   │   │   │   │   ├── progress.gif
│   │   │   │   │   ├── tag-address.gif
│   │   │   │   │   ├── tag-div.gif
│   │   │   │   │   ├── tag-h1.gif
│   │   │   │   │   ├── tag-h2.gif
│   │   │   │   │   ├── tag-h3.gif
│   │   │   │   │   ├── tag-h4.gif
│   │   │   │   │   ├── tag-h5.gif
│   │   │   │   │   ├── tag-h6.gif
│   │   │   │   │   ├── tag-p.gif
│   │   │   │   │   ├── tag-pre.gif
│   │   │   │   │   ├── titlebg.gif
│   │   │   │   │   ├── waiting.gif
│   │   │   │   │   ├── wmp.gif
│   │   │   │   │   └── wordimg.gif
│   │   │   │   └── ui.css
│   │   │   ├── xheditor-zh-cn.min.js
│   │   │   └── xheditor-zh-tw.min.js
│   │   ├── model_add.php
│   │   ├── model_edit.php
│   │   ├── model_list.php
│   │   ├── plugin_add.php
│   │   ├── plugin_edit.php
│   │   ├── plugin_import.php
│   │   ├── plugin_list.php
│   │   ├── role_add.php
│   │   ├── role_edit.php
│   │   ├── role_list.php
│   │   ├── settings_backend.php
│   │   ├── settings_site.php
│   │   ├── sys_cache.php
│   │   ├── sys_default.php
│   │   ├── sys_entry.php
│   │   ├── sys_login.php
│   │   ├── sys_message.php
│   │   ├── sys_password.php
│   │   ├── system_initialize.php
│   │   ├── sys_uploader.php
│   │   ├── user_add.php
│   │   ├── user_edit.php
│   │   └── user_list.php
│   └── index.html
├── application
│   ├── cache
│   │   └── index.html
│   ├── config
│   │   ├── autoload.php
│   │   ├── config.php
│   │   ├── constants.php
│   │   ├── database.php
│   │   ├── database.php.bak
│   │   ├── doctypes.php
│   │   ├── foreign_chars.php
│   │   ├── hooks.php
│   │   ├── index.html
│   │   ├── migration.php
│   │   ├── mimes.php
│   │   ├── profiler.php
│   │   ├── routes.php
│   │   ├── smileys.php
│   │   └── user_agents.php
│   ├── controllers
│   │   ├── index.html
│   │   └── welcome.php
│   ├── core
│   │   └── index.html
│   ├── errors
│   │   ├── error_404.php
│   │   ├── error_db.php
│   │   ├── error_general.php
│   │   ├── error_php.php
│   │   └── index.html
│   ├── helpers
│   │   └── index.html
│   ├── hooks
│   │   └── index.html
│   ├── index.html
│   ├── language
│   │   └── english
│   │   └── index.html
│   ├── libraries
│   │   └── index.html
│   ├── logs
│   │   └── index.html
│   ├── models
│   │   └── index.html
│   ├── third_party
│   │   └── index.html
│   └── views
│   ├── index.html
│   └── welcome_message.php
├── db.sql
├── extensions
│   ├── fields
│   │   └── index.html
│   ├── index.html
│   └── plugins
│   └── index.html
├── index.php
├── README
├── sample.htaccess
├── shared
│   ├── config
│   │   ├── constant.php
│   │   └── platform.php
│   ├── helpers
│   │   ├── common_helper.php
│   │   └── index.html
│   ├── index.html
│   ├── libraries
│   │   ├── Acl.php
│   │   ├── Field_behavior.php
│   │   ├── Form.php
│   │   ├── index.html
│   │   ├── Platform.php
│   │   ├── platforms
│   │   │   ├── platform_default.php
│   │   │   └── platform_sae.php
│   │   ├── Plugin_manager.php
│   │   └── Settings.php
│   ├── models
│   │   ├── cache_mdl.php
│   │   ├── category_mdl.php
│   │   ├── index.html
│   │   ├── model_mdl.php
│   │   ├── plugin_mdl.php
│   │   ├── role_mdl.php
│   │   └── user_mdl.php
│   └── settings
│   ├── acl
│   │   ├── role_1.php
│   │   └── role_2.php
│   ├── backend.php
│   ├── fieldtypes.php
│   ├── index.html
│   ├── menus.php
│   ├── plugins.php
│   └── site.php
├── system
│   ├── core
│   │   ├── Benchmark.php
│   │   ├── CodeIgniter.php
│   │   ├── Common.php
│   │   ├── Config.php
│   │   ├── Controller.php
│   │   ├── Exceptions.php
│   │   ├── Hooks.php
│   │   ├── index.html
│   │   ├── Input.php
│   │   ├── Lang.php
│   │   ├── Loader.php
│   │   ├── Model.php
│   │   ├── Output.php
│   │   ├── Router.php
│   │   ├── Security.php
│   │   ├── URI.php
│   │   └── Utf8.php
│   ├── database
│   │   ├── DB_active_rec.php
│   │   ├── DB_cache.php
│   │   ├── DB_driver.php
│   │   ├── DB_forge.php
│   │   ├── DB.php
│   │   ├── DB_result.php
│   │   ├── DB_utility.php
│   │   ├── drivers
│   │   │   ├── cubrid
│   │   │   │   ├── cubrid_driver.php
│   │   │   │   ├── cubrid_forge.php
│   │   │   │   ├── cubrid_result.php
│   │   │   │   ├── cubrid_utility.php
│   │   │   │   └── index.html
│   │   │   ├── index.html
│   │   │   ├── mssql
│   │   │   │   ├── index.html
│   │   │   │   ├── mssql_driver.php
│   │   │   │   ├── mssql_forge.php
│   │   │   │   ├── mssql_result.php
│   │   │   │   └── mssql_utility.php
│   │   │   ├── mysql
│   │   │   │   ├── index.html
│   │   │   │   ├── mysql_driver.php
│   │   │   │   ├── mysql_forge.php
│   │   │   │   ├── mysql_result.php
│   │   │   │   └── mysql_utility.php
│   │   │   ├── mysqli
│   │   │   │   ├── index.html
│   │   │   │   ├── mysqli_driver.php
│   │   │   │   ├── mysqli_forge.php
│   │   │   │   ├── mysqli_result.php
│   │   │   │   └── mysqli_utility.php
│   │   │   ├── oci8
│   │   │   │   ├── index.html
│   │   │   │   ├── oci8_driver.php
│   │   │   │   ├── oci8_forge.php
│   │   │   │   ├── oci8_result.php
│   │   │   │   └── oci8_utility.php
│   │   │   ├── odbc
│   │   │   │   ├── index.html
│   │   │   │   ├── odbc_driver.php
│   │   │   │   ├── odbc_forge.php
│   │   │   │   ├── odbc_result.php
│   │   │   │   └── odbc_utility.php
│   │   │   ├── pdo
│   │   │   │   ├── index.html
│   │   │   │   ├── pdo_driver.php
│   │   │   │   ├── pdo_forge.php
│   │   │   │   ├── pdo_result.php
│   │   │   │   └── pdo_utility.php
│   │   │   ├── postgre
│   │   │   │   ├── index.html
│   │   │   │   ├── postgre_driver.php
│   │   │   │   ├── postgre_forge.php
│   │   │   │   ├── postgre_result.php
│   │   │   │   └── postgre_utility.php
│   │   │   ├── sqlite
│   │   │   │   ├── index.html
│   │   │   │   ├── sqlite_driver.php
│   │   │   │   ├── sqlite_forge.php
│   │   │   │   ├── sqlite_result.php
│   │   │   │   └── sqlite_utility.php
│   │   │   └── sqlsrv
│   │   │   ├── index.html
│   │   │   ├── sqlsrv_driver.php
│   │   │   ├── sqlsrv_forge.php
│   │   │   ├── sqlsrv_result.php
│   │   │   └── sqlsrv_utility.php
│   │   └── index.html
│   ├── fonts
│   │   ├── index.html
│   │   └── texb.ttf
│   ├── helpers
│   │   ├── array_helper.php
│   │   ├── captcha_helper.php
│   │   ├── cookie_helper.php
│   │   ├── date_helper.php
│   │   ├── directory_helper.php
│   │   ├── download_helper.php
│   │   ├── email_helper.php
│   │   ├── file_helper.php
│   │   ├── form_helper.php
│   │   ├── html_helper.php
│   │   ├── index.html
│   │   ├── inflector_helper.php
│   │   ├── language_helper.php
│   │   ├── number_helper.php
│   │   ├── path_helper.php
│   │   ├── security_helper.php
│   │   ├── smiley_helper.php
│   │   ├── string_helper.php
│   │   ├── text_helper.php
│   │   ├── typography_helper.php
│   │   ├── url_helper.php
│   │   └── xml_helper.php
│   ├── index.html
│   ├── language
│   │   ├── english
│   │   │   ├── calendar_lang.php
│   │   │   ├── date_lang.php
│   │   │   ├── db_lang.php
│   │   │   ├── email_lang.php
│   │   │   ├── form_validation_lang.php
│   │   │   ├── ftp_lang.php
│   │   │   ├── imglib_lang.php
│   │   │   ├── index.html
│   │   │   ├── migration_lang.php
│   │   │   ├── number_lang.php
│   │   │   ├── profiler_lang.php
│   │   │   ├── unit_test_lang.php
│   │   │   └── upload_lang.php
│   │   └── index.html
│   └── libraries
│   ├── Cache
│   │   ├── Cache.php
│   │   └── drivers
│   │   ├── Cache_apc.php
│   │   ├── Cache_dummy.php
│   │   ├── Cache_file.php
│   │   └── Cache_memcached.php
│   ├── Calendar.php
│   ├── Cart.php
│   ├── Driver.php
│   ├── Email.php
│   ├── Encrypt.php
│   ├── Form_validation.php
│   ├── Ftp.php
│   ├── Image_lib.php
│   ├── index.html
│   ├── javascript
│   │   └── Jquery.php
│   ├── Javascript.php
│   ├── Log.php
│   ├── Migration.php
│   ├── Pagination.php
│   ├── Parser.php
│   ├── Profiler.php
│   ├── Session.php
│   ├── Sha1.php
│   ├── Table.php
│   ├── Trackback.php
│   ├── Typography.php
│   ├── Unit_test.php
│   ├── Upload.php
│   ├── User_agent.php
│   ├── Xmlrpc.php
│   ├── Xmlrpcs.php
│   └── Zip.php
└── templates
├── default
│   └── index.html
└── index.html

97 directories, 668 files

标签:

实例下载地址

CI框架写的CMS管理

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警