| 1 | efrain | 1 | <?php
 | 
        
           |  |  | 2 |   | 
        
           |  |  | 3 | // This file is part of Moodle - http://moodle.org/
 | 
        
           |  |  | 4 | //
 | 
        
           |  |  | 5 | // Moodle is free software: you can redistribute it and/or modify
 | 
        
           |  |  | 6 | // it under the terms of the GNU General Public License as published by
 | 
        
           |  |  | 7 | // the Free Software Foundation, either version 3 of the License, or
 | 
        
           |  |  | 8 | // (at your option) any later version.
 | 
        
           |  |  | 9 | //
 | 
        
           |  |  | 10 | // Moodle is distributed in the hope that it will be useful,
 | 
        
           |  |  | 11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
        
           |  |  | 12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
        
           |  |  | 13 | // GNU General Public License for more details.
 | 
        
           |  |  | 14 | //
 | 
        
           |  |  | 15 | // You should have received a copy of the GNU General Public License
 | 
        
           |  |  | 16 | // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
 | 
        
           |  |  | 17 |   | 
        
           |  |  | 18 |   | 
        
           |  |  | 19 | /**
 | 
        
           |  |  | 20 |  * Tabs to be included on the pages for configuring a single host
 | 
        
           |  |  | 21 |  * $mnet_peer object must be set and bootstrapped
 | 
        
           |  |  | 22 |  * $currenttab string must be set
 | 
        
           |  |  | 23 |  *
 | 
        
           |  |  | 24 |  * @package    core
 | 
        
           |  |  | 25 |  * @subpackage mnet
 | 
        
           |  |  | 26 |  * @copyright  2007 Donal McMullan
 | 
        
           |  |  | 27 |  * @copyright  2007 Martin Langhoff
 | 
        
           |  |  | 28 |  * @copyright  2010 Penny Leach
 | 
        
           |  |  | 29 |  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 | 
        
           |  |  | 30 |  */
 | 
        
           |  |  | 31 |   | 
        
           |  |  | 32 | if (!defined('MOODLE_INTERNAL')) {
 | 
        
           |  |  | 33 |     die('Direct access to this script is forbidden.'); // It must be included from a Moodle page
 | 
        
           |  |  | 34 | }
 | 
        
           |  |  | 35 |   | 
        
           |  |  | 36 | $strmnetservices   = get_string('mnetservices', 'mnet');
 | 
        
           |  |  | 37 | $strmnetedithost   = get_string('reviewhostdetails', 'mnet');
 | 
        
           |  |  | 38 |   | 
        
           |  |  | 39 | $tabs = array();
 | 
        
           |  |  | 40 | if (isset($mnet_peer->id) && $mnet_peer->id > 0) {
 | 
        
           |  |  | 41 |     $tabs[] = new tabobject('mnetdetails', 'peers.php?step=update&hostid='.$mnet_peer->id, $strmnetedithost, $strmnetedithost, false);
 | 
        
           |  |  | 42 |     $tabs[] = new tabobject('mnetservices', 'services.php?hostid='.$mnet_peer->id, $strmnetservices, $strmnetservices, false);
 | 
        
           |  |  | 43 |     $tabs[] = new tabobject('mnetprofilefields', 'profilefields.php?hostid=' . $mnet_peer->id, get_string('profilefields', 'mnet'), get_string('profilefields', 'mnet'), false);
 | 
        
           |  |  | 44 | } else {
 | 
        
           |  |  | 45 |     $tabs[] = new tabobject('mnetdetails', '#', $strmnetedithost, $strmnetedithost, false);
 | 
        
           |  |  | 46 | }
 | 
        
           |  |  | 47 | print_tabs(array($tabs), $currenttab);
 |