Home  >  Article  >  CMS Tutorial  >  How to package dedecms

How to package dedecms

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-07-18 17:01:223223browse

How to package dedecms

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=&#39;企业招聘信息&#39; c=&#39;6,&#39; display=&#39;block&#39; rank=&#39;&#39;>
  <m:item name=&#39;企业招聘列表&#39; link=&#39;job_index.php&#39; rank=&#39;&#39; target=&#39;main&#39; />
  <m:item name=&#39;添加职位&#39; link=&#39;job_add.php&#39; rank=&#39;&#39; target=&#39;main&#39; />
 </m:top>

Instruction file:

<div style=&#39;padding-left:20px;line-height:150%&#39;>
<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 &#39;企业介绍&#39;,
  `jjyq` int(11) NOT NULL COMMENT &#39;基本要求&#39;,
  `zprq` int(11) NOT NULL COMMENT &#39;招聘日期&#39;,
  `lxfs` int(11) NOT NULL COMMENT &#39;联系方式&#39;,
  `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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn