实例介绍
在使用phpcms二次开发做项目的时候我们经常需要在原来的基础上开发其他模块,在此框架的基础上自己开发模块比较麻烦,这里收集了几个模块供大家一起使用
【实例截图】
【核心代码】
.
├── PHPCMS插件
│ ├── chinaz.com.txt
│ ├── info_model_UTF8
│ │ ├── api
│ │ │ ├── map.php
│ │ │ └── top.php
│ │ ├── install_info
│ │ │ ├── config.php
│ │ │ ├── database
│ │ │ │ ├── phpcms_category_demo.sql
│ │ │ │ └── phpcms_model_field.sql
│ │ │ ├── ext
│ │ │ │ ├── menu.sql
│ │ │ │ └── upgrade.php
│ │ │ ├── index.php
│ │ │ └── template
│ │ │ └── index.php
│ │ ├── phpcms
│ │ │ ├── languages
│ │ │ │ └── zh-cn
│ │ │ │ ├── info.lang.php
│ │ │ │ └── map.lang.php
│ │ │ ├── libs
│ │ │ │ ├── data
│ │ │ │ │ └── font
│ │ │ │ │ └── georgia.ttf
│ │ │ │ └── functions
│ │ │ │ └── autoload
│ │ │ │ └── info.func.php
│ │ │ ├── modules
│ │ │ │ ├── admin
│ │ │ │ │ ├── info.php
│ │ │ │ │ └── templates
│ │ │ │ │ └── info_setting.tpl.php
│ │ │ │ └── content
│ │ │ │ └── fields
│ │ │ │ ├── box
│ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ └── field_edit_form.inc.php
│ │ │ │ ├── fields.inc.php
│ │ │ │ └── map
│ │ │ │ ├── config.inc.php
│ │ │ │ ├── field_add_form.inc.php
│ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ ├── form.inc.php
│ │ │ │ └── output.inc.php
│ │ │ └── templates
│ │ │ └── default
│ │ │ ├── content
│ │ │ │ ├── category_info.html
│ │ │ │ ├── city_info.html
│ │ │ │ ├── header_info.html
│ │ │ │ ├── list_house.html
│ │ │ │ └── show_house.html
│ │ │ └── member
│ │ │ ├── content_published.html
│ │ │ ├── info_content_publish.html
│ │ │ ├── info_content_publish_select.html
│ │ │ └── info_top.html
│ │ ├── readme.txt
│ │ ├── statics
│ │ │ ├── css
│ │ │ │ └── info.css
│ │ │ └── images
│ │ │ ├── icon
│ │ │ │ ├── mak.png
│ │ │ │ ├── map.png
│ │ │ │ └── map_mark.png
│ │ │ └── info
│ │ │ ├── Rounded.png
│ │ │ ├── add.png
│ │ │ ├── addbtn.png
│ │ │ ├── body-top.png
│ │ │ ├── btn.png
│ │ │ ├── hot.png
│ │ │ ├── ignore.png
│ │ │ ├── input-bg.png
│ │ │ ├── logo.png
│ │ │ ├── nav_bg.png
│ │ │ ├── nav_btn.png
│ │ │ ├── ok.gif
│ │ │ ├── rank_1.gif
│ │ │ ├── rank_2.gif
│ │ │ ├── rank_3.gif
│ │ │ ├── rl-sprites.png
│ │ │ ├── search.png
│ │ │ ├── share
│ │ │ │ ├── baidu.gif
│ │ │ │ ├── baisohu.png
│ │ │ │ ├── douban.png
│ │ │ │ ├── kaixin.png
│ │ │ │ ├── qqadd.gif
│ │ │ │ ├── qqwb.png
│ │ │ │ ├── renren.png
│ │ │ │ ├── sina.png
│ │ │ │ └── wblog.gif
│ │ │ ├── tabitem.png
│ │ │ ├── x_line.png
│ │ │ └── xbg.png
│ │ └── uploadfile
│ │ └── poster
│ │ ├── rad.gif
│ │ └── rad2.gif
│ ├── phpcms v9 房产.zip
│ ├── phpcms v9 商品模块 订单 购物车.zip
│ ├── phpcms v9 企业黄页.zip
│ ├── phpcms 企业招聘模块.zip
│ ├── upload
│ │ ├── phpcms
│ │ │ ├── model
│ │ │ │ ├── job_model.class.php
│ │ │ │ └── job_yingpin_model.class.php
│ │ │ └── modules
│ │ │ └── job
│ │ │ ├── classes
│ │ │ │ └── job_tag.class.php
│ │ │ ├── functions
│ │ │ │ └── global.func.php
│ │ │ ├── index.php
│ │ │ ├── install
│ │ │ │ ├── config.inc.php
│ │ │ │ ├── extention.inc.php
│ │ │ │ ├── job.sql
│ │ │ │ ├── languages
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── zh-cn
│ │ │ │ │ └── job.lang.php
│ │ │ │ ├── model.php
│ │ │ │ ├── module.sql
│ │ │ │ └── templates
│ │ │ │ ├── index.html
│ │ │ │ ├── job_list.html
│ │ │ │ ├── job_more.html
│ │ │ │ └── job_yingpin.html
│ │ │ ├── job.php
│ │ │ ├── templates
│ │ │ │ ├── job_add.tpl.php
│ │ │ │ ├── job_edit.tpl.php
│ │ │ │ ├── job_list.tpl.php
│ │ │ │ ├── job_yingpin.tpl.php
│ │ │ │ ├── job_yingpin_more.tpl.php
│ │ │ │ └── setting.tpl.php
│ │ │ └── uninstall
│ │ │ ├── extention.inc.php
│ │ │ ├── job.sql
│ │ │ └── model.php
│ │ └── statics
│ │ └── css
│ │ └── aaext_job.css
│ ├── yp_UTF8
│ │ ├── api
│ │ │ └── get_menu.php
│ │ ├── caches
│ │ │ └── caches_yp
│ │ │ └── caches_data
│ │ │ └── yp_setting.cache.php
│ │ ├── phpcms
│ │ │ ├── libs
│ │ │ │ └── classes
│ │ │ │ └── template_cache.class.php
│ │ │ ├── model
│ │ │ │ ├── buycar_model.class.php
│ │ │ │ ├── comment_relation_model.class.php
│ │ │ │ ├── dianping_data_model.class.php
│ │ │ │ ├── dianping_model.class.php
│ │ │ │ ├── dianping_type_model.class.php
│ │ │ │ ├── member_address_model.class.php
│ │ │ │ ├── order_model.class.php
│ │ │ │ ├── yp_certificate_model.class.php
│ │ │ │ ├── yp_collect_model.class.php
│ │ │ │ ├── yp_company_model.class.php
│ │ │ │ ├── yp_content_model.class.php
│ │ │ │ ├── yp_guestbook_model.class.php
│ │ │ │ └── yp_relation_model.class.php
│ │ │ ├── modules
│ │ │ │ ├── dianping
│ │ │ │ │ ├── classes
│ │ │ │ │ │ └── dianping_tag.class.php
│ │ │ │ │ ├── dianping.php
│ │ │ │ │ ├── functions
│ │ │ │ │ │ └── global.func.php
│ │ │ │ │ ├── index.php
│ │ │ │ │ ├── install
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── dianping.sql
│ │ │ │ │ │ ├── dianping_data.sql
│ │ │ │ │ │ ├── dianping_type.sql
│ │ │ │ │ │ ├── extention.inc.php
│ │ │ │ │ │ ├── languages
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ └── zh-cn
│ │ │ │ │ │ │ └── dianping.lang.php
│ │ │ │ │ │ ├── model.php
│ │ │ │ │ │ ├── module.sql
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ └── show_list.html
│ │ │ │ │ ├── templates
│ │ │ │ │ │ ├── dianping_add_type.tpl.php
│ │ │ │ │ │ ├── dianping_call.tpl.php
│ │ │ │ │ │ ├── dianping_data_list.tpl.php
│ │ │ │ │ │ ├── dianping_type_edit.tpl.php
│ │ │ │ │ │ └── dianping_type_list.tpl.php
│ │ │ │ │ ├── uninstall
│ │ │ │ │ │ ├── dianping.sql
│ │ │ │ │ │ ├── dianping_data.sql
│ │ │ │ │ │ ├── dianping_type.sql
│ │ │ │ │ │ ├── extention.inc.php
│ │ │ │ │ │ └── model.php
│ │ │ │ │ └── 点评说明.txt
│ │ │ │ └── yp
│ │ │ │ ├── additional.php
│ │ │ │ ├── business.php
│ │ │ │ ├── category.php
│ │ │ │ ├── certificate.php
│ │ │ │ ├── certificate_ht.php
│ │ │ │ ├── classes
│ │ │ │ │ ├── common.class.php
│ │ │ │ │ ├── order.class.php
│ │ │ │ │ ├── pclzip.class.php
│ │ │ │ │ ├── search_api.class.php
│ │ │ │ │ └── yp_tag.class.php
│ │ │ │ ├── com_index.php
│ │ │ │ ├── company.php
│ │ │ │ ├── content.php
│ │ │ │ ├── fields
│ │ │ │ │ ├── add.sql.php
│ │ │ │ │ ├── author
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── box
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── catids
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ └── input.inc.php
│ │ │ │ │ ├── copyfrom
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── datetime
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── delete.sql.php
│ │ │ │ │ ├── downfile
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── downfiles
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── edit.sql.php
│ │ │ │ │ ├── editor
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ ├── output.inc.php
│ │ │ │ │ │ └── update.inc.php
│ │ │ │ │ ├── fields.inc.php
│ │ │ │ │ ├── groupid
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ └── input.inc.php
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── islink
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── keyword
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── linkage
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── model.sql
│ │ │ │ │ ├── number
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── omnipotent
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_delete.inc.php
│ │ │ │ │ │ ├── field_edit.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── pages
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── posid
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ └── update.inc.php
│ │ │ │ │ ├── readpoint
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── template
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── text
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_delete.inc.php
│ │ │ │ │ │ ├── field_edit.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── textarea
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_delete.inc.php
│ │ │ │ │ │ ├── field_edit.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ ├── input.inc.php
│ │ │ │ │ │ ├── output.inc.php
│ │ │ │ │ │ ├── search.inc.php
│ │ │ │ │ │ ├── search_form.inc.php
│ │ │ │ │ │ └── update.inc.php
│ │ │ │ │ ├── title
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ ├── form.inc.php
│ │ │ │ │ │ └── output.inc.php
│ │ │ │ │ ├── typeid
│ │ │ │ │ │ ├── config.inc.php
│ │ │ │ │ │ ├── field_add_form.inc.php
│ │ │ │ │ │ ├── field_edit_form.inc.php
│ │ │ │ │ │ └── form.inc.php
│ │ │ │ │ ├── yp_form.class.php
│ │ │ │ │ ├── yp_input.class.php
│ │ │ │ │ ├── yp_output.class.php
│ │ │ │ │ └── yp_update.class.php
│ │ │ │ ├── functions
│ │ │ │ │ └── global.func.php
│ │ │ │ ├── index.php
│ │ │ │ ├── install
│ │ │ │ │ ├── 72.sql
│ │ │ │ │ ├── 73.sql
│ │ │ │ │ ├── 76.sql
│ │ │ │ │ ├── buycar.sql
│ │ │ │ │ ├── comment_relation.sql
│ │ │ │ │ ├── company.sql
│ │ │ │ │ ├── config.inc.php
│ │ │ │ │ ├── extention.inc.php
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── languages
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ │ └── yp.lang.php
│ │ │ │ │ ├── member_address.sql
│ │ │ │ │ ├── model.php
│ │ │ │ │ ├── module.sql
│ │ │ │ │ ├── order.sql
│ │ │ │ │ ├── table.sql
│ │ │ │ │ ├── templates
│ │ │ │ │ │ ├── business.html
│ │ │ │ │ │ ├── buycar_list.html
│ │ │ │ │ │ ├── com_default
│ │ │ │ │ │ │ ├── about.html
│ │ │ │ │ │ │ ├── block_contact.html
│ │ │ │ │ │ │ ├── buy.html
│ │ │ │ │ │ │ ├── buy_show.html
│ │ │ │ │ │ │ ├── certificate.html
│ │ │ │ │ │ │ ├── contact.html
│ │ │ │ │ │ │ ├── footer.html
│ │ │ │ │ │ │ ├── guestbook.html
│ │ │ │ │ │ │ ├── header.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── news.html
│ │ │ │ │ │ │ ├── news_show.html
│ │ │ │ │ │ │ ├── product.html
│ │ │ │ │ │ │ └── product_show.html
│ │ │ │ │ │ ├── company_certificate_add.html
│ │ │ │ │ │ ├── company_certificate_edit.html
│ │ │ │ │ │ ├── company_certificate_list.html
│ │ │ │ │ │ ├── company_check_order.html
│ │ │ │ │ │ ├── company_guestbook_edit.html
│ │ │ │ │ │ ├── company_guestbook_list.html
│ │ │ │ │ │ ├── company_info.html
│ │ │ │ │ │ ├── company_info_edit.html
│ │ │ │ │ │ ├── company_info_logo.html
│ │ │ │ │ │ ├── company_init.html
│ │ │ │ │ │ ├── company_map.html
│ │ │ │ │ │ ├── company_order.html
│ │ │ │ │ │ ├── company_template.html
│ │ │ │ │ │ ├── companytplnames.php
│ │ │ │ │ │ ├── content_add.html
│ │ │ │ │ │ ├── content_edit.html
│ │ │ │ │ │ ├── content_list.html
│ │ │ │ │ │ ├── content_pk.html
│ │ │ │ │ │ ├── footer.html
│ │ │ │ │ │ ├── header.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── list_buy.html
│ │ │ │ │ │ ├── list_company.html
│ │ │ │ │ │ ├── list_product.html
│ │ │ │ │ │ ├── member_header.html
│ │ │ │ │ │ ├── member_left.html
│ │ │ │ │ │ ├── menu_manage.html
│ │ │ │ │ │ ├── model_buy.html
│ │ │ │ │ │ ├── model_company.html
│ │ │ │ │ │ ├── model_product.html
│ │ │ │ │ │ ├── orderinfo.html
│ │ │ │ │ │ ├── register.html
│ │ │ │ │ │ ├── show_buy.html
│ │ │ │ │ │ ├── show_product.html
│ │ │ │ │ │ └── top_info.html
│ │ │ │ │ ├── yp_certificate.sql
│ │ │ │ │ ├── yp_company.sql
│ │ │ │ │ ├── yp_guestbook.sql
│ │ │ │ │ └── yp_relation.sql
│ │ │ │ ├── push.php
│ │ │ │ ├── template.php
│ │ │ │ ├── templates
│ │ │ │ │ ├── additional_field_add.tpl.php
│ │ │ │ │ ├── additional_field_edit.tpl.php
│ │ │ │ │ ├── additional_field_manage.tpl.php
│ │ │ │ │ ├── category_add.tpl.php
│ │ │ │ │ ├── category_edit.tpl.php
│ │ │ │ │ ├── category_manage.tpl.php
│ │ │ │ │ ├── category_tree.tpl.php
│ │ │ │ │ ├── catgory_export.tpl.php
│ │ │ │ │ ├── certificate_edit.tpl.php
│ │ │ │ │ ├── certificate_list.tpl.php
│ │ │ │ │ ├── company_edit.tpl.php
│ │ │ │ │ ├── company_list.tpl.php
│ │ │ │ │ ├── content_edit.tpl.php
│ │ │ │ │ ├── content_list.tpl.php
│ │ │ │ │ ├── push_list.tpl.php
│ │ │ │ │ ├── push_to_category.tpl.php
│ │ │ │ │ ├── rewriteurl.tpl.php
│ │ │ │ │ ├── sitemodel_add.tpl.php
│ │ │ │ │ ├── sitemodel_edit.tpl.php
│ │ │ │ │ ├── sitemodel_field_add.tpl.php
│ │ │ │ │ ├── sitemodel_field_edit.tpl.php
│ │ │ │ │ ├── sitemodel_field_manage.tpl.php
│ │ │ │ │ ├── sitemodel_import.tpl.php
│ │ │ │ │ ├── sitemodel_manage.tpl.php
│ │ │ │ │ ├── sitemodel_priview.tpl.php
│ │ │ │ │ ├── template_add.tpl.php
│ │ │ │ │ ├── template_list.tpl.php
│ │ │ │ │ ├── template_priv.tpl.php
│ │ │ │ │ ├── update_urls.tpl.php
│ │ │ │ │ └── yp_setting.tpl.php
│ │ │ │ ├── uninstall
│ │ │ │ │ ├── buycar.sql
│ │ │ │ │ ├── comment_relation.sql
│ │ │ │ │ ├── extention.inc.php
│ │ │ │ │ ├── member_address.sql
│ │ │ │ │ ├── model.php
│ │ │ │ │ ├── order.sql
│ │ │ │ │ ├── yp_certificate.sql
│ │ │ │ │ ├── yp_company.sql
│ │ │ │ │ ├── yp_guestbook.sql
│ │ │ │ │ └── yp_relation.sql
│ │ │ │ ├── update_urls.php
│ │ │ │ ├── yp.php
│ │ │ │ ├── ypmodel.php
│ │ │ │ └── ypmodel_field.php
│ │ │ └── templates
│ │ │ └── default
│ │ │ └── config.php
│ │ └── statics
│ │ ├── css
│ │ │ ├── default_yp_blue.css
│ │ │ ├── dianping.css
│ │ │ ├── member.css
│ │ │ └── table_form.css
│ │ ├── images
│ │ │ ├── dianping
│ │ │ │ └── web_widget_star.gif
│ │ │ └── yp
│ │ │ ├── ad.png
│ │ │ ├── ad_next.png
│ │ │ ├── ad_prev.png
│ │ │ ├── ad_scroll_back.png
│ │ │ ├── ad_scroll_forward.png
│ │ │ ├── arrow_add.png
│ │ │ ├── b_4_1.gif
│ │ │ ├── b_4_2.gif
│ │ │ ├── b_4_3.gif
│ │ │ ├── b_4_4.gif
│ │ │ ├── b_4_5.gif
│ │ │ ├── b_red.gif
│ │ │ ├── b_red_1.gif
│ │ │ ├── b_red_2.gif
│ │ │ ├── b_red_3.gif
│ │ │ ├── b_red_4.gif
│ │ │ ├── b_red_5.gif
│ │ │ ├── bag_close.gif
│ │ │ ├── bag_open.gif
│ │ │ ├── btn.png
│ │ │ ├── cat_name.png
│ │ │ ├── demo_default.jpg
│ │ │ ├── fillet.png
│ │ │ ├── func_btn.png
│ │ │ ├── func_icon.png
│ │ │ ├── i.png
│ │ │ ├── loader.gif
│ │ │ ├── login_bg.png
│ │ │ ├── logobg.png
│ │ │ ├── nav_car.png
│ │ │ ├── opa75.png
│ │ │ ├── order.png
│ │ │ ├── order_off.gif
│ │ │ ├── s_blue.gif
│ │ │ ├── s_blue_1.gif
│ │ │ ├── s_blue_2.gif
│ │ │ ├── s_blue_3.gif
│ │ │ ├── s_blue_4.gif
│ │ │ ├── s_blue_5.gif
│ │ │ ├── s_cap_.gif
│ │ │ ├── s_cap_1.gif
│ │ │ ├── s_cap_2.gif
│ │ │ ├── s_cap_3.gif
│ │ │ ├── s_cap_4.gif
│ │ │ ├── s_cap_5.gif
│ │ │ ├── shop_tip.png
│ │ │ ├── shopbg.png
│ │ │ ├── shopcart.png
│ │ │ ├── title_bg.png
│ │ │ ├── v.png
│ │ │ ├── xbg.png
│ │ │ ├── yp_info_bg.png
│ │ │ └── zxzz.png
│ │ ├── js
│ │ │ ├── comparison.js
│ │ │ ├── form_ajax.js
│ │ │ ├── linkage
│ │ │ │ └── js
│ │ │ │ └── menu.js
│ │ │ ├── star_bak.js
│ │ │ └── yp_common.js
│ │ └── yp
│ │ └── com_default
│ │ ├── images
│ │ │ ├── ad.jpg
│ │ │ ├── ads.png
│ │ │ ├── baner_bg.png
│ │ │ ├── baner_xbg.png
│ │ │ ├── body-top.png
│ │ │ ├── btn.png
│ │ │ ├── cross.png
│ │ │ ├── icon.png
│ │ │ ├── logo_bg.png
│ │ │ ├── nav_bg.png
│ │ │ ├── nav_line.png
│ │ │ ├── pages.png
│ │ │ ├── qq.png
│ │ │ ├── rsso.gif
│ │ │ ├── shop_tip.png
│ │ │ ├── title_bg.png
│ │ │ ├── xbg.png
│ │ │ └── yp_info_bg.png
│ │ └── style.css
│ ├── 截图
│ │ ├── 应聘表单.jpg
│ │ ├── 模块配置.jpg
│ │ ├── 添加职位.jpg
│ │ ├── 职位列表.jpg
│ │ ├── 应聘者管理.jpg
│ │ ├── 前台职位列表.jpg
│ │ └── 前台职位说明.jpg
│ ├── 说明.htm
│ ├── 商品模块 订单 购物车
│ │ ├── phpcms
│ │ │ ├── model
│ │ │ │ ├── order_cart_model.class.php
│ │ │ │ ├── order_content_model.class.php
│ │ │ │ └── order_logistics_model.class.php
│ │ │ └── modules
│ │ │ ├── order
│ │ │ │ ├── cart.php
│ │ │ │ ├── classes
│ │ │ │ ├── functions
│ │ │ │ │ └── global.func.php
│ │ │ │ ├── install
│ │ │ │ │ ├── config.inc.php
│ │ │ │ │ ├── extention.inc.php
│ │ │ │ │ ├── languages
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ │ └── order.lang.php
│ │ │ │ │ ├── model.php
│ │ │ │ │ ├── module.sql
│ │ │ │ │ ├── order_cart.sql
│ │ │ │ │ ├── order_content.sql
│ │ │ │ │ ├── order_logistics.sql
│ │ │ │ │ └── templates
│ │ │ │ │ ├── cart.html
│ │ │ │ │ ├── order_list.html
│ │ │ │ │ ├── pay.html
│ │ │ │ │ ├── payment_cofirm.html
│ │ │ │ │ └── view.html
│ │ │ │ ├── logistics.php
│ │ │ │ ├── templates
│ │ │ │ │ └── logistics.tpl.php
│ │ │ │ └── uninstall
│ │ │ │ ├── extention.inc.php
│ │ │ │ ├── model.php
│ │ │ │ ├── order_cart.sql
│ │ │ │ ├── order_content.sql
│ │ │ │ └── order_logistics.sql
│ │ │ └── pay
│ │ │ ├── order.php
│ │ │ ├── order_admin.php
│ │ │ └── templates
│ │ │ ├── order_list.tpl.php
│ │ │ └── order_view.tpl.php
│ │ ├── statics
│ │ │ └── images
│ │ │ └── icon
│ │ │ └── shoppingcart.gif
│ │ └── 说明.txt
│ └── 使用说明.txt
└── phpcms招聘、企业黄页、订单购物车模块_PHPCMS插件.zip
135 directories, 538 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论