Table of Contents
dedecms plug-in development tutorial, dedecms plug-in tutorial
DreamWeaver has a lightweight forum plug-in? I've been searching online for a long time but haven't found one. I don't have the ability to develop one now. Thanks
How to develop the dedecms plug-in? What is the development process?
Home Backend Development PHP Tutorial dedecms plug-in development tutorial, dedecms plug-in tutorial_PHP tutorial

dedecms plug-in development tutorial, dedecms plug-in tutorial_PHP tutorial

Jul 13, 2016 am 10:17 AM
lightweight

dedecms plug-in development tutorial, dedecms plug-in tutorial

This is a very simple plug-in example. Through this plug-in, you can know how to develop a plug-in and how its structure is set up. , database, backend, etc.
File structure:
enroll.php file is under the plus file
enroll.htm file is under the templates/plus folder
adenroll.php file is under the dede folder
adenroll.html file
sql file in dede/templet folder:

CREATE TABLE IF NOT EXISTS `dede_enroll` (
`id` int(4) NOT NULL auto_increment,
`name` varchar(20) NOT NULL,
`mail` varchar(30) NOT NULL,
`tag` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

INSERT INTO `dede_plus` (`aid`, `plusname`, `menustring`, `mainurl`, `writer`, `isshow`, `filelist`) VALUES
(30, '网上报名', '<m:item name=''网上报名'' link=''adenroll.php'' rank=''plus_网上报名'' target=''main'' />', '', 'g1000', 1, '');

Copy after login

For convenience, I have simply set up two fields: name and email tag. The fields indicate whether to admit or not. 1 is admission.
The first insert statement is added to the background management.
The second insert statement is Add to front navigation bar

enroll.php

<?php 
//*******要先包含common.inc.php 然后 session_start(); 否则取不到session的值 
//*******因为common.inc.php 有关于session路径的配置 
include_once dirname(__FILE__).'./../include/common.inc.php';//包含配置文件 
session_start(); 
require_once DEDEINC."/arc.partview.class.php";//包含partiew类 
//*****实例化 这个类的作用是得到头部导航栏和尾部信息 若不需要可以使用dedetemplate.class.php 这个类 
$pv = new PartView(); 
if($_POST){ 
if( CheckEmail($_POST['mail'])==false){//验证邮箱 方法在common.func.php 公用函数 
ShowMsg('邮箱格式错误','-1'); 
exit(); 
} 
if($_POST['name']==""){ 
ShowMsg('用户名不能为空','-1'); 
exit(); 
}else{ 
$name=htmlspecialchars($_POST['name']); 
} 
if($_SESSION['dd_ckstr']!=strtolower($_POST['validation'])){//验证 验证码 必须转换成小写 
ShowMsg('验证码错误',-1); 
exit(); 
} 
$sql="insert into `cms_enroll`(name,mail) values('$name','$_POST[mail]')"; 
//********$db可直接使用 系统自动实例化了dedesql.class.php 
$affected = $db->ExecuteNoneQuery2($sql);//执行一条语句 返回影响值 
if($affected){ 
ShowMsg('报名成功',-1); 
} 
}else{ 
$pv->SetTemplet(DEDETEMPLATE.'/plus/enroll.htm');//设置模板 
$pv->Display();//显示页面 
}

?>

Copy after login

enroll.htm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<head> 
<title>{dede:global.cfg_webname/}-在线报名</title> 
<link href="{dede:global.cfg_templeturl/}/style/dedecms.css" rel="stylesheet" media="screen" type="text/css" /> 
</script> 
</head> 
<body> 
{dede:include filename="../default/head.htm"/}<!-- 包含头部 --> 
<blockquote><?php 
require_once(dirname(__FILE__).'/config.php');//后台配置文件 检查登陆 配置信息 
require_once(DEDEINC."/datalistcp.class.php");//包含分页类 
if($_GET['action']&&$_GET['id']){ 
if($_GET['action']=='pass'){//各种操作 
$db->ExecuteNoneQuery("update cms_enroll set `tag`=1 where id='$_GET[id]'"); 
ShowMsg('录取成功','adenroll.php'); 
} 
if($_GET['action']=='nopass'){ 
$db->ExecuteNoneQuery("update cms_enroll set `tag`=0 where id='$_GET[id]'"); 
ShowMsg('取消录取','adenroll.php'); 
} 
if($_GET['action']=='delete'){ 
$db->ExecuteNoneQuery("delete from cms_enroll where id='$_GET[id]'"); 
ShowMsg('删除成功','adenroll.php'); 
} 
}else{ 
$dl = new DataListCP(); 
$dl->pageSize = 10;//每页显示10条 
$dl->SetTemplate('./templets/adenroll.htm');//载入模板 
$sql="select * from cms_enroll"; 
$dl->SetSource($sql);//执行sql 不能与$dl->SetTemplate 颠倒 
$dl->Display();//显示页面 
}

?>

Copy after login

adenroll.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<head> 
<title>在线报名管理</title> 
<link href='img/base.css' rel='stylesheet' type='text/css' /> 
<style type="text/css"> 
th,td{ 
text-align:center; 
border:1px #D1DDAA solid; 
font-size:15px; 
} 
th{ 
background:#E6F8B7; 
} 
table{ 
margin-top:20px; 
} 
</style> 
</head> 
<body> 
<table width="90%" border="0" cellpadding="0" cellspacing="0" align="center"> 
<tr> 
<th>姓名</th> 
<th>E-mail</th> 
<th>状态</th> 
<th>操作</th> 
</tr> 
<!-- 循环得到结果 --> 
{dede:datalist} 
<tr> 
<td>{dede:field.name /}</td> 
<td>{dede:field.mail /}</td> 
<td> 
{dede:if field.tag==0} 
未录取 
{else} 
<font color="red">已录取</font> 
{/dede:if} 
</td> 
<td> <a href="adenroll.php?action=pass&id={dede:field.id /}">[录取]</a> 
| 
<a href="adenroll.php?action=nopass&id={dede:field.id /}">[不通过]</a> 
| 
<a href="adenroll.php?action=delete&id={dede:field.id /}">[删除]</a> 
</td> 
</tr> 
{/dede:datalist} 
</table> 
<!-- 分页标签 --> 
<p style="text-align:center;font-size:15px;">{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}</p> 
</body> 
</html>
Copy after login

DreamWeaver has a lightweight forum plug-in? I've been searching online for a long time but haven't found one. I don't have the ability to develop one now. Thanks

No, you can use dz for the forum and integrate it together. For questions about dream weaving, you can search for the dream weaver administrator’s home on Baidu. There are many tutorials on dream weaving.

How to develop the dedecms plug-in? What is the development process?

It’s available in dede’s help page. bbs.dedecms.com/136294.html This page has detailed instructions. You can download a product manual and take a look. The bottom part of the manual is secondary development. But this still depends on how you want to develop it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/893874.htmlTechArticlededecms plug-in development tutorial, dedecms plug-in tutorial This is a very simple plug-in example. Through this plug-in, you can know how to How to develop a plug-in, how to set up its structure, data...
Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

See all articles