本文整理汇总了PHP中block_base::_add_edit_controls方法的典型用法代码示例。如果您正苦于以下问题:PHP block_base::_add_edit_controls方法的具体用法?PHP block_base::_add_edit_controls怎么用?PHP block_base::_add_edit_controls使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类block_base
的用法示例。
在下文中一共展示了block_base::_add_edit_controls方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
/**
* Only real Hack of this block, replace the
* contextid of the block with the linked
* module's ID. If no ID, then hide the
* the button.
*
* @return void
**/
function _add_edit_controls($options)
{
parent::_add_edit_controls($options);
if ($this->edit_controls !== NULL) {
if (!empty($this->config->cmid)) {
$blockcontext = get_context_instance(CONTEXT_BLOCK, $this->instance->id);
$modulecontext = get_context_instance(CONTEXT_MODULE, $this->config->cmid);
$this->edit_controls = str_replace("contextid={$blockcontext->id}", "contextid={$modulecontext->id}", $this->edit_controls);
} else {
if (empty($this->instance->pinned)) {
// No linked module so hide the role assign widget for non-pinned instances
$this->edit_controls = str_replace('<div class="commands"><a', '<div class="commands"><a style="position: absolute; display: none;"', $this->edit_controls);
}
}
}
}