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.
		
		
		
		
		
			
		
			
				
					
					
						
							431 lines
						
					
					
						
							18 KiB
						
					
					
				
			
		
		
	
	
							431 lines
						
					
					
						
							18 KiB
						
					
					
				<?php
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
/**
 | 
						|
 * Edition script for sessions categories.
 | 
						|
 *
 | 
						|
 * @package chamilo.admin
 | 
						|
 */
 | 
						|
$cidReset = true;
 | 
						|
require_once __DIR__.'/../inc/global.inc.php';
 | 
						|
 | 
						|
// setting the section (for the tabs)
 | 
						|
$this_section = SECTION_PLATFORM_ADMIN;
 | 
						|
api_protect_admin_script(true);
 | 
						|
$id = intval($_GET['id']);
 | 
						|
$formSent = 0;
 | 
						|
$errorMsg = '';
 | 
						|
 | 
						|
// Database Table Definitions
 | 
						|
$tbl_session_category = Database::get_main_table(TABLE_MAIN_SESSION_CATEGORY);
 | 
						|
$tool_name = get_lang('EditSessionCategory');
 | 
						|
$interbreadcrumb[] = [
 | 
						|
    'url' => 'session_list.php',
 | 
						|
    "name" => get_lang('SessionList'),
 | 
						|
];
 | 
						|
$interbreadcrumb[] = [
 | 
						|
    'url' => "session_category_list.php",
 | 
						|
    "name" => get_lang('ListSessionCategory'),
 | 
						|
];
 | 
						|
 | 
						|
$sql = "SELECT * FROM $tbl_session_category WHERE id='".$id."' ORDER BY name";
 | 
						|
$result = Database::query($sql);
 | 
						|
if (!$infos = Database::fetch_array($result)) {
 | 
						|
    header('Location: session_list.php');
 | 
						|
    exit();
 | 
						|
}
 | 
						|
 | 
						|
list($year_start, $month_start, $day_start) = explode('-', $infos['date_start']);
 | 
						|
list($year_end, $month_end, $day_end) = explode('-', $infos['date_end']);
 | 
						|
 | 
						|
if (!api_is_platform_admin() && $infos['session_admin_id'] != $_user['user_id'] && !api_is_session_admin()) {
 | 
						|
    api_not_allowed(true);
 | 
						|
}
 | 
						|
 | 
						|
