Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/mod/chat/gui_ajax/theme/compact/config.php
Go to the documentation of this file.
00001 <?php
00002 $chattheme_cfg = new stdClass();
00003 $chattheme_cfg->avatar = false;
00004 $chattheme_cfg->align  = false;
00005 $chattheme_cfg->event_message = <<<TEMPLATE
00006 <div class="chat-event">
00007 <span class="time">___time___</span>
00008 <a target='_blank' href="___senderprofile___">___sender___</a>
00009 <span class="event">___event___</span>
00010 </div>
00011 TEMPLATE;
00012 $chattheme_cfg->user_message = <<<TEMPLATE
00013 <div class='chat-message'>
00014     <div class="meta">
00015         <span class="time">___time___</span>
00016         <span class="user"><a href="___senderprofile___" target="_blank">___sender___</a></span>
00017     </div>
00018     <div class="text">
00019     ___message___
00020     </div>
00021 </div>
00022 TEMPLATE;
 All Data Structures Namespaces Files Functions Variables Enumerations