Home  >  Article  >  CMS Tutorial  >  How does DreamWeaver CMS realize judgment output?

How does DreamWeaver CMS realize judgment output?

藏色散人
藏色散人Original
2019-12-02 09:48:502017browse

How does DreamWeaver CMS realize judgment output?

How does DreamWeaver CMS achieve judgment output?

Detailed explanation of several commonly used field judgment output examples of Dreamweaver CMS

When we use Dreamweaver CMS to create a website, for a certain field, whether it is a default field or a custom field , and occasionally use some judgment statements to achieve our needs. Several common requirements are listed below. And the judgment output example of the field.

Recommended learning: DreamWeaver cms

The first type: DreamWeaver custom field, if there is no value, the specified default content should be displayed,

{dede:field name='ziduan' runphp='yes'}
 if(@me=='') { @me = '' ;}
 else { @me = ""; } 
{/dede:field}

Second type: DedeCMS will display the complete title when it determines that the abbreviated title is empty

Method 1, applicable to content pages

{dede:field name='array' runphp='yes'}
 if (@me['shorttitle']=='') 
@me=@me['title']; 
  
else
 @me=@me['shorttitle'];
 {/dede:field}

Method 2, applicable to list pages

[field:array runphp='yes']
 if (@me['shorttitle']=='') @me=@me['title']; 
else @me=@me['shorttitle']; 
[/field:array]

The third type: multiple judgments on a certain field

[field:array runphp='yes']
 if(@me['risklevel']=="HR")@me="HR.png"; 
else if(@me['risklevel']=="D")@me="D.png"; 
else if(@me['risklevel']=="AA")@me="AA.png";
 [/field:array]

The above means that if the value of the risk level field obtained by the query is HR, then HR.png will be output. If the value of the risk level field obtained by the query is The value of is D, then D.png will be output. If the value of the risk level field obtained by the query is AA, then AA.png will be output. HR.png here is just a string, representing the location of the image file. , you can set it to any image path. The above code is a branch conditional output statement. @me represents the output variable. When you first enter the label field:array, @me represents a record in the database, and its data type is an array. , we judge based on the value of risklevle, thereby setting @me to different values. When exiting the label field:array, the value of @me will be displayed in the original position.

The fourth type: other fields need to be called during the judgment process.

You need to make a small judgment in the template. If the price of the article is 0, the download address will be directly output. Otherwise, the purchase link will be output directly. Then you must run the runphp='yes' function at this time. Let's take a look at the code:

After searching, we found that two methods can basically be implemented

1. First, put the values ​​​​that need to call other fields in public variables, and then directly call the public For the value of the variable, see the code

{dede:php}$GLOBALS['title']=$arc->Fields['title']{/dede:php} 
{dede:php}$GLOBALS['baidupan']=$arc->Fields['baidupan']{/dede:php} 
{dede:field.price runphp="yes"}
if(@me="0")
@me = "下载地址:".$GLOBALS['baidupan'];
else
@me = "商品(".$GLOBALS['title'].")购买链接为:XXX";
{/dede:field.xxxx}

2. Directly use name='array' to assign the values ​​of other fields to the array, and then use it. See the code

{dede:field name='array' runphp='yes'}
if(@me['price']=='0' )
@me = '
  • 下载:'.@me['baidupwd'].'
  • '; else @me = '
    '; {/dede:field}

    . Many of the above points require attention to symbols. , single quotes, double quotes.

    The above is the detailed content of How does DreamWeaver CMS realize judgment output?. 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