if (isset($_POST['formSent']) && $_POST['formSent']) {
 | 
						|
    $formSent = 1;
 | 
						|
    $name = $_POST['name'];
 | 
						|
    $year_start = $_POST['year_start'];
 | 
						|
    $month_start = $_POST['month_start'];
 | 
						|
    $day_start = $_POST['day_start'];
 | 
						|
    $year_end = $_POST['year_end'];
 | 
						|
    $month_end = $_POST['month_end'];
 | 
						|
    $day_end = $_POST['day_end'];
 | 
						|
    $return = SessionManager::edit_category_session(
 | 
						|
        $id,
 | 
						|
        $name,
 | 
						|
        $year_start,
 | 
						|
        $month_start,
 | 
						|
        $day_start,
 | 
						|
        $year_end,
 | 
						|
        $month_end,
 | 
						|
        $day_end
 | 
						|
    );
 | 
						|
    if ($return == strval(intval($return))) {
 | 
						|
        Display::addFlash(Display::return_message(get_lang('SessionCategoryUpdate')));
 | 
						|
        header('Location: session_category_list.php');
 | 
						|
        exit();
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
$thisYear = date('Y');
 | 
						|
$thisMonth = date('m');
 | 
						|
$thisDay = date('d');
 | 
						|
 | 
						|
// display the header
 | 
						|
Display::display_header($tool_name);
 | 
						|
if (!empty($return)) {
 | 
						|
    echo Display::return_message($return, 'error', false);
 | 
						|
}
 | 
						|
?>
 | 
						|
<div class="row">
 | 
						|
    <div class="col-md-12">
 | 
						|
        <form method="post" name="form" action="<?php echo api_get_self(); ?>?id=<?php echo $id; ?>" class="form-horizontal">
 | 
						|
        <input type="hidden" name="formSent" value="1">
 | 
						|
        <legend><?php echo $tool_name; ?> </legend>
 | 
						|
        <div class="form-group">
 | 
						|
            <label class="col-sm-3 control-label"><?php echo get_lang('Name'); ?></label>
 | 
						|
            <div class="col-sm-6">
 | 
						|
                <input class="form-control" type="text" name="name" size="50" maxlength="50" value="<?php if ($formSent) {
 | 
						|
    echo api_htmlentities($name, ENT_QUOTES, $charset);
 | 
						|
} else {
 | 
						|
    echo api_htmlentities($infos['name'], ENT_QUOTES, $charset);
 | 
						|
} ?>">
 | 
						|
            </div>
 | 
						|
            <div class="col-sm-3"></div>
 | 
						|
        </div>
 | 
						|
        <div class="form-group">
 | 
						|
            <div class="col-sm-offset-3 col-sm-6">
 | 
						|
                <?php echo get_lang('TheTimeLimitsAreReferential'); ?>
 | 
						|
                <a href="javascript://" onclick="if(document.getElementById('options').style.display == 'none'){document.getElementById('options').style.display = 'block';}else{document.getElementById('options').style.display = 'none';}"><?php echo get_lang('EditTimeLimit'); ?></a>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <div style="display: <?php echo $formSent ? 'display' : 'none'; ?>;" id="options">
 | 
						|
            <div class="form-group">
 | 
						|
                <label class="col-sm-3 control-label"><?php echo get_lang('DateStart'); ?></label>
 | 
						|
                <div class="col-sm-6">
 | 
						|
                    <select name="day_start">
 | 
						|
                        <option value="1">01</option>
 | 
						|
                        <option value="2" <?php if ($day_start == 2) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >02</option>
 | 
						|
                        <option value="3" <?php if ($day_start == 3) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >03</option>
 | 
						|
                        <option value="4" <?php if ($day_start == 4) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >04</option>
 | 
						|
                        <option value="5" <?php if ($day_start == 5) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >05</option>
 | 
						|
                        <option value="6" <?php if ($day_start == 6) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >06</option>
 | 
						|
                        <option value="7" <?php if ($day_start == 7) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >07</option>
 | 
						|
                        <option value="8" <?php if ($day_start == 8) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >08</option>
 | 
						|
                        <option value="9" <?php if ($day_start == 9) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >09</option>
 | 
						|
                        <option value="10" <?php if ($day_start == 10) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >10</option>
 | 
						|
                        <option value="11" <?php if ($day_start == 11) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >11</option>
 | 
						|
                        <option value="12" <?php if ($day_start == 12) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >12</option>
 | 
						|
                        <option value="13" <?php if ($day_start == 13) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >13</option>
 | 
						|
                        <option value="14" <?php if ($day_start == 14) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >14</option>
 | 
						|
                        <option value="15" <?php if ($day_start == 15) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >15</option>
 | 
						|
                        <option value="16" <?php if ($day_start == 16) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >16</option>
 | 
						|
                        <option value="17" <?php if ($day_start == 17) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >17</option>
 | 
						|
                        <option value="18" <?php if ($day_start == 18) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >18</option>
 | 
						|
                        <option value="19" <?php if ($day_start == 19) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >19</option>
 | 
						|
                        <option value="20" <?php if ($day_start == 20) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >20</option>
 | 
						|
                        <option value="21" <?php if ($day_start == 21) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >21</option>
 | 
						|
                        <option value="22" <?php if ($day_start == 22) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >22</option>
 | 
						|
                        <option value="23" <?php if ($day_start == 23) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >23</option>
 | 
						|
                        <option value="24" <?php if ($day_start == 24) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >24</option>
 | 
						|
                        <option value="25" <?php if ($day_start == 25) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >25</option>
 | 
						|
                        <option value="26" <?php if ($day_start == 26) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >26</option>
 | 
						|
                        <option value="27" <?php if ($day_start == 27) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >27</option>
 | 
						|
                        <option value="28" <?php if ($day_start == 28) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >28</option>
 | 
						|
                        <option value="29" <?php if ($day_start == 29) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >29</option>
 | 
						|
                        <option value="30" <?php if ($day_start == 30) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >30</option>
 | 
						|
                        <option value="31" <?php if ($day_start == 31) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >31</option>
 | 
						|
                  </select>
 | 
						|
                  /
 | 
						|
                  <select name="month_start">
 | 
						|
                        <option value="1">01</option>
 | 
						|
                        <option value="2" <?php if ($month_start == 2) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >02</option>
 | 
						|
                        <option value="3" <?php if ($month_start == 3) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >03</option>
 | 
						|
                        <option value="4" <?php if ($month_start == 4) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >04</option>
 | 
						|
                        <option value="5" <?php if ($month_start == 5) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >05</option>
 | 
						|
                        <option value="6" <?php if ($month_start == 6) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >06</option>
 | 
						|
                        <option value="7" <?php if ($month_start == 7) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >07</option>
 | 
						|
                        <option value="8" <?php if ($month_start == 8) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >08</option>
 | 
						|
                        <option value="9" <?php if ($month_start == 9) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >09</option>
 | 
						|
                        <option value="10" <?php if ($month_start == 10) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >10</option>
 | 
						|
                        <option value="11" <?php if ($month_start == 11) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >11</option>
 | 
						|
                        <option value="12" <?php if ($month_start == 12) {
 | 
						|
    echo 'selected="selected"';
 | 
						|
} ?> >12</option>
 | 
						|
                  </select>
 | 
						|
                  /
 | 
						|
                <select name="year_start">
 | 
						|
                        <?php
 | 
						|
                        for ($i = $thisYear - 5; $i <= ($thisYear + 5); $i++) {
 | 
						|
                            ?>
 | 
						|
                                <option value="<?php echo $i; ?>" <?php if ($year_start == $i) {
 | 
						|
                                echo 'selected="selected"';
 | 
						|
                            } ?> ><?php echo $i; ?></option>
 | 
						|
                        <?php
 | 
						|
                        } ?>
 | 
						|
                </select>
 | 
						|
                </div>
 | 
						|
                <div class="col-sm-3"></div>
 | 
						|
            </div>
 | 
						|
            <div class="form-group">
 | 
						|
                <label class="col-sm-3 control-label"><?php echo get_lang('DateEnd'); ?></label>
 | 
						|
                <div class="col-sm-6">
 | 
						|
                    <select name="day_end">
 | 
						|
                        <option value="0">--</option>
 | 
						|
                        <option value="1" <?php if ($day_end == 1) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >01</option>
 | 
						|
                        <option value="2" <?php if ($day_end == 2) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >02</option>
 | 
						|
                        <option value="3" <?php if ($day_end == 3) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >03</option>
 | 
						|
                        <option value="4" <?php if ($day_end == 4) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >04</option>
 | 
						|
                        <option value="5" <?php if ($day_end == 5) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >05</option>
 | 
						|
                        <option value="6" <?php if ($day_end == 6) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >06</option>
 | 
						|
                        <option value="7" <?php if ($day_end == 7) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >07</option>
 | 
						|
                        <option value="8" <?php if ($day_end == 8) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >08</option>
 | 
						|
                        <option value="9" <?php if ($day_end == 9) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >09</option>
 | 
						|
                        <option value="10" <?php if ($day_end == 10) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >10</option>
 | 
						|
                        <option value="11" <?php if ($day_end == 11) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >11</option>
 | 
						|
                        <option value="12" <?php if ($day_end == 12) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >12</option>
 | 
						|
                        <option value="13" <?php if ($day_end == 13) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >13</option>
 | 
						|
                        <option value="14" <?php if ($day_end == 14) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >14</option>
 | 
						|
                        <option value="15" <?php if ($day_end == 15) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >15</option>
 | 
						|
                        <option value="16" <?php if ($day_end == 16) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >16</option>
 | 
						|
                        <option value="17" <?php if ($day_end == 17) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >17</option>
 | 
						|
                        <option value="18" <?php if ($day_end == 18) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >18</option>
 | 
						|
                        <option value="19" <?php if ($day_end == 19) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >19</option>
 | 
						|
                        <option value="20" <?php if ($day_end == 20) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >20</option>
 | 
						|
                        <option value="21" <?php if ($day_end == 21) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >21</option>
 | 
						|
                        <option value="22" <?php if ($day_end == 22) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >22</option>
 | 
						|
                        <option value="23" <?php if ($day_end == 23) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >23</option>
 | 
						|
                        <option value="24" <?php if ($day_end == 24) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >24</option>
 | 
						|
                        <option value="25" <?php if ($day_end == 25) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >25</option>
 | 
						|
                        <option value="26" <?php if ($day_end == 26) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >26</option>
 | 
						|
                        <option value="27" <?php if ($day_end == 27) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >27</option>
 | 
						|
                        <option value="28" <?php if ($day_end == 28) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >28</option>
 | 
						|
                        <option value="29" <?php if ($day_end == 29) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >29</option>
 | 
						|
                        <option value="30" <?php if ($day_end == 30) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >30</option>
 | 
						|
                        <option value="31" <?php if ($day_end == 31) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >31</option>
 | 
						|
                  </select>
 | 
						|
                  /
 | 
						|
                  <select name="month_end">
 | 
						|
                        <option value="0">--</option>
 | 
						|
                        <option value="1" <?php if ($month_end == 1) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >01</option>
 | 
						|
                        <option value="2" <?php if ($month_end == 2) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >02</option>
 | 
						|
                        <option value="3" <?php if ($month_end == 3) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >03</option>
 | 
						|
                        <option value="4" <?php if ($month_end == 4) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >04</option>
 | 
						|
                        <option value="5" <?php if ($month_end == 5) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >05</option>
 | 
						|
                        <option value="6" <?php if ($month_end == 6) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >06</option>
 | 
						|
                        <option value="7" <?php if ($month_end == 7) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >07</option>
 | 
						|
                        <option value="8" <?php if ($month_end == 8) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >08</option>
 | 
						|
                        <option value="9" <?php if ($month_end == 9) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >09</option>
 | 
						|
                        <option value="10" <?php if ($month_end == 10) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >10</option>
 | 
						|
                        <option value="11" <?php if ($month_end == 11) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >11</option>
 | 
						|
                        <option value="12" <?php if ($month_end == 12) {
 | 
						|
                            echo 'selected="selected"';
 | 
						|
                        } ?> >12</option>
 | 
						|
                  </select>
 | 
						|
                  /
 | 
						|
                  <select name="year_end">
 | 
						|
                        <option value="0">----</option>
 | 
						|
                        <?php
 | 
						|
                        for ($i = $thisYear - 5; $i <= ($thisYear + 5); $i++) {
 | 
						|
                            ?>
 | 
						|
                         <option value="<?php echo $i; ?>" <?php if ($year_end == $i) {
 | 
						|
                                echo 'selected="selected"';
 | 
						|
                            } ?> ><?php echo $i; ?></option>
 | 
						|
                        <?php
 | 
						|
                        } ?>
 | 
						|
                 </select>
 | 
						|
                </div>
 | 
						|
                <div class="col-sm-3"></div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <div class="form-group">
 | 
						|
            <div class="col-sm-offset-3 col-sm-6">
 | 
						|
                <button class="btn btn-success" type="submit" value="<?php echo get_lang('Edit'); ?>">
 | 
						|
                    <?php echo get_lang('Edit'); ?>
 | 
						|
                </button>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </form>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
<script>
 | 
						|
<?php if ($year_start == "0000") {
 | 
						|
                            echo "setDisable(document.form.nolimit);\r\n";
 | 
						|
                        } ?>
 | 
						|
function setDisable(select){
 | 
						|
	document.form.day_start.disabled = (select.checked) ? true : false;
 | 
						|
	document.form.month_start.disabled = (select.checked) ? true : false;
 | 
						|
	document.form.year_start.disabled = (select.checked) ? true : false;
 | 
						|
	document.form.day_end.disabled = (select.checked) ? true : false;
 | 
						|
	document.form.month_end.disabled = (select.checked) ? true : false;
 | 
						|
	document.form.year_end.disabled = (select.checked) ? true : false;
 | 
						|
}
 | 
						|
</script>
 | 
						|
<?php
 | 
						|
Display::display_footer();
 | 
						|
 |