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


PHP user_selector_base::display方法代码示例

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


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

示例1: recipients_selection_form

 public function recipients_selection_form(user_selector_base $existinguc, user_selector_base $potentialuc)
 {
     $output = '';
     $formattributes = array();
     $formattributes['id'] = 'recipientform';
     $formattributes['action'] = $this->page->url;
     $formattributes['method'] = 'post';
     $output .= html_writer::start_tag('form', $formattributes);
     $output .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'sesskey', 'value' => sesskey()));
     $existingcell = new html_table_cell();
     $existingcell->text = $existinguc->display(true);
     $existingcell->attributes['class'] = 'existing';
     $actioncell = new html_table_cell();
     $actioncell->text = html_writer::start_tag('div', array());
     $actioncell->text .= html_writer::empty_tag('input', array('type' => 'submit', 'name' => 'award', 'value' => $this->output->larrow() . ' ' . get_string('award', 'badges'), 'class' => 'actionbutton'));
     $actioncell->text .= html_writer::end_tag('div', array());
     $actioncell->attributes['class'] = 'actions';
     $potentialcell = new html_table_cell();
     $potentialcell->text = $potentialuc->display(true);
     $potentialcell->attributes['class'] = 'potential';
     $table = new html_table();
     $table->attributes['class'] = 'recipienttable boxaligncenter';
     $table->data = array(new html_table_row(array($existingcell, $actioncell, $potentialcell)));
     $output .= html_writer::table($table);
     $output .= html_writer::end_tag('form');
     return $output;
 }
开发者ID:Jtgadbois,项目名称:Pedadida,代码行数:27,代码来源:renderer.php

示例2: subscribed_users

 /**
  * This is used to display a control containing all of the subscribed users so that
  * it can be searched
  *
  * @param user_selector_base $existingusers
  * @return string
  */
 public function subscribed_users(user_selector_base $existingusers)
 {
     $output = $this->output->box_start('subscriberdiv boxaligncenter');
     $output .= html_writer::tag('p', get_string('forcesubscribed', 'forum'));
     $output .= $existingusers->display(true);
     $output .= $this->output->box_end();
     return $output;
 }
开发者ID:educakanchay,项目名称:campus,代码行数:15,代码来源:renderer.php


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