mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
100 lines
2.8 KiB
PHP
100 lines
2.8 KiB
PHP
<?php //$Id$
|
|
|
|
require_once($CFG->libdir.'/pagelib.php');
|
|
|
|
class page_my_moodle extends page_base {
|
|
|
|
function get_type() {
|
|
return PAGE_MY_MOODLE;
|
|
}
|
|
|
|
function user_allowed_editing() {
|
|
page_id_and_class($id,$class);
|
|
if ($id == PAGE_MY_MOODLE) {
|
|
return true;
|
|
} else if (has_capability('moodle/my:manageblocks', get_context_instance(CONTEXT_SYSTEM)) && defined('ADMIN_STICKYBLOCKS')) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function user_is_editing() {
|
|
global $USER;
|
|
if (has_capability('moodle/my:manageblocks', get_context_instance(CONTEXT_SYSTEM)) && defined('ADMIN_STICKYBLOCKS')) {
|
|
return true;
|
|
}
|
|
return (!empty($USER->editing));
|
|
}
|
|
|
|
function print_header($title) {
|
|
|
|
global $USER;
|
|
|
|
$replacements = array(
|
|
'%fullname%' => get_string('mymoodle','my')
|
|
);
|
|
foreach($replacements as $search => $replace) {
|
|
$title = str_replace($search, $replace, $title);
|
|
}
|
|
|
|
$site = get_site();
|
|
|
|
$button = update_mymoodle_icon($USER->id);
|
|
$nav = get_string('mymoodle','my');
|
|
$header = $site->shortname.': '.$nav;
|
|
$navlinks = array(array('name' => $nav, 'link' => '', 'type' => 'misc'));
|
|
$navigation = build_navigation($navlinks);
|
|
|
|
$loggedinas = user_login_string($site);
|
|
print_header($title, $header,$navigation,'','',true, $button, $loggedinas);
|
|
|
|
}
|
|
|
|
function url_get_path() {
|
|
global $CFG;
|
|
page_id_and_class($id,$class);
|
|
if ($id == PAGE_MY_MOODLE) {
|
|
return $CFG->wwwroot.'/my/index.php';
|
|
} elseif (defined('ADMIN_STICKYBLOCKS')){
|
|
return $CFG->wwwroot.'/'.$CFG->admin.'/stickyblocks.php';
|
|
}
|
|
}
|
|
|
|
function url_get_parameters() {
|
|
if (defined('ADMIN_STICKYBLOCKS')) {
|
|
return array('pt' => ADMIN_STICKYBLOCKS);
|
|
} else {
|
|
return array();
|
|
}
|
|
}
|
|
|
|
function blocks_default_position() {
|
|
return BLOCK_POS_LEFT;
|
|
}
|
|
|
|
function blocks_get_positions() {
|
|
return array(BLOCK_POS_LEFT, BLOCK_POS_RIGHT);
|
|
}
|
|
|
|
function blocks_move_position(&$instance, $move) {
|
|
if($instance->position == BLOCK_POS_LEFT && $move == BLOCK_MOVE_RIGHT) {
|
|
return BLOCK_POS_RIGHT;
|
|
} else if ($instance->position == BLOCK_POS_RIGHT && $move == BLOCK_MOVE_LEFT) {
|
|
return BLOCK_POS_LEFT;
|
|
}
|
|
return $instance->position;
|
|
}
|
|
|
|
function get_format_name() {
|
|
return MY_MOODLE_FORMAT;
|
|
}
|
|
}
|
|
|
|
|
|
define('PAGE_MY_MOODLE', 'my-index');
|
|
define('MY_MOODLE_FORMAT', 'my'); //doing this so we don't run into problems with applicable formats.
|
|
|
|
page_map_class(PAGE_MY_MOODLE, 'page_my_moodle');
|
|
|
|
?>
|