The following uses a corporate recruitment information as an example to familiarize everyone with the DEDECMS module plug-in production method.
Log in to the DEDECMS Dreamweaver backend and open the module management->Module generation wizard
Module name: Corporate recruitment information
Contact Email: 88888888@qq.com
Module xx name
Development team: Dreamweaver 58
Release time: 2017-5-02
Official website: http://www.dede58.com /
Related recommendations: "dedecms usage tutorial"
Backend management menu:
<m:top name='企业招聘信息' c='6,' display='block' rank=''> <m:item name='企业招聘列表' link='job_index.php' rank='' target='main' /> <m:item name='添加职位' link='job_add.php' rank='' target='main' /> </m:top>
Instruction file:
<div style='padding-left:20px;line-height:150%'> <p>版权所有:redaug</p> <p>联系XXXXX</p> <p>网址:<a href=http://www.dede58.com/>http://www.xxx.cn</a></p> <p><strong>安装方式:</strong></p> <p></p> <p><strong>卸载方式:</strong></p> <p></p> </div>
Installation Program:
DROP TABLE IF EXISTS `dede_job_company`; CREATE TABLE IF NOT EXISTS `dede_job_company` ( `id` int(11) NOT NULL AUTO_INCREMENT, `qyjs` text NOT NULL COMMENT '企业介绍', `jjyq` int(11) NOT NULL COMMENT '基本要求', `zprq` int(11) NOT NULL COMMENT '招聘日期', `lxfs` int(11) NOT NULL COMMENT '联系方式', `datetime` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=gb2312 AUTO_INCREMENT=1 ;
Remove program:
DROP TABLE IF EXISTS `dede_job_company`;
File list:
../job_search.php job_index.php job_add.php templets/job_index.htm templets/job_add.htm
The above is the detailed content of How to package dedecms. For more information, please follow other related articles on the PHP Chinese website!