Home CMS Tutorial DEDECMS Related introduction to dedecms template engine

Related introduction to dedecms template engine

Jan 11, 2021 am 10:16 AM
dedecms template engine

Related introduction to dedecms template engine

First of all, let’s introduce the DreamWeaver template engine.

(Learning video sharing: Programming video)

The Dreamweaver template engine is a template parser that uses XML namespace form. Use the Dreamweaver parser to parse templates. The biggest advantage is that you can easily specify the attributes of the tags, which feels like using HTML, making the template code very intuitive and flexible. The new version of the Dreamweaver template engine can not only parse the template but also analyze the wrong tags in the template.

1. The code styles of the Dreamweaver template engine have the following forms:

{dede:标记名称 属性='值'/}
{dede:标记名称 属性='值'}{/dede:标记名称}
{dede:标记名称 属性='值'}自定义样式模板(InnerText){/dede:标记名称}
Copy after login

Tips:
If you use a tag with an underlying template, you must strictly use {dede: tag name attribute ='value'}{/dede:mark name} This format, otherwise an error will be reported.

2. The Dreamweaver template engine has multiple built-in system tags, and these system tags can be used directly in any situation.

(1) global tag, indicating to obtain an external variable, in addition to the database password, can call any configuration parameters of the system, in the form:

{dede:global name='变量名称'}{/dede:global}
Copy after login

or

{dede:global name='变量名称'/}
Copy after login

The $ symbol cannot be added to the variable name. For example, the variable $cfg_cmspath should be written as {dede:global name='cfg_cmspath'/}.

(2) foreach is used to output an array, in the form:

{dede:foreach array='数组名称'}[field:key/] [field:value/]{/dede:foreach}
Copy after login

(3) include introduces a file, in the form:

{dede:include file='File name' ismake='Is it a dede plate template (yes/no)'/}
The search path for files is in order: absolute path, include folder, CMS installation directory, CMS main template directory

3. The Dreamweaver tag allows the use of functions in any tag to process the obtained value, in the form:

{dede: tag name attribute='value' function='youfunction ("Parameter 1", "Parameter 2", "@me")'/}
where @me is used to represent the value of the current tag, other parameters are determined by your function whether they exist, for example:

{dede:field name='pubdate' function='strftime("%Y-%m-%d %H:%M:%S","@me")'/}
Copy after login

4. The Dreamweaver mark allows limited programming expansion.

The format is:

{dede:tagname runphp='yes'}
$aaa = @me;
@me = "123456";
{/dede:tagname}
Copy after login

@me represents the value of the tag itself. Therefore, statements such as echo cannot be used in programming within the tag. All return values ​​can only be passed to @me.
In addition, since the program code occupies the content of the underlying template InnerText, the tags that require programming can only use the default InnerText.

Related recommendations: dedecms tutorial

The above is the detailed content of Related introduction to dedecms template engine. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

ThinkPHP6 template engine usage guide: Create an exquisite front-end interface ThinkPHP6 template engine usage guide: Create an exquisite front-end interface Aug 26, 2023 pm 11:09 PM

ThinkPHP6 template engine usage guide: Create an exquisite front-end interface Introduction: With the development of web applications, the design and development of front-end interfaces have become increasingly important. As a developer, we need to use a powerful template engine to help us create and manage front-end interfaces. ThinkPHP6's template engine is a powerful tool to meet this need. This article will introduce how to use the ThinkPHP6 template engine to create a beautiful front-end interface. Part 1: Install ThinkPHP6 template engine

Where is the imperial cms resource network template? Where is the imperial cms resource network template? Apr 17, 2024 am 10:00 AM

Empire CMS template download location: Official template download: https://www.phome.net/template/ Third-party template website: https://www.dedecms.com/diy/https://www.0978.com.cn /https://www.jiaocheng.com/Installation method: Download template Unzip template Upload template Select template

Learn to use the Golang template engine: A basic guide to using templates in Golang Learn to use the Golang template engine: A basic guide to using templates in Golang Jan 20, 2024 am 10:13 AM

Golang Template Engine Getting Started Guide: How to use templates in Golang, specific code examples are required Introduction: A template engine is a tool that can combine data and templates and generate documents in HTML, text or other formats. In Golang, we can use the built-in template package (html/template) to implement the functions of the template engine. This article will introduce in detail how to use the template engine in Golang and provide specific code examples. 1. The basic concept of template engine is to understand how to use it.

Template engine selection and usage experience sharing in JavaScript development Template engine selection and usage experience sharing in JavaScript development Nov 04, 2023 am 11:42 AM

Sharing experience on template engine selection and use in JavaScript development Introduction: In modern front-end development, the template engine (TemplateEngine) plays a crucial role. They enable developers to organize and manage large amounts of dynamic data more efficiently and effectively separate data from interface presentation. At the same time, choosing an appropriate template engine can also bring developers a better development experience and performance optimization. However, among the many JavaScript template engines, which one should you choose? catch

How dedecms implements template replacement How dedecms implements template replacement Apr 16, 2024 pm 12:12 PM

Template replacement can be implemented in Dedecms through the following steps: modify the global.cfg file and set the required language pack. Modify the taglib.inc.php hook file and add support for language suffix template files. Create a new template file with a language suffix and modify the required content. Clear Dedecms cache.

How to upload local videos to dedecms How to upload local videos to dedecms Apr 16, 2024 pm 12:39 PM

How to upload local videos using Dedecms? Prepare the video file in a format that is supported by Dedecms. Log in to the Dedecms management backend and create a new video category. Upload video files on the video management page, fill in the relevant information and select the video category. To embed a video while editing an article, enter the file name of the uploaded video and adjust its dimensions.

What website can dedecms do? What website can dedecms do? Apr 16, 2024 pm 12:24 PM

Dedecms is an open source CMS that can be used to create various types of websites, including: news websites, blogs, e-commerce websites, forums and community websites, educational websites, portals, other types of websites (such as corporate websites, personal websites, photo album websites, video sharing website)

What loopholes does dedecms have? What loopholes does dedecms have? Aug 03, 2023 pm 03:56 PM

DedeCMS is an open source content management system that has some potential vulnerabilities and security risks: 1. SQL injection vulnerability. Attackers can perform unauthorized operations or obtain sensitive data by constructing malicious SQL query statements; 2. File Upload vulnerability, attackers can upload files containing malicious code to the server to execute arbitrary code or obtain server permissions; 3. Sensitive information leakage; 4. Unauthenticated vulnerability exploitation.

See all articles