本文整理汇总了PHP中Permissions::canDuplicateTreeNode方法的典型用法代码示例。如果您正苦于以下问题:PHP Permissions::canDuplicateTreeNode方法的具体用法?PHP Permissions::canDuplicateTreeNode怎么用?PHP Permissions::canDuplicateTreeNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Permissions
的用法示例。
在下文中一共展示了Permissions::canDuplicateTreeNode方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct(Category $category)
{
parent::__construct($category);
$p = new \Permissions($category);
if ($p->canAddCategoryTreeNode()) {
$this->addItem(new AddCategoryItem($category));
}
if ($p->canAddTopicTreeNode()) {
$this->addItem(new AddTopicItem($category));
}
if ($p->canEditTreeNode()) {
$this->addItem(new EditCategoryItem($category));
}
if ($p->canDuplicateTreeNode()) {
$this->addItem(new CloneItem($category));
}
if ($p->canEditTreeNodePermissions() || $p->canDeleteTreeNode()) {
$this->addItem(new DividerItem());
}
if ($p->canEditTreeNodePermissions()) {
$this->addItem(new EditPermissionsItem($category));
}
if ($p->canDeleteTreeNode()) {
$this->addItem(new DeleteItem($category));
}
}
示例2: __construct
public function __construct(Topic $topic)
{
parent::__construct($topic);
$p = new \Permissions($topic);
if ($p->canEditTreeNode()) {
$this->addItem(new EditTopicItem($topic));
}
if ($p->canDuplicateTreeNode()) {
$this->addItem(new CloneItem($topic));
}
if ($p->canEditTreeNodePermissions() || $p->canDeleteTreeNode()) {
$this->addItem(new DividerItem());
}
if ($p->canEditTreeNodePermissions()) {
$this->addItem(new EditPermissionsItem($topic));
}
if ($p->canDeleteTreeNode()) {
$this->addItem(new DeleteItem($topic));
}
}
示例3: canAccess
protected function canAccess()
{
$node = $this->getNode();
$np = new \Permissions($node);
return $np->canDuplicateTreeNode();
}
示例4: die
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$form = Loader::helper('form');
$node = \Concrete\Core\Tree\Node\Node::getByID(Loader::helper('security')->sanitizeInt($_REQUEST['treeNodeID']));
$np = new Permissions($node);
$tree = $node->getTreeObject();
$parent = $node->getTreeNodeParentObject();
$pp = new Permissions($parent);
if (is_object($node) && $pp->canDuplicateTreeNode()) {
$newnode = $node->duplicate($parent);
$r = new stdClass();
$r->treeNodeParentID = $parent->getTreeNodeID();
Loader::helper("ajax")->sendResult($r);
}