Les articles publiés sur le site
-
{criteria IN value1, value2[, value3,..., valueN]}
17 août 2010, par Mark — Criteria... IN ... available from spip onwards, restricts the selection of results that have a criterion value equal to one of a finite collection of valid values. xxxx IN a,b,c,d available from spip onwards, restricts the display of results that have the xxxx criterai equal to a, b, c or d. The (...) -
{criteria LIKE value}
17 août 2010, par Mark — CriteriaThe ... LIKE ... criteria corresponds to the SQL comparison operator LIKE. For example, we can search for AUTEURS (authors) whose login name starts with paul: login LIKE paul% We can also use a SPIP tag within the criteria, but you will need to enclose it by parentheses to obtain the tag's (...) -
#SESSION_SET
17 août 2010, par Mark — TagsUsed to insert additional data into the #SESSION tag. #SESSION_SET is employed by writing #SESSION_SETvariable, value, inserting the value into the PHP array in the form of $GLOBALS['visiteur_session']['variable'] = 'value'; The inserted data can be retrieved at any time using #SESSIONvariable. (...) -
#LOGO_ARTICLE_RUBRIQUE
17 août 2010, par Mark — TagsThis tag displays the logo of the article, which may be replaced by the logo for the article's section if the article does not have its own specific one. Within a template file, this logo is used in the following manner: [(#LOGO_ARTICLE_RUBRIQUE|alignment|address)] The alignment can only be one (...) -
#INSERT_HEAD_CSS
17 août 2010, par Mark — Tags#INSERT_HEAD_CSSindicates where installed and activated plugins will insert their stylesheets into the generated HTML files. The template files can overload these stylesheets depending on the order that they are referenced in the template files. Remember that if two or more styling rules with (...)