Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/customfooter/index.php

14 lines
391 B

<?php
/**
* @package chamilo.plugin.customfooter
*/
if (isset($plugin_info['current_region'])) {
switch ($plugin_info['current_region']) {
case 'footer_left':
echo $plugin_info['settings']['customfooter_footer_left'];
break;
case 'footer_right':
echo $plugin_info['settings']['customfooter_footer_right'];
break;
}
}