本文整理汇总了PHP中table_sql::col_fullname方法的典型用法代码示例。如果您正苦于以下问题:PHP table_sql::col_fullname方法的具体用法?PHP table_sql::col_fullname怎么用?PHP table_sql::col_fullname使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类table_sql
的用法示例。
在下文中一共展示了table_sql::col_fullname方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function col_fullname($attempt)
{
$html = parent::col_fullname($attempt);
if ($this->is_downloading()) {
return $html;
}
return $html . '<br /><a class="reviewlink" href="review.php?q=' . $this->quiz->id . '&attempt=' . $attempt->attempt . '">' . get_string('reviewattempt', 'quiz') . '</a>';
}
示例2: col_fullname
/**
* Formats the column fullname.
*
* @param stdClass $row Table row.
* @return string Output produced.
*/
public function col_fullname($row)
{
if ($this->identitymode == block_xp_manager::IDENTITY_OFF && $row->userid != $this->userid) {
return get_string('someoneelse', 'block_xp');
}
return parent::col_fullname($row);
}
示例3: col_fullname
/**
* Generate the display of the user's full name column.
* @param object $attempt the table row being output.
* @return string HTML content to go inside the td.
*/
public function col_fullname($attempt) {
$html = parent::col_fullname($attempt);
if ($this->is_downloading()) {
return $html;
}
return $html . html_writer::empty_tag('br') . html_writer::link(
new moodle_url('/mod/quiz/review.php', array('attempt' => $attempt->attempt)),
get_string('reviewattempt', 'quiz'), array('class' => 'reviewlink'));
}