本文整理匯總了PHP中thesaurus::is_thesaurus方法的典型用法代碼示例。如果您正苦於以下問題:PHP thesaurus::is_thesaurus方法的具體用法?PHP thesaurus::is_thesaurus怎麽用?PHP thesaurus::is_thesaurus使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類thesaurus
的用法示例。
在下文中一共展示了thesaurus::is_thesaurus方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: header
function header()
{
echo "<b class='big'>";
if (!thesaurus::is_thesaurus(session::get("link"))) {
echo form::link("", "Hierarchie", "index.php?action=show&id=0&linkaction=linkdo");
} else {
echo "Hierarchie";
}
// title line
echo "</b>";
// insert thesaurus
if (right::link()) {
// new only if write permission
echo form::link("add", "add", "index.php?action=add&parent=0", "add-thesaurus");
}
// close complete tree
action::closeall();
// Show Link activity
if ($linkID = session::get("link")) {
echo "<br><i><span class='red'>";
$linktype = thesaurus::get_type_short(session::get("linktype"));
if (session::get('linkaction') == "change") {
$linkArray = thesaurus::get_descriptor($linkID);
$parentArray = thesaurus::get_descriptor(session::get("linkparent"));
echo "<b>" . $linktype . " '" . $linkArray[name] . "'</b> von <b>'" . $parentArray[name] . "'</b> ändern";
} else {
$linkArray = thesaurus::get_descriptor($linkID);
echo "Neuen <b>" . $linktype . "</b> für <b>'{$linkArray['name']}'</b> verlinken";
}
echo "</span><span class='normal'><br>Aktion beenden ";
echo form::link("delete", "end", "index.php?linkaction=linkend", "end-linking");
echo "</i>";
}
echo "<hr align='left' width='400px'>";
}