当前位置: 首页>>代码示例>>PHP>>正文


PHP core_plugin_manager::plugin_name方法代码示例

本文整理汇总了PHP中core_plugin_manager::plugin_name方法的典型用法代码示例。如果您正苦于以下问题:PHP core_plugin_manager::plugin_name方法的具体用法?PHP core_plugin_manager::plugin_name怎么用?PHP core_plugin_manager::plugin_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在core_plugin_manager的用法示例。


在下文中一共展示了core_plugin_manager::plugin_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: plugin_uninstall_results_removable_page

 /**
  * Display a page with results of plugin uninstallation and offer removal of plugin files.
  *
  * @param core_plugin_manager $pluginman
  * @param \core\plugininfo\base $pluginfo
  * @param progress_trace_buffer $progress
  * @param moodle_url $continueurl URL to continue to remove the plugin folder
  * @return string
  */
 public function plugin_uninstall_results_removable_page(core_plugin_manager $pluginman, \core\plugininfo\base $pluginfo, progress_trace_buffer $progress, moodle_url $continueurl)
 {
     $output = '';
     $pluginname = $pluginman->plugin_name($pluginfo->component);
     // Do not show navigation here, they must click one of the buttons.
     $this->page->set_pagelayout('maintenance');
     $this->page->set_cacheable(false);
     $output .= $this->output->header();
     $output .= $this->output->heading(get_string('uninstalling', 'core_plugin', array('name' => $pluginname)));
     $output .= $this->output->box($progress->get_buffer(), 'generalbox uninstallresultmessage');
     $confirm = $this->output->container(get_string('uninstalldeleteconfirm', 'core_plugin', array('name' => $pluginname, 'rootdir' => $pluginfo->rootdir)), 'uninstalldeleteconfirm');
     if ($repotype = $pluginman->plugin_external_source($pluginfo->component)) {
         $confirm .= $this->output->container(get_string('uninstalldeleteconfirmexternal', 'core_plugin', $repotype), 'uninstalldeleteconfirmexternal');
     }
     // After any uninstall we must execute full upgrade to finish the cleanup!
     $output .= $this->output->confirm($confirm, $continueurl, new moodle_url('/admin/index.php'));
     $output .= $this->output->footer();
     return $output;
 }
开发者ID:jeffthestampede,项目名称:excelsior,代码行数:28,代码来源:renderer.php


注:本文中的core_plugin_manager::plugin_name方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。