⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 template_format.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?php  // $Id: TEMPLATE_format.php,v 1.9.4.2 2008/02/13 17:01:45 skodak Exp $function glossary_show_entry_TEMPLATE($course, $cm, $glossary, $entry, $mode='', $hook='', $printicons=1, $ratings=NULL, $aliases=true) {    global $CFG, $USER;        $user = get_record('user', 'id', $entry->userid);    $strby = get_string('writtenby', 'glossary');    if ($entry) {            echo '<table class="glossarypost TEMPLATE">';        echo '<tr>';        echo '<td class="entryheader">';        //Use this function to show author's image        //Comments: Configuration not supported        print_user_picture($user, $course->id, $user->picture);        //Line separator to show this template fine. :-)        echo '<br />';        //Use this code to show author's name        //Comments: Configuration not supported        $fullname = fullname($user);        $by = new object();        $by->name = '<a href="'.$CFG->wwwroot.'/user/view.php?id='.$user->id.'&amp;course='.$course->id.'">'.$fullname.'</a>';        $by->date = userdate($entry->timemodified);        echo '<span class="author">'.get_string('bynameondate', 'forum', $by).'</span>' . '<br />';        //Use this code to show modification date        //Comments: Configuration not supported        echo get_string('lastedited').': '. userdate($entry->timemodified) . '<br /></span>';        //Use this function to show the approval button. It'll be shown if necessary               //Comments: You can configure this parameters:        //----Define where to show the approval button        $approvalalign = 'right'; //Values: left, center and right (default right)        //----Define if the approval button must be showed into a 100% width table        $approvalinsidetable = true; //Values: true, false (default true)        //Call the function        glossary_print_entry_approval($cm, $entry, $mode, $approvalalign, $approvalinsidetable);        //Line separator to show this template fine. :-)        echo '<br />';        echo '</td>';        echo '<td class="entryattachment">';        //Use this function to show the attachment. It'll be showed if necessary        //Comments: You can configure this parameters:        //----Define how to show the attachment         $attachmentformat = 'html'; //Values: html (link) and NULL (inline image if possible) (default NULL)        //----Define where to show the attachment        $attachmentalign = 'right'; //Values: left, center and right (default right)        //----Define if the attachment must be showed into a 100% width table        $attachmentinsidetable = true; //Values: true, false (default true)        //Call the function        glossary_print_entry_attachment($entry,$attachmentformat,$attachmentalign,$attachmentinsidetable);        //Line separator to show this template fine. :-)        echo "<br />\n";        echo '</td></tr>';        echo '<tr valign="top">';        echo '<td class="entry">';        //Use this function to print the concept in a heading <h3>        //Comments: Configuration not supported        glossary_print_entry_concept($entry);        //Line separator not normally needed now.        //echo "<br />\n";        //Use this function to show the definition         //Comments: Configuration not supported        glossary_print_entry_definition($entry);        //Line separator to show this template fine. :-)        echo "<br />\n";        //Use this function to show aliases, editing icons and ratings (all know as the 'lower section')        //Comments: You can configure this parameters:        //----Define when to show the aliases popup        //    use it only if you are really sure!        //$aliases = true; //Values: true, false (Default: true)        //----Uncoment this line to avoid ratings being showed        //    use it only if you are really sure! You can define this in the glossary conf. page.        //$ratings = NULL;        //----Uncoment this line to avoid editing icons being showed        //    use it only if you are really sure!        //$printicons = false;        $return = glossary_print_entry_lower_section($course, $cm, $glossary, $entry, $mode, $hook, $printicons, $ratings, $aliases);                echo '</td>';        echo '</tr>';        echo "</table>\n";    } else {            echo '<div style="text-align:center">';        print_string('noentry', 'glossary');        echo '</div>';    }    return $return;}function glossary_print_entry_TEMPLATE($course, $cm, $glossary, $entry, $mode='', $hook='', $printicons=1, $ratings=NULL) {    //The print view for this format is exactly the normal view, so we use it    //Anyway, you can modify this to use your own print format!!    //Take out autolinking in definitions in print view    $entry->definition = '<span class="nolink">'.$entry->definition.'</span>';    //Call to view function (without icons, ratings and aliases) and return its result    return glossary_show_entry_TEMPLATE($course, $cm, $glossary, $entry, $mode, $hook, false, false, false);}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -