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


PHP table_sql::define_columns方法代码示例

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


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

示例1: set_up_table_columns

 /**
  * Set up the table.
  * @param table_sql $table the table being constructed.
  * @param array $columns the list of columns.
  * @param array $headers the columns headings.
  * @param moodle_url $reporturl the URL of this report.
  * @param mod_quiz_attempts_report_options $options the display options.
  * @param bool $collapsible whether to allow columns in the report to be collapsed.
  */
 protected function set_up_table_columns($table, $columns, $headers, $reporturl, mod_quiz_attempts_report_options $options, $collapsible)
 {
     $table->define_columns($columns);
     $table->define_headers($headers);
     $table->sortable(true, 'uniqueid');
     $table->define_baseurl($options->get_url());
     $this->configure_user_columns($table);
     $table->no_sorting('feedbacktext');
     $table->column_class('sumgrades', 'bold');
     $table->set_attribute('id', 'attempts');
     $table->collapsible($collapsible);
 }
开发者ID:alanaipe2015,项目名称:moodle,代码行数:21,代码来源:attemptsreport.php

示例2: define_columns

 /**
  * Defines columns
  * @param array $columns an array of identifying names for columns. If
  * columns are sorted then column names must correspond to a field in sql.
  */
 public function define_columns($columns)
 {
     parent::define_columns($columns);
     foreach ($this->columns as $column => $column) {
         // Automatically assign classes to columns.
         $this->column_class[$column] = ' ' . $column;
     }
 }
开发者ID:IFPBMoodle,项目名称:moodle,代码行数:13,代码来源:responses_table.php


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