本文整理汇总了PHP中entity::field_has_lock方法的典型用法代码示例。如果您正苦于以下问题:PHP entity::field_has_lock方法的具体用法?PHP entity::field_has_lock怎么用?PHP entity::field_has_lock使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类entity
的用法示例。
在下文中一共展示了entity::field_has_lock方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: entity
function pre_show_form()
{
$e = new entity($this->get_value('id'));
if ($e->get_value('state') == 'Deleted') {
$action = 'expunge';
$noun = 'expungement';
} else {
$action = 'delete';
$noun = 'deletion';
}
$name = $e->get_value("name");
if (!$name) {
$name = "<i>(untitled)</i>";
}
echo "<h3>Do you really want to {$action} {$name}?</h3>";
if ($e->field_has_lock('state') && reason_user_has_privs($this->admin_page->user_id, 'manage_locks')) {
echo '<div class="lockNotice"><img class="lockIndicator" src="' . REASON_HTTP_BASE_PATH . 'ui_images/lock_12px_grey_trans.png" alt="locked" width="12" height="12" /> Note: ' . $noun . ' is locked for some users.</div>';
}
}