本文整理汇总了PHP中action::edit方法的典型用法代码示例。如果您正苦于以下问题:PHP action::edit方法的具体用法?PHP action::edit怎么用?PHP action::edit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类action
的用法示例。
在下文中一共展示了action::edit方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: show
function show()
{
if (system::getval(debug)) {
echo "<div id='login_debug'>";
} else {
echo "<div id='login'>";
}
if ($userID = session::get("user")) {
// change password
if ($_GET[action] == "change") {
echo "<form method='get' action='index.php'>";
echo form::field("password", "password", "", "", "", "<i>Neues Passort</i>", "", "newpassword");
echo form::field("submit", "b1", "ändern");
echo form::field("hidden", "action", "changedo");
echo "</form>";
} else {
echo "<span class='normal'>Angemeldet: </span><span class='red'>" . user::name($userID) . " </span>";
echo form::link("", " - abmelden ", "index.php?action=logout", "logout");
echo form::link("", " - Passwort ändern ", "index.php?action=change", "change-password");
// if su display admin
echo form::link("", " - Administration", "admin.php", "admin");
if ($_SESSION['show']) {
echo form::link("", " - Import into <b>" . thesaurus::name($_SESSION['show']) . "</b>", "import.php?id=" . $_SESSION['show'], "import");
}
// menu switches
action::hyrarchy();
// toggle hyrarchy off / on
action::descriptor();
action::visible();
action::tooltips();
// toggle tooltips off / on
if (right::write()) {
action::edit();
}
// show edit function
action::listit();
action::debug();
}
} else {
echo "<span class='normal'>";
echo "<form method='get' action='index.php'>";
echo "<i>Benutzername </i><input type='text' name='user' value='{$user}'>";
echo " <i>Passwort </i><input type='password' name='password'>";
echo " <input type='submit' name='action' value='anmelden'>";
echo "<input type='hidden' name='action' value='login'>";
echo "</form>";
echo "</span>";
}
// display javascript status
/* echo "<span class='small'>";
if (session::get("JS")) echo "JavaScript aktiv";
else echo "kein Javascript";
echo "</span>";*/
echo "</div>";
}
示例2: descriptor
function descriptor($id, $name, $error)
{
echo "<fieldset><legend>";
//-----------------
if (!thesaurus::is_descriptor($id)) {
$checkString = "";
echo "kein ";
} else {
$checkString = " checked";
}
echo "Begriff";
if (!thesaurus::is_visible($id)) {
echo " <span class='red'>(versteckt)</span>";
}
echo "</legend>";
// descriptor value
echo form::field("text", "name", $name, 30, "class='{$error}'", "", "", $help = "name-field");
// display ID
echo "<span class='small'>ID = {$id}</span>";
// open tree
echo form::link("opentree", "[+]", "index.php?action=showhyrarchy&id={$id}", "opentree");
// exit edit mode
if (right::write()) {
action::edit();
}
// delete entry
if (thesaurus::child_num($id, 1) == 0) {
$javaText = "Wollen Sie " . $name . " wirklich löschen? Es werden auch alle Links zu diesem Eintrag gelöscht";
echo form::link("delete", "x", "javascript:get_confirm("{$javaText}","index.php?action=deleteid&id={$id}");", "delete");
}
echo "<br>";
// type of descriptor
/* $typeArray = thesaurus::get_type_list();
$entryType = thesaurus::get_entrytype($id);
$entryTypeName = thesaurus::get_entrytype_name($entryType);
$javaText = "Wollen Sie wirklich allen Unterbegriffen von " . $name . " den Begriffstyp " . $entryTypeName . " zuweisen?";
echo form::selector("entrytype",$typeArray,1,"",$entryType,"<span class='small'>Begriffstype</span><br>","","entrytype");
// herite to all childs
echo form::link("inheritance"," Begriffstyp vererben","javascript:get_confirm("$javaText","index.php?id=$id&entrytype=$entryType&action=inherit");","inheritance");
*/
echo "<span class='normal'><i>" . thesaurus::get_name(thesaurus::get_thesaurus($id)) . "</i></span>";
echo "<br>";
// status of descriptor
$statusArray = thesaurus::get_status_list();
echo form::selector("status", $statusArray, 1, "", thesaurus::get_status($id), "<span class='small'>Status</span><br>", "", "statustype");
echo "<br>";
// descriptor is default value for ordered entries
// default place for kandidates defined
$orderDefault = system::getval("val_orderdefault");
if ($orderDefault) {
if (intval($orderDefault) == $id) {
$checkedString = "checked='checked'";
} else {
$defaultString = "<br>(derzeit: <i>'";
$defaultString .= "<a href='index.php?id={$orderDefault}&action=show'>";
$defaultString .= thesaurus::get_name($orderDefault);
$defaultString .= "</a>";
$defaultString .= "'</i>)";
}
} else {
$defaultString = "<br>(Kein Ort für Kandidaten festgelegt)";
}
echo form::field("checkbox", "orderdefault", $id, "", $checkedString, "", "als Standard für Kandidaten festlegen {$defaultString}", "orderdefault");
echo "</fieldset>";
}