本文整理汇总了PHP中OOArticle::hasValue方法的典型用法代码示例。如果您正苦于以下问题:PHP OOArticle::hasValue方法的具体用法?PHP OOArticle::hasValue怎么用?PHP OOArticle::hasValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OOArticle
的用法示例。
在下文中一共展示了OOArticle::hasValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: matchArticle
function matchArticle($content, $replaceInTemplate = false)
{
global $REX;
$var = 'REX_ARTICLE';
$matches = $this->getVarParams($content, $var);
foreach ($matches as $match) {
list($param_str, $args) = $match;
list($article_id, $args) = $this->extractArg('id', $args, 0);
list($clang, $args) = $this->extractArg('clang', $args, '$REX[\'CUR_CLANG\']');
list($ctype, $args) = $this->extractArg('ctype', $args, -1);
list($field, $args) = $this->extractArg('field', $args, '');
$tpl = '';
if ($article_id == 0) {
// REX_ARTICLE[field=name] keine id -> feld von aktuellem artikel verwenden
if ($field) {
if (OOArticle::hasValue($field)) {
$tpl = '<?php echo htmlspecialchars(' . $this->handleGlobalVarParamsSerialized($var, $args, '$this->getValue(\'' . addslashes($field) . '\')') . '); ?>';
}
} else {
if ($replaceInTemplate) {
// aktueller Artikel darf nur in Templates, nicht in Modulen eingebunden werden
// => endlossschleife
$tpl = '<?php echo ' . $this->handleGlobalVarParamsSerialized($var, $args, '$this->getArticle(' . $ctype . ')') . '; ?>';
}
}
} else {
if ($article_id > 0) {
// REX_ARTICLE[field=name id=5] feld von gegebene artikel id verwenden
if ($field) {
if (OOArticle::hasValue($field)) {
// bezeichner wählen, der keine variablen
// aus modulen/templates überschreibt
$varname = '$__rex_art';
$tpl = '<?php
' . $varname . ' = OOArticle::getArticleById(' . $article_id . ', ' . $clang . ');
if(' . $varname . ') echo htmlspecialchars(' . $this->handleGlobalVarParamsSerialized($var, $args, $varname . '->getValue(\'' . addslashes($field) . '\')') . ');
?>';
}
} else {
// bezeichner wählen, der keine variablen
// aus modulen/templates überschreibt
$varname = '$__rex_art';
$tpl = '<?php
' . $varname . ' = new rex_article();
' . $varname . '->setArticleId(' . $article_id . ');
' . $varname . '->setClang(' . $clang . ');
echo ' . $this->handleGlobalVarParamsSerialized($var, $args, $varname . '->getArticle(' . $ctype . ')') . ';
?>';
}
}
}
if ($tpl != '') {
$content = str_replace($var . '[' . $param_str . ']', $tpl, $content);
}
}
return $content;
}