实例介绍
用cakephp实现的简单商城系统,有基本的商城管理功能和会员注册管理功能,代码简洁易懂,直接输入http://域名/install.php...此商城系统是一个比较典型的cakephp案例,比较适合一些有意学习cakephp的人进行研究学习……
【实例截图】
【核心代码】
.
├── favshop
│ ├── upload
│ │ ├── app
│ │ │ ├── app_controller.php
│ │ │ ├── app_model.php
│ │ │ ├── cache
│ │ │ ├── config
│ │ │ │ ├── acl.ini.php
│ │ │ │ ├── bootstrap.php
│ │ │ │ ├── core.php
│ │ │ │ ├── database.php
│ │ │ │ ├── inflections.php
│ │ │ │ ├── routes.php
│ │ │ │ └── sql
│ │ │ │ ├── db_acl.php
│ │ │ │ ├── db_acl.sql
│ │ │ │ ├── i18n.php
│ │ │ │ ├── i18n.sql
│ │ │ │ ├── sessions.php
│ │ │ │ └── sessions.sql
│ │ │ ├── controllers
│ │ │ │ ├── addresses_controller.php
│ │ │ │ ├── admins_controller.php
│ │ │ │ ├── announcements_controller.php
│ │ │ │ ├── articles_controller.php
│ │ │ │ ├── brands_controller.php
│ │ │ │ ├── carts_controller.php
│ │ │ │ ├── categories_controller.php
│ │ │ │ ├── comments_controller.php
│ │ │ │ ├── helps_controller.php
│ │ │ │ ├── members_controller.php
│ │ │ │ ├── orders_controller.php
│ │ │ │ ├── products_controller.php
│ │ │ │ ├── rotates_controller.php
│ │ │ │ ├── systems_controller.php
│ │ │ │ └── uploads_controller.php
│ │ │ ├── include
│ │ │ │ └── function.php
│ │ │ ├── index.php
│ │ │ ├── install
│ │ │ │ ├── fun.php
│ │ │ │ ├── install.php
│ │ │ │ ├── install1.php
│ │ │ │ ├── install2.php
│ │ │ │ ├── install3.php
│ │ │ │ ├── install4.php
│ │ │ │ ├── install5.php
│ │ │ │ └── shop.sql
│ │ │ ├── install.php
│ │ │ ├── locale
│ │ │ │ ├── eng
│ │ │ │ │ └── LC_MESSAGES
│ │ │ │ │ └── default.po
│ │ │ │ └── zh_cn
│ │ │ │ ├── LC_MESSAGES
│ │ │ │ │ └── default.po
│ │ │ │ ├── address.php
│ │ │ │ ├── admin.php
│ │ │ │ ├── announcement.php
│ │ │ │ ├── article.php
│ │ │ │ ├── brand.php
│ │ │ │ ├── category.php
│ │ │ │ ├── comment.php
│ │ │ │ ├── help.php
│ │ │ │ ├── member.php
│ │ │ │ ├── order.php
│ │ │ │ ├── product.php
│ │ │ │ ├── rotate.php
│ │ │ │ └── upload.php
│ │ │ ├── models
│ │ │ │ ├── address.php
│ │ │ │ ├── admin.php
│ │ │ │ ├── announcement.php
│ │ │ │ ├── article.php
│ │ │ │ ├── brand.php
│ │ │ │ ├── category.php
│ │ │ │ ├── comment.php
│ │ │ │ ├── favorite.php
│ │ │ │ ├── help.php
│ │ │ │ ├── member.php
│ │ │ │ ├── order.php
│ │ │ │ ├── ordersproduct.php
│ │ │ │ ├── post.php
│ │ │ │ └── product.php
│ │ │ ├── plugins
│ │ │ │ └── empty
│ │ │ ├── tmp
│ │ │ │ ├── cache
│ │ │ │ │ ├── models
│ │ │ │ │ │ ├── default_ec_list
│ │ │ │ │ │ ├── default_test1_addresses
│ │ │ │ │ │ ├── default_test1_admins
│ │ │ │ │ │ ├── default_test1_announcements
│ │ │ │ │ │ ├── default_test1_articles
│ │ │ │ │ │ ├── default_test1_brands
│ │ │ │ │ │ ├── default_test1_categories
│ │ │ │ │ │ ├── default_test1_comments
│ │ │ │ │ │ ├── default_test1_members
│ │ │ │ │ │ ├── default_test1_orders
│ │ │ │ │ │ ├── default_test1_orders_products
│ │ │ │ │ │ └── default_test1_products
│ │ │ │ │ ├── persistent
│ │ │ │ │ │ ├── cake_core_core_paths
│ │ │ │ │ │ ├── cake_core_dir_map
│ │ │ │ │ │ └── cake_core_file_map
│ │ │ │ │ └── views
│ │ │ │ │ └── empty
│ │ │ │ ├── logs
│ │ │ │ │ ├── debug.log
│ │ │ │ │ └── error.log
│ │ │ │ ├── sessions
│ │ │ │ └── tests
│ │ │ │ └── empty
│ │ │ ├── views
│ │ │ │ ├── addresses
│ │ │ │ │ ├── member_add.thtml
│ │ │ │ │ ├── member_edit.thtml
│ │ │ │ │ └── member_index.thtml
│ │ │ │ ├── admins
│ │ │ │ │ ├── admin_add.thtml
│ │ │ │ │ ├── admin_edit.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ └── login.thtml
│ │ │ │ ├── announcements
│ │ │ │ │ ├── admin_add.thtml
│ │ │ │ │ ├── admin_edit.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ ├── index.thtml
│ │ │ │ │ └── view.thtml
│ │ │ │ ├── app.php
│ │ │ │ ├── articles
│ │ │ │ │ ├── admin_add.thtml
│ │ │ │ │ ├── admin_edit.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ ├── index.thtml
│ │ │ │ │ └── view.thtml
│ │ │ │ ├── brands
│ │ │ │ │ ├── add.thtml
│ │ │ │ │ ├── admin_add.thtml
│ │ │ │ │ ├── admin_edit.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ └── edit.thtml
│ │ │ │ ├── carts
│ │ │ │ │ ├── confirm_order.thtml
│ │ │ │ │ ├── index.thtml
│ │ │ │ │ ├── order.thtml
│ │ │ │ │ └── pay.thtml
│ │ │ │ ├── categories
│ │ │ │ │ ├── admin_add.thtml
│ │ │ │ │ ├── admin_edit.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ └── search.thtml
│ │ │ │ ├── comments
│ │ │ │ │ ├── add.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ └── load.thtml
│ │ │ │ ├── helpers
│ │ │ │ │ └── error.php
│ │ │ │ ├── helps
│ │ │ │ │ ├── admin_add.thtml
│ │ │ │ │ ├── admin_edit.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ └── index.thtml
│ │ │ │ ├── layouts
│ │ │ │ │ ├── admin.ctp
│ │ │ │ │ ├── default.ctp
│ │ │ │ │ ├── flash.ctp
│ │ │ │ │ ├── member.ctp
│ │ │ │ │ ├── rotate.ctp
│ │ │ │ │ └── upload.ctp
│ │ │ │ ├── members
│ │ │ │ │ ├── admin_edit.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ ├── login.thtml
│ │ │ │ │ ├── member_password.thtml
│ │ │ │ │ ├── member_profile.thtml
│ │ │ │ │ └── register.thtml
│ │ │ │ ├── orders
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ ├── admin_view.thtml
│ │ │ │ │ ├── member_index.thtml
│ │ │ │ │ └── member_view.thtml
│ │ │ │ ├── products
│ │ │ │ │ ├── add.thtml
│ │ │ │ │ ├── admin_add.thtml
│ │ │ │ │ ├── admin_edit.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ ├── del.thtml
│ │ │ │ │ ├── edit.thtml
│ │ │ │ │ ├── view.thtml
│ │ │ │ │ └── vote.thtml
│ │ │ │ ├── rotates
│ │ │ │ │ ├── add.thtml
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ └── index.thtml
│ │ │ │ ├── systems
│ │ │ │ │ ├── admin_index.thtml
│ │ │ │ │ ├── brand.thtml
│ │ │ │ │ ├── category.thtml
│ │ │ │ │ ├── index.thtml
│ │ │ │ │ ├── member_index.thtml
│ │ │ │ │ └── search.thtml
│ │ │ │ └── uploads
│ │ │ │ └── aupload.thtml
│ │ │ └── webroot
│ │ │ ├── css
│ │ │ │ ├── admin.css
│ │ │ │ ├── article.css
│ │ │ │ ├── cart.css
│ │ │ │ ├── default.css
│ │ │ │ ├── help.css
│ │ │ │ ├── index.css
│ │ │ │ ├── install.css
│ │ │ │ ├── list.css
│ │ │ │ ├── login.css
│ │ │ │ ├── member.css
│ │ │ │ ├── product.css
│ │ │ │ └── rotate.css
│ │ │ ├── css.php
│ │ │ ├── files
│ │ │ ├── img
│ │ │ │ ├── admin
│ │ │ │ │ └── Thumbs.db
│ │ │ │ ├── board_icon.gif
│ │ │ │ ├── btn_2wbg.gif
│ │ │ │ ├── btn_cartdel.gif
│ │ │ │ ├── check_right.gif
│ │ │ │ ├── icon_buy.gif
│ │ │ │ ├── icon_buycar.gif
│ │ │ │ ├── icon_ding.gif
│ │ │ │ ├── icon_pjbar.jpg
│ │ │ │ ├── icon_pjbar_sub.jpg
│ │ │ │ ├── icon_sc1.gif
│ │ │ │ ├── icon_sc2.gif
│ │ │ │ ├── icon_sc4.gif
│ │ │ │ ├── icon_tjzs_bg.gif
│ │ │ │ ├── lady.gif
│ │ │ │ ├── logo.png
│ │ │ │ ├── main_culurebar_numberbg.gif
│ │ │ │ ├── member
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── dot_group.gif
│ │ │ │ │ ├── menu_icon_group.gif
│ │ │ │ │ ├── selected_left_side.gif
│ │ │ │ │ ├── side_corner.gif
│ │ │ │ │ ├── tab_group.gif
│ │ │ │ │ ├── th_bg.gif
│ │ │ │ │ ├── ul_group_sep_line.gif
│ │ │ │ │ └── unselected_hover_left.gif
│ │ │ │ ├── mini_01.jpg
│ │ │ │ ├── mini_02.jpg
│ │ │ │ ├── mini_03.jpg
│ │ │ │ ├── mini_04.jpg
│ │ │ │ ├── mini_05.jpg
│ │ │ │ ├── other.gif
│ │ │ │ ├── right_kefubottom.gif
│ │ │ │ ├── right_kefujibian.gif
│ │ │ │ ├── right_kefujibj.gif
│ │ │ │ ├── right_kefunexia.gif
│ │ │ │ ├── right_kufutt.gif
│ │ │ │ ├── star_rating.gif
│ │ │ │ ├── star_rating1.gif
│ │ │ │ ├── star_rating2.gif
│ │ │ │ ├── star_rating3.gif
│ │ │ │ ├── star_rating4.gif
│ │ │ │ ├── star_rating5.gif
│ │ │ │ ├── step01.gif
│ │ │ │ ├── step02.gif
│ │ │ │ ├── step03.gif
│ │ │ │ ├── step04.gif
│ │ │ │ ├── title_bill.gif
│ │ │ │ ├── title_mycart.gif
│ │ │ │ ├── title_pay.gif
│ │ │ │ ├── title_post.gif
│ │ │ │ └── title_remark.gif
│ │ │ ├── index.php
│ │ │ ├── install.php
│ │ │ ├── js
│ │ │ │ ├── admin.js
│ │ │ │ ├── article.js
│ │ │ │ ├── brand.js
│ │ │ │ ├── builder.js
│ │ │ │ ├── cart.js
│ │ │ │ ├── checkbox.js
│ │ │ │ ├── comment.js
│ │ │ │ ├── controls.js
│ │ │ │ ├── dragdrop.js
│ │ │ │ ├── effects.js
│ │ │ │ ├── help.js
│ │ │ │ ├── kefu.js
│ │ │ │ ├── member.js
│ │ │ │ ├── order.js
│ │ │ │ ├── product.js
│ │ │ │ ├── prototype.js
│ │ │ │ ├── rotate.js
│ │ │ │ ├── rotate2.js
│ │ │ │ ├── scriptaculous.js
│ │ │ │ ├── shop.js
│ │ │ │ ├── slider.js
│ │ │ │ ├── sound.js
│ │ │ │ ├── tiny_mce
│ │ │ │ │ ├── blank.htm
│ │ │ │ │ ├── langs
│ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ ├── license.txt
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ ├── _template
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── template.gif
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ ├── popup.htm
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── advhr
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── advhr.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── advhr.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── rule.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ └── rule.htm
│ │ │ │ │ │ ├── advimage
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── advimage.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── image.htm
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── sample.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── functions.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── advlink
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── advlink.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── functions.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ ├── link.htm
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── autosave
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── bbcode
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ │ │ ├── cleanup
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── contextmenu
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── contextmenu.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── spacer.gif
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── devkit
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── devkit.css
│ │ │ │ │ │ │ │ └── devkit_ui.css
│ │ │ │ │ │ │ ├── devkit.htm
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── flip_down.gif
│ │ │ │ │ │ │ │ └── flip_up.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ ├── devkit.js
│ │ │ │ │ │ │ │ └── diff.js
│ │ │ │ │ │ │ └── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ ├── directionality
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── ltr.gif
│ │ │ │ │ │ │ │ └── rtl.gif
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── emotions
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── emotions.htm
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── emotions.gif
│ │ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ │ ├── smiley-cool.gif
│ │ │ │ │ │ │ │ ├── smiley-cry.gif
│ │ │ │ │ │ │ │ ├── smiley-embarassed.gif
│ │ │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif
│ │ │ │ │ │ │ │ ├── smiley-frown.gif
│ │ │ │ │ │ │ │ ├── smiley-innocent.gif
│ │ │ │ │ │ │ │ ├── smiley-kiss.gif
│ │ │ │ │ │ │ │ ├── smiley-laughing.gif
│ │ │ │ │ │ │ │ ├── smiley-money-mouth.gif
│ │ │ │ │ │ │ │ ├── smiley-sealed.gif
│ │ │ │ │ │ │ │ ├── smiley-smile.gif
│ │ │ │ │ │ │ │ ├── smiley-surprised.gif
│ │ │ │ │ │ │ │ ├── smiley-tongue-out.gif
│ │ │ │ │ │ │ │ ├── smiley-undecided.gif
│ │ │ │ │ │ │ │ ├── smiley-wink.gif
│ │ │ │ │ │ │ │ └── smiley-yell.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── functions.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── flash
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ │ │ └── flash.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── flash.htm
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── flash.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── flash.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── fullpage
│ │ │ │ │ │ │ ├── blank.htm
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── fullpage.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── fullpage.htm
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── add.gif
│ │ │ │ │ │ │ │ ├── fullpage.gif
│ │ │ │ │ │ │ │ ├── move_down.gif
│ │ │ │ │ │ │ │ ├── move_up.gif
│ │ │ │ │ │ │ │ └── remove.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── fullpage.js
│ │ │ │ │ │ │ └── langs
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ ├── fullscreen
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── page.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── fullscreen.htm
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── fullscreen.gif
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── iespell
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── iespell.gif
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── inlinepopups
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── inlinepopup.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ │ │ ├── window_close.gif
│ │ │ │ │ │ │ │ ├── window_maximize.gif
│ │ │ │ │ │ │ │ ├── window_minimize.gif
│ │ │ │ │ │ │ │ └── window_resize.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── mcwindows.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── insertdatetime
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── insertdate.gif
│ │ │ │ │ │ │ │ └── inserttime.gif
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── layer
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── absolute.gif
│ │ │ │ │ │ │ │ ├── backward.gif
│ │ │ │ │ │ │ │ ├── forward.gif
│ │ │ │ │ │ │ │ ├── insert_layer.gif
│ │ │ │ │ │ │ │ ├── insertlayer.gif
│ │ │ │ │ │ │ │ ├── movebackward.gif
│ │ │ │ │ │ │ │ └── moveforward.gif
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ │ │ └── media.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── flash.gif
│ │ │ │ │ │ │ │ ├── media.gif
│ │ │ │ │ │ │ │ ├── quicktime.gif
│ │ │ │ │ │ │ │ ├── realmedia.gif
│ │ │ │ │ │ │ │ ├── shockwave.gif
│ │ │ │ │ │ │ │ └── windowsmedia.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ ├── embed.js
│ │ │ │ │ │ │ │ └── media.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── media.htm
│ │ │ │ │ │ ├── nonbreaking
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── nonbreaking.gif
│ │ │ │ │ │ │ └── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ ├── noneditable
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── noneditable.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── paste
│ │ │ │ │ │ │ ├── blank.htm
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── blank.css
│ │ │ │ │ │ │ │ └── pasteword.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── pastetext.gif
│ │ │ │ │ │ │ │ ├── pasteword.gif
│ │ │ │ │ │ │ │ └── selectall.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ ├── pastetext.js
│ │ │ │ │ │ │ │ └── pasteword.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ ├── pastetext.htm
│ │ │ │ │ │ │ ├── pasteword.htm
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── preview
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── example.html
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── preview.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── embed.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── print
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── print.gif
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ ├── save
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── cancel.gif
│ │ │ │ │ │ │ │ └── save.gif
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── searchreplace
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── searchreplace.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── replace.gif
│ │ │ │ │ │ │ │ ├── replace_all_button_bg.gif
│ │ │ │ │ │ │ │ ├── replace_button_bg.gif
│ │ │ │ │ │ │ │ └── search.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── searchreplace.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ └── searchreplace.htm
│ │ │ │ │ │ ├── spellchecker
│ │ │ │ │ │ │ └── langs
│ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ ├── style
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── props.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── apply_button_bg.gif
│ │ │ │ │ │ │ │ ├── style_info.gif
│ │ │ │ │ │ │ │ └── styleprops.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── props.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ ├── props.htm
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── table
│ │ │ │ │ │ │ ├── cell.htm
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── cell.css
│ │ │ │ │ │ │ │ ├── row.css
│ │ │ │ │ │ │ │ └── table.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── buttons.gif
│ │ │ │ │ │ │ │ ├── table.gif
│ │ │ │ │ │ │ │ ├── table_cell_props.gif
│ │ │ │ │ │ │ │ ├── table_delete.gif
│ │ │ │ │ │ │ │ ├── table_delete_col.gif
│ │ │ │ │ │ │ │ ├── table_delete_row.gif
│ │ │ │ │ │ │ │ ├── table_insert_col_after.gif
│ │ │ │ │ │ │ │ ├── table_insert_col_before.gif
│ │ │ │ │ │ │ │ ├── table_insert_row_after.gif
│ │ │ │ │ │ │ │ ├── table_insert_row_before.gif
│ │ │ │ │ │ │ │ ├── table_merge_cells.gif
│ │ │ │ │ │ │ │ ├── table_row_props.gif
│ │ │ │ │ │ │ │ └── table_split_cells.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ ├── cell.js
│ │ │ │ │ │ │ │ ├── merge_cells.js
│ │ │ │ │ │ │ │ ├── row.js
│ │ │ │ │ │ │ │ └── table.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ ├── merge_cells.htm
│ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ ├── row.htm
│ │ │ │ │ │ │ └── table.htm
│ │ │ │ │ │ ├── template
│ │ │ │ │ │ │ ├── blank.htm
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── template.css
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── template.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ └── template.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ │ └── template.htm
│ │ │ │ │ │ ├── visualchars
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── visualchars.gif
│ │ │ │ │ │ │ └── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ ├── xhtmlxtras
│ │ │ │ │ │ │ ├── abbr.htm
│ │ │ │ │ │ │ ├── acronym.htm
│ │ │ │ │ │ │ ├── attributes.htm
│ │ │ │ │ │ │ ├── cite.htm
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── attributes.css
│ │ │ │ │ │ │ │ ├── popup.css
│ │ │ │ │ │ │ │ └── xhtmlxtras.css
│ │ │ │ │ │ │ ├── del.htm
│ │ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── abbr.gif
│ │ │ │ │ │ │ │ ├── acronym.gif
│ │ │ │ │ │ │ │ ├── attribs.gif
│ │ │ │ │ │ │ │ ├── cite.gif
│ │ │ │ │ │ │ │ ├── date_time.gif
│ │ │ │ │ │ │ │ ├── del.gif
│ │ │ │ │ │ │ │ ├── ins.gif
│ │ │ │ │ │ │ │ └── remove_button_bg.gif
│ │ │ │ │ │ │ ├── ins.htm
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ ├── abbr.js
│ │ │ │ │ │ │ │ ├── acronym.js
│ │ │ │ │ │ │ │ ├── attributes.js
│ │ │ │ │ │ │ │ ├── cite.js
│ │ │ │ │ │ │ │ ├── del.js
│ │ │ │ │ │ │ │ ├── element_common.js
│ │ │ │ │ │ │ │ └── ins.js
│ │ │ │ │ │ │ └── langs
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ └── zoom
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── themes
│ │ │ │ │ │ ├── advanced
│ │ │ │ │ │ │ ├── about.htm
│ │ │ │ │ │ │ ├── anchor.htm
│ │ │ │ │ │ │ ├── charmap.htm
│ │ │ │ │ │ │ ├── color_picker.htm
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── colorpicker.css
│ │ │ │ │ │ │ │ ├── editor_content.css
│ │ │ │ │ │ │ │ ├── editor_popup.css
│ │ │ │ │ │ │ │ └── editor_ui.css
│ │ │ │ │ │ │ ├── docs
│ │ │ │ │ │ │ │ └── en
│ │ │ │ │ │ │ │ ├── about.htm
│ │ │ │ │ │ │ │ ├── common_buttons.htm
│ │ │ │ │ │ │ │ ├── create_accessible_content.htm
│ │ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ │ ├── insert_anchor_window.gif
│ │ │ │ │ │ │ │ │ ├── insert_image_window.gif
│ │ │ │ │ │ │ │ │ ├── insert_link_window.gif
│ │ │ │ │ │ │ │ │ └── insert_table_window.gif
│ │ │ │ │ │ │ │ ├── index.htm
│ │ │ │ │ │ │ │ ├── insert_anchor_button.htm
│ │ │ │ │ │ │ │ ├── insert_image_button.htm
│ │ │ │ │ │ │ │ ├── insert_link_button.htm
│ │ │ │ │ │ │ │ ├── insert_table_button.htm
│ │ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ │ ├── editor_template.js
│ │ │ │ │ │ │ ├── editor_template_src.js
│ │ │ │ │ │ │ ├── image.htm
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ │ │ ├── anchor_symbol.gif
│ │ │ │ │ │ │ │ ├── backcolor.gif
│ │ │ │ │ │ │ │ ├── bold.gif
│ │ │ │ │ │ │ │ ├── bold_de_se.gif
│ │ │ │ │ │ │ │ ├── bold_es.gif
│ │ │ │ │ │ │ │ ├── bold_fr.gif
│ │ │ │ │ │ │ │ ├── bold_ru.gif
│ │ │ │ │ │ │ │ ├── bold_tw.gif
│ │ │ │ │ │ │ │ ├── browse.gif
│ │ │ │ │ │ │ │ ├── bullist.gif
│ │ │ │ │ │ │ │ ├── button_menu.gif
│ │ │ │ │ │ │ │ ├── buttons.gif
│ │ │ │ │ │ │ │ ├── cancel_button_bg.gif
│ │ │ │ │ │ │ │ ├── charmap.gif
│ │ │ │ │ │ │ │ ├── cleanup.gif
│ │ │ │ │ │ │ │ ├── close.gif
│ │ │ │ │ │ │ │ ├── code.gif
│ │ │ │ │ │ │ │ ├── color.gif
│ │ │ │ │ │ │ │ ├── colors.jpg
│ │ │ │ │ │ │ │ ├── copy.gif
│ │ │ │ │ │ │ │ ├── custom_1.gif
│ │ │ │ │ │ │ │ ├── cut.gif
│ │ │ │ │ │ │ │ ├── forecolor.gif
│ │ │ │ │ │ │ │ ├── help.gif
│ │ │ │ │ │ │ │ ├── hr.gif
│ │ │ │ │ │ │ │ ├── image.gif
│ │ │ │ │ │ │ │ ├── indent.gif
│ │ │ │ │ │ │ │ ├── insert_button_bg.gif
│ │ │ │ │ │ │ │ ├── italic.gif
│ │ │ │ │ │ │ │ ├── italic_de_se.gif
│ │ │ │ │ │ │ │ ├── italic_es.gif
│ │ │ │ │ │ │ │ ├── italic_ru.gif
│ │ │ │ │ │ │ │ ├── italic_tw.gif
│ │ │ │ │ │ │ │ ├── justifycenter.gif
│ │ │ │ │ │ │ │ ├── justifyfull.gif
│ │ │ │ │ │ │ │ ├── justifyleft.gif
│ │ │ │ │ │ │ │ ├── justifyright.gif
│ │ │ │ │ │ │ │ ├── link.gif
│ │ │ │ │ │ │ │ ├── menu_check.gif
│ │ │ │ │ │ │ │ ├── newdocument.gif
│ │ │ │ │ │ │ │ ├── numlist.gif
│ │ │ │ │ │ │ │ ├── opacity.png
│ │ │ │ │ │ │ │ ├── outdent.gif
│ │ │ │ │ │ │ │ ├── paste.gif
│ │ │ │ │ │ │ │ ├── redo.gif
│ │ │ │ │ │ │ │ ├── removeformat.gif
│ │ │ │ │ │ │ │ ├── separator.gif
│ │ │ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ │ │ ├── statusbar_resize.gif
│ │ │ │ │ │ │ │ ├── strikethrough.gif
│ │ │ │ │ │ │ │ ├── sub.gif
│ │ │ │ │ │ │ │ ├── sup.gif
│ │ │ │ │ │ │ │ ├── underline.gif
│ │ │ │ │ │ │ │ ├── underline_es.gif
│ │ │ │ │ │ │ │ ├── underline_fr.gif
│ │ │ │ │ │ │ │ ├── underline_ru.gif
│ │ │ │ │ │ │ │ ├── underline_tw.gif
│ │ │ │ │ │ │ │ ├── undo.gif
│ │ │ │ │ │ │ │ ├── unlink.gif
│ │ │ │ │ │ │ │ ├── visualaid.gif
│ │ │ │ │ │ │ │ └── xp
│ │ │ │ │ │ │ │ ├── tab_bg.gif
│ │ │ │ │ │ │ │ ├── tab_end.gif
│ │ │ │ │ │ │ │ ├── tab_sel_bg.gif
│ │ │ │ │ │ │ │ ├── tab_sel_end.gif
│ │ │ │ │ │ │ │ └── tabs_bg.gif
│ │ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ │ │ ├── anchor.js
│ │ │ │ │ │ │ │ ├── charmap.js
│ │ │ │ │ │ │ │ ├── color_picker.js
│ │ │ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ │ │ ├── link.js
│ │ │ │ │ │ │ │ └── source_editor.js
│ │ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── zh_cn.js
│ │ │ │ │ │ │ ├── link.htm
│ │ │ │ │ │ │ └── source_editor.htm
│ │ │ │ │ │ └── simple
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── editor_content.css
│ │ │ │ │ │ │ ├── editor_popup.css
│ │ │ │ │ │ │ └── editor_ui.css
│ │ │ │ │ │ ├── editor_template.js
│ │ │ │ │ │ ├── editor_template_src.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── bold.gif
│ │ │ │ │ │ ├── bold_de_se.gif
│ │ │ │ │ │ ├── bold_fr.gif
│ │ │ │ │ │ ├── bold_ru.gif
│ │ │ │ │ │ ├── bold_tw.gif
│ │ │ │ │ │ ├── bullist.gif
│ │ │ │ │ │ ├── buttons.gif
│ │ │ │ │ │ ├── cleanup.gif
│ │ │ │ │ │ ├── italic.gif
│ │ │ │ │ │ ├── italic_de_se.gif
│ │ │ │ │ │ ├── italic_ru.gif
│ │ │ │ │ │ ├── italic_tw.gif
│ │ │ │ │ │ ├── numlist.gif
│ │ │ │ │ │ ├── redo.gif
│ │ │ │ │ │ ├── separator.gif
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── strikethrough.gif
│ │ │ │ │ │ ├── underline.gif
│ │ │ │ │ │ ├── underline_fr.gif
│ │ │ │ │ │ ├── underline_ru.gif
│ │ │ │ │ │ ├── underline_tw.gif
│ │ │ │ │ │ └── undo.gif
│ │ │ │ │ ├── tiny_mce.js
│ │ │ │ │ ├── tiny_mce_dev.js
│ │ │ │ │ ├── tiny_mce_popup.js
│ │ │ │ │ ├── tiny_mce_src.js
│ │ │ │ │ └── utils
│ │ │ │ │ ├── editable_selects.js
│ │ │ │ │ ├── form_utils.js
│ │ │ │ │ ├── mclayer.js
│ │ │ │ │ ├── mctabs.js
│ │ │ │ │ └── validate.js
│ │ │ │ ├── unittest.js
│ │ │ │ ├── upload.js
│ │ │ │ ├── util.js
│ │ │ │ └── vendors.php
│ │ │ └── upload
│ │ │ ├── adv
│ │ │ ├── brand
│ │ │ │ ├── default.gif
│ │ │ │ └── default_big.gif
│ │ │ └── product
│ │ │ ├── default.gif
│ │ │ └── default_big.gif
│ │ ├── cake
│ │ │ ├── LICENSE.txt
│ │ │ ├── VERSION.txt
│ │ │ ├── basics.php
│ │ │ ├── bootstrap.php
│ │ │ ├── config
│ │ │ │ ├── config.php
│ │ │ │ ├── paths.php
│ │ │ │ └── unicode
│ │ │ │ └── casefolding
│ │ │ │ ├── 0000_007f.php
│ │ │ │ ├── 0080_00ff.php
│ │ │ │ ├── 0100_017f.php
│ │ │ │ ├── 0180_024F.php
│ │ │ │ ├── 0300_036f.php
│ │ │ │ ├── 0370_03ff.php
│ │ │ │ ├── 0400_04ff.php
│ │ │ │ ├── 0500_052f.php
│ │ │ │ ├── 0530_058f.php
│ │ │ │ ├── 10400_1044f.php
│ │ │ │ ├── 10a0_10ff.php
│ │ │ │ ├── 1e00_1eff.php
│ │ │ │ ├── 1f00_1fff.php
│ │ │ │ ├── 2100_214f.php
│ │ │ │ ├── 2150_218f.php
│ │ │ │ ├── 2460_24ff.php
│ │ │ │ ├── 2c00_2c5f.php
│ │ │ │ ├── 2c60_2c7f.php
│ │ │ │ ├── 2c80_2cff.php
│ │ │ │ ├── fb00_fb4f.php
│ │ │ │ └── ff00_ffef.php
│ │ │ ├── console
│ │ │ │ ├── cake
│ │ │ │ ├── cake.bat
│ │ │ │ ├── cake.php
│ │ │ │ ├── error.php
│ │ │ │ └── libs
│ │ │ │ ├── acl.php
│ │ │ │ ├── api.php
│ │ │ │ ├── bake.php
│ │ │ │ ├── console.php
│ │ │ │ ├── i18n.php
│ │ │ │ ├── schema.php
│ │ │ │ ├── shell.php
│ │ │ │ ├── tasks
│ │ │ │ │ ├── controller.php
│ │ │ │ │ ├── db_config.php
│ │ │ │ │ ├── extract.php
│ │ │ │ │ ├── model.php
│ │ │ │ │ ├── plugin.php
│ │ │ │ │ ├── project.php
│ │ │ │ │ └── view.php
│ │ │ │ ├── templates
│ │ │ │ │ ├── skel
│ │ │ │ │ │ ├── app_controller.php
│ │ │ │ │ │ ├── app_helper.php
│ │ │ │ │ │ ├── app_model.php
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ ├── acl.ini.php
│ │ │ │ │ │ │ ├── bootstrap.php
│ │ │ │ │ │ │ ├── core.php
│ │ │ │ │ │ │ ├── database.php.default
│ │ │ │ │ │ │ ├── inflections.php
│ │ │ │ │ │ │ ├── routes.php
│ │ │ │ │ │ │ └── sql
│ │ │ │ │ │ │ ├── db_acl.php
│ │ │ │ │ │ │ ├── db_acl.sql
│ │ │ │ │ │ │ ├── i18n.php
│ │ │ │ │ │ │ ├── i18n.sql
│ │ │ │ │ │ │ ├── sessions.php
│ │ │ │ │ │ │ └── sessions.sql
│ │ │ │ │ │ ├── controllers
│ │ │ │ │ │ │ ├── components
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ └── pages_controller.php
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ ├── locale
│ │ │ │ │ │ │ └── eng
│ │ │ │ │ │ │ └── LC_MESSAGES
│ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ ├── behaviors
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ └── datasources
│ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ ├── plugins
│ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ ├── tests
│ │ │ │ │ │ │ ├── cases
│ │ │ │ │ │ │ │ ├── behaviors
│ │ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ │ ├── components
│ │ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ │ ├── controllers
│ │ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ │ ├── helpers
│ │ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ │ └── models
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ ├── fixtures
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ └── groups
│ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ ├── tmp
│ │ │ │ │ │ │ ├── cache
│ │ │ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ │ ├── persistent
│ │ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ │ └── views
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ ├── logs
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ ├── sessions
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ ├── vendors
│ │ │ │ │ │ │ └── shells
│ │ │ │ │ │ │ ├── tasks
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ ├── views
│ │ │ │ │ │ │ ├── elements
│ │ │ │ │ │ │ │ ├── email
│ │ │ │ │ │ │ │ │ ├── html
│ │ │ │ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ │ │ │ └── text
│ │ │ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ ├── errors
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ ├── helpers
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ ├── layouts
│ │ │ │ │ │ │ │ ├── ajax.ctp
│ │ │ │ │ │ │ │ ├── default.ctp
│ │ │ │ │ │ │ │ ├── email
│ │ │ │ │ │ │ │ │ ├── html
│ │ │ │ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ │ │ │ └── text
│ │ │ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ │ │ ├── flash.ctp
│ │ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ │ │ ├── rss
│ │ │ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ │ │ └── xml
│ │ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ │ ├── pages
│ │ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ │ └── scaffolds
│ │ │ │ │ │ │ └── empty
│ │ │ │ │ │ └── webroot
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── cake.generic.css
│ │ │ │ │ │ ├── css.php
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ ├── files
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── cake.icon.gif
│ │ │ │ │ │ │ └── cake.power.gif
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ └── vendors.php
│ │ │ │ │ │ └── test.php
│ │ │ │ │ └── views
│ │ │ │ │ ├── form.ctp
│ │ │ │ │ ├── home.ctp
│ │ │ │ │ ├── index.ctp
│ │ │ │ │ └── view.ctp
│ │ │ │ └── validators
│ │ │ ├── dispatcher.php
│ │ │ ├── libs
│ │ │ │ ├── cache
│ │ │ │ │ ├── apc.php
│ │ │ │ │ ├── file.php
│ │ │ │ │ ├── memcache.php
│ │ │ │ │ ├── model.php
│ │ │ │ │ └── xcache.php
│ │ │ │ ├── cache.php
│ │ │ │ ├── cake_log.php
│ │ │ │ ├── class_registry.php
│ │ │ │ ├── configure.php
│ │ │ │ ├── controller
│ │ │ │ │ ├── app_controller.php
│ │ │ │ │ ├── component.php
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── acl.php
│ │ │ │ │ │ ├── auth.php
│ │ │ │ │ │ ├── cookie.php
│ │ │ │ │ │ ├── email.php
│ │ │ │ │ │ ├── request_handler.php
│ │ │ │ │ │ ├── security.php
│ │ │ │ │ │ └── session.php
│ │ │ │ │ ├── controller.php
│ │ │ │ │ ├── pages_controller.php
│ │ │ │ │ └── scaffold.php
│ │ │ │ ├── debugger.php
│ │ │ │ ├── error.php
│ │ │ │ ├── file.php
│ │ │ │ ├── flay.php
│ │ │ │ ├── folder.php
│ │ │ │ ├── http_socket.php
│ │ │ │ ├── i18n.php
│ │ │ │ ├── inflector.php
│ │ │ │ ├── l10n.php
│ │ │ │ ├── magic_db.php
│ │ │ │ ├── model
│ │ │ │ │ ├── app_model.php
│ │ │ │ │ ├── behavior.php
│ │ │ │ │ ├── behaviors
│ │ │ │ │ │ ├── acl.php
│ │ │ │ │ │ ├── translate.php
│ │ │ │ │ │ └── tree.php
│ │ │ │ │ ├── connection_manager.php
│ │ │ │ │ ├── datasources
│ │ │ │ │ │ ├── datasource.php
│ │ │ │ │ │ ├── dbo
│ │ │ │ │ │ │ ├── dbo_adodb.php
│ │ │ │ │ │ │ ├── dbo_db2.php
│ │ │ │ │ │ │ ├── dbo_firebird.php
│ │ │ │ │ │ │ ├── dbo_mssql.php
│ │ │ │ │ │ │ ├── dbo_mysql.php
│ │ │ │ │ │ │ ├── dbo_mysqli.php
│ │ │ │ │ │ │ ├── dbo_odbc.php
│ │ │ │ │ │ │ ├── dbo_oracle.php
│ │ │ │ │ │ │ ├── dbo_postgres.php
│ │ │ │ │ │ │ ├── dbo_sqlite.php
│ │ │ │ │ │ │ └── dbo_sybase.php
│ │ │ │ │ │ └── dbo_source.php
│ │ │ │ │ ├── db_acl.php
│ │ │ │ │ ├── model.php
│ │ │ │ │ └── schema.php
│ │ │ │ ├── object.php
│ │ │ │ ├── overloadable.php
│ │ │ │ ├── overloadable_php4.php
│ │ │ │ ├── overloadable_php5.php
│ │ │ │ ├── router.php
│ │ │ │ ├── sanitize.php
│ │ │ │ ├── security.php
│ │ │ │ ├── session.php
│ │ │ │ ├── set.php
│ │ │ │ ├── socket.php
│ │ │ │ ├── string.php
│ │ │ │ ├── validation.php
│ │ │ │ ├── view
│ │ │ │ │ ├── elements
│ │ │ │ │ │ ├── dump.ctp
│ │ │ │ │ │ └── email
│ │ │ │ │ │ ├── html
│ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ └── text
│ │ │ │ │ │ └── default.ctp
│ │ │ │ │ ├── errors
│ │ │ │ │ │ ├── error404.ctp
│ │ │ │ │ │ ├── missing_action.ctp
│ │ │ │ │ │ ├── missing_component_class.ctp
│ │ │ │ │ │ ├── missing_component_file.ctp
│ │ │ │ │ │ ├── missing_connection.ctp
│ │ │ │ │ │ ├── missing_controller.ctp
│ │ │ │ │ │ ├── missing_helper_class.ctp
│ │ │ │ │ │ ├── missing_helper_file.ctp
│ │ │ │ │ │ ├── missing_layout.ctp
│ │ │ │ │ │ ├── missing_model.ctp
│ │ │ │ │ │ ├── missing_scaffolddb.ctp
│ │ │ │ │ │ ├── missing_table.ctp
│ │ │ │ │ │ ├── missing_view.ctp
│ │ │ │ │ │ ├── private_action.ctp
│ │ │ │ │ │ └── scaffold_error.ctp
│ │ │ │ │ ├── helper.php
│ │ │ │ │ ├── helpers
│ │ │ │ │ │ ├── ajax.php
│ │ │ │ │ │ ├── app_helper.php
│ │ │ │ │ │ ├── cache.php
│ │ │ │ │ │ ├── form.php
│ │ │ │ │ │ ├── html.php
│ │ │ │ │ │ ├── javascript.php
│ │ │ │ │ │ ├── js.php
│ │ │ │ │ │ ├── number.php
│ │ │ │ │ │ ├── paginator.php
│ │ │ │ │ │ ├── rss.php
│ │ │ │ │ │ ├── session.php
│ │ │ │ │ │ ├── text.php
│ │ │ │ │ │ ├── time.php
│ │ │ │ │ │ └── xml.php
│ │ │ │ │ ├── layouts
│ │ │ │ │ │ ├── ajax.ctp
│ │ │ │ │ │ ├── default.ctp
│ │ │ │ │ │ ├── email
│ │ │ │ │ │ │ ├── html
│ │ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ │ └── text
│ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ ├── flash.ctp
│ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ ├── rss
│ │ │ │ │ │ │ └── default.ctp
│ │ │ │ │ │ └── xml
│ │ │ │ │ │ └── default.ctp
│ │ │ │ │ ├── media.php
│ │ │ │ │ ├── pages
│ │ │ │ │ │ └── home.ctp
│ │ │ │ │ ├── scaffolds
│ │ │ │ │ │ ├── edit.ctp
│ │ │ │ │ │ ├── index.ctp
│ │ │ │ │ │ └── view.ctp
│ │ │ │ │ ├── theme.php
│ │ │ │ │ └── view.php
│ │ │ │ └── xml.php
│ │ │ └── tests
│ │ │ ├── cases
│ │ │ │ ├── dispatcher.test.php
│ │ │ │ ├── libs
│ │ │ │ │ ├── cache
│ │ │ │ │ │ ├── apc.test.php
│ │ │ │ │ │ ├── file.test.php
│ │ │ │ │ │ ├── memcache.test.php
│ │ │ │ │ │ ├── model.test.php
│ │ │ │ │ │ └── xcache.test.php
│ │ │ │ │ ├── cache.test.php
│ │ │ │ │ ├── cake_log.test.php
│ │ │ │ │ ├── class_registry.test.php
│ │ │ │ │ ├── configure.test.php
│ │ │ │ │ ├── controller
│ │ │ │ │ │ ├── component.test.php
│ │ │ │ │ │ ├── components
│ │ │ │ │ │ │ ├── acl.test.php
│ │ │ │ │ │ │ ├── auth.test.php
│ │ │ │ │ │ │ ├── cookie.test.php
│ │ │ │ │ │ │ ├── email.test.php
│ │ │ │ │ │ │ ├── request_handler.test.php
│ │ │ │ │ │ │ ├── security.test.php
│ │ │ │ │ │ │ └── session.test.php
│ │ │ │ │ │ ├── controller.test.php
│ │ │ │ │ │ ├── pages_controller.php
│ │ │ │ │ │ └── scaffold.test.php
│ │ │ │ │ ├── debugger.test.php
│ │ │ │ │ ├── error.test.php
│ │ │ │ │ ├── file.test.php
│ │ │ │ │ ├── flay.test.php
│ │ │ │ │ ├── folder.test.php
│ │ │ │ │ ├── http_socket.test.php
│ │ │ │ │ ├── i18n.test.php
│ │ │ │ │ ├── inflector.test.php
│ │ │ │ │ ├── l10n.test.php
│ │ │ │ │ ├── loader.test.php
│ │ │ │ │ ├── magic_db.test.php
│ │ │ │ │ ├── model
│ │ │ │ │ │ ├── behaviors
│ │ │ │ │ │ │ ├── translate.test.php
│ │ │ │ │ │ │ └── tree.test.php
│ │ │ │ │ │ ├── datasources
│ │ │ │ │ │ │ ├── dbo
│ │ │ │ │ │ │ │ ├── dbo_mssql.test.php
│ │ │ │ │ │ │ │ ├── dbo_mysql.test.php
│ │ │ │ │ │ │ │ └── dbo_postgres.test.php
│ │ │ │ │ │ │ └── dbo_source.test.php
│ │ │ │ │ │ ├── db_acl.test.php
│ │ │ │ │ │ ├── model.test.php
│ │ │ │ │ │ └── schema.test.php
│ │ │ │ │ ├── object.test.php
│ │ │ │ │ ├── overloadable.test.php
│ │ │ │ │ ├── router.test.php
│ │ │ │ │ ├── sanitize.test.php
│ │ │ │ │ ├── security.test.php
│ │ │ │ │ ├── session.test.php
│ │ │ │ │ ├── set.test.php
│ │ │ │ │ ├── socket.test.php
│ │ │ │ │ ├── string.test.php
│ │ │ │ │ ├── validation.test.php
│ │ │ │ │ ├── view
│ │ │ │ │ │ ├── helper.test.php
│ │ │ │ │ │ ├── helpers
│ │ │ │ │ │ │ ├── ajax.test.php
│ │ │ │ │ │ │ ├── cache.test.php
│ │ │ │ │ │ │ ├── form.test.php
│ │ │ │ │ │ │ ├── html.test.php
│ │ │ │ │ │ │ ├── javascript.test.php
│ │ │ │ │ │ │ ├── js.test.php
│ │ │ │ │ │ │ ├── number.test.php
│ │ │ │ │ │ │ ├── paginator.test.php
│ │ │ │ │ │ │ ├── rss.test.php
│ │ │ │ │ │ │ ├── session.test.php
│ │ │ │ │ │ │ ├── text.test.php
│ │ │ │ │ │ │ ├── time.test.php
│ │ │ │ │ │ │ └── xml.test.php
│ │ │ │ │ │ ├── theme.test.php
│ │ │ │ │ │ └── view.test.php
│ │ │ │ │ └── xml.test.php
│ │ │ │ └── scripts
│ │ │ │ └── tasks
│ │ │ ├── fixtures
│ │ │ │ ├── aco_action_fixture.php
│ │ │ │ ├── aco_fixture.php
│ │ │ │ ├── advertisement_fixture.php
│ │ │ │ ├── another_article_fixture.php
│ │ │ │ ├── apple_fixture.php
│ │ │ │ ├── aro_fixture.php
│ │ │ │ ├── aros_aco_fixture.php
│ │ │ │ ├── article_featured_fixture.php
│ │ │ │ ├── article_featureds_tags_fixture.php
│ │ │ │ ├── article_fixture.php
│ │ │ │ ├── articles_tag_fixture.php
│ │ │ │ ├── attachment_fixture.php
│ │ │ │ ├── auth_user_fixture.php
│ │ │ │ ├── author_fixture.php
│ │ │ │ ├── bid_fixture.php
│ │ │ │ ├── cache_test_model_fixture.php
│ │ │ │ ├── category_fixture.php
│ │ │ │ ├── category_thread_fixture.php
│ │ │ │ ├── comment_fixture.php
│ │ │ │ ├── device_fixture.php
│ │ │ │ ├── device_type_category_fixture.php
│ │ │ │ ├── device_type_fixture.php
│ │ │ │ ├── document_directory_fixture.php
│ │ │ │ ├── document_fixture.php
│ │ │ │ ├── exterior_type_category_fixture.php
│ │ │ │ ├── feature_set_fixture.php
│ │ │ │ ├── featured_fixture.php
│ │ │ │ ├── home_fixture.php
│ │ │ │ ├── image_fixture.php
│ │ │ │ ├── item_fixture.php
│ │ │ │ ├── items_portfolio_fixture.php
│ │ │ │ ├── join_thing_fixture.php
│ │ │ │ ├── message_fixture.php
│ │ │ │ ├── number_tree_fixture.php
│ │ │ │ ├── portfolio_fixture.php
│ │ │ │ ├── post_fixture.php
│ │ │ │ ├── posts_tag_fixture.php
│ │ │ │ ├── primary_model_fixture.php
│ │ │ │ ├── project_fixture.php
│ │ │ │ ├── sample_fixture.php
│ │ │ │ ├── secondary_model_fixture.php
│ │ │ │ ├── something_else_fixture.php
│ │ │ │ ├── something_fixture.php
│ │ │ │ ├── syfile_fixture.php
│ │ │ │ ├── tag_fixture.php
│ │ │ │ ├── thread_fixture.php
│ │ │ │ ├── translate_fixture.php
│ │ │ │ ├── translate_table_fixture.php
│ │ │ │ ├── translated_item_fixture.php
│ │ │ │ └── user_fixture.php
│ │ │ ├── groups
│ │ │ │ ├── cache.group.php
│ │ │ │ ├── components.group.php
│ │ │ │ ├── configure.group.php
│ │ │ │ ├── helpers.group.php
│ │ │ │ ├── lib.group.php
│ │ │ │ ├── lib_controller.group.php
│ │ │ │ ├── model.group.php
│ │ │ │ ├── no_database.group.php
│ │ │ │ ├── routing_system.group.php
│ │ │ │ └── view.group.php
│ │ │ ├── lib
│ │ │ │ ├── cake_reporter.php
│ │ │ │ ├── cake_test_case.php
│ │ │ │ ├── cake_test_fixture.php
│ │ │ │ ├── cake_test_model.php
│ │ │ │ ├── cake_web_test_case.php
│ │ │ │ ├── cli_reporter.php
│ │ │ │ ├── content.php
│ │ │ │ ├── footer.php
│ │ │ │ ├── header.php
│ │ │ │ ├── simpletest.php
│ │ │ │ └── test_manager.php
│ │ │ └── test_app
│ │ │ ├── controllers
│ │ │ │ └── components
│ │ │ │ └── empty
│ │ │ ├── models
│ │ │ │ ├── behaviors
│ │ │ │ │ └── empty
│ │ │ │ └── datasources
│ │ │ │ └── empty
│ │ │ ├── plugins
│ │ │ │ └── test_plugin
│ │ │ │ ├── controllers
│ │ │ │ │ └── components
│ │ │ │ ├── models
│ │ │ │ │ └── behaviors
│ │ │ │ ├── vendors
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── test_plugin_asset.css
│ │ │ │ │ └── sample
│ │ │ │ │ └── sample_plugin.php
│ │ │ │ └── views
│ │ │ │ ├── helpers
│ │ │ │ │ ├── test_plugin_helper.php
│ │ │ │ │ └── test_plugin_other_helper.php
│ │ │ │ ├── layouts
│ │ │ │ │ └── default.ctp
│ │ │ │ ├── test_plugin
│ │ │ │ │ └── index.ctp
│ │ │ │ └── themed
│ │ │ │ └── test_plugin_theme
│ │ │ │ ├── layouts
│ │ │ │ │ └── default.ctp
│ │ │ │ └── test_plugin
│ │ │ │ └── index.ctp
│ │ │ ├── vendors
│ │ │ │ ├── css
│ │ │ │ │ └── test_asset.css
│ │ │ │ ├── sample
│ │ │ │ │ └── sample.php
│ │ │ │ └── shells
│ │ │ │ ├── tasks
│ │ │ │ │ └── empty
│ │ │ │ └── templates
│ │ │ │ └── empty
│ │ │ └── views
│ │ │ ├── elements
│ │ │ │ └── empty
│ │ │ ├── errors
│ │ │ │ └── empty
│ │ │ ├── helpers
│ │ │ │ └── empty
│ │ │ ├── layouts
│ │ │ │ ├── ajax.ctp
│ │ │ │ ├── default.ctp
│ │ │ │ ├── flash.ctp
│ │ │ │ ├── js
│ │ │ │ │ └── default.ctp
│ │ │ │ ├── rss
│ │ │ │ │ └── default.ctp
│ │ │ │ └── xml
│ │ │ │ └── default.ctp
│ │ │ ├── pages
│ │ │ │ ├── empty
│ │ │ │ └── home.ctp
│ │ │ ├── posts
│ │ │ │ ├── index.ctp
│ │ │ │ └── test_nocache_tags.ctp
│ │ │ ├── scaffolds
│ │ │ │ └── empty
│ │ │ └── themed
│ │ │ └── test_theme
│ │ │ ├── layouts
│ │ │ │ └── default.ctp
│ │ │ └── posts
│ │ │ └── index.ctp
│ │ ├── index.php
│ │ ├── install.php
│ │ └── vendors
│ │ ├── css
│ │ ├── images
│ │ ├── js
│ │ │ └── empty
│ │ └── shells
│ │ ├── tasks
│ │ │ └── empty
│ │ └── templates
│ │ └── empty
│ ├── 安装.txt
│ └── 中国建站说明.txt
└── 用cakephp实现的商城系统_cakephp(favshop).rar
345 directories, 1113 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论