Ejemplo n.º 1
0
/*****************************************************************************\
+-----------------------------------------------------------------------------+
| SchoolReg                                                                   |
| Copyright (c) 2010 Z.                                                       |
| Copyright (c) 2009 Sergey V. Kuzin <*****@*****.**>                      |
| All rights reserved.                                                        |
+-----------------------------------------------------------------------------+
\*****************************************************************************/
#
# $Id: classes.php 4 2010-02-02 18:52:58Z kuzmich $
#
define('ADMIN_ZONE', true);
include_once '../init.php';
include_once '../include/classes.php';
include_once '../include/curriculums.php';
$school_years = get_school_years() or die("Вы должны добавить хотя бы один учебный год.");
$school_year_id = intval(@$_REQUEST['school_year_id']);
$curr_year = null;
if ($school_year_id == 0) {
    //assign $school_year_id to current period or to the last one
    $cur_time = time();
    foreach ($school_years as $year) {
        if (strtotime($year['started']) < $cur_time and $cur_time < strtotime($year['finished'])) {
            break;
        }
    }
    $school_year_id = $year['school_year_id'];
    $curr_year = $year;
}
$classes_list = get_classes_list($school_year_id);
if (!isset($curr_year)) {
Ejemplo n.º 2
0
+-----------------------------------------------------------------------------+
\*****************************************************************************/
#
# $Id: curriculum.php 4 2010-02-02 18:52:58Z kuzmich $
#
define('ADMIN_ZONE', true);
include_once '../init.php';
include 'header.php';
include_once '../include/curriculums.php';
if (isset($_REQUEST['school_year_id'])) {
    $school_year_id = intval($_REQUEST['school_year_id']);
} else {
    $school_year_id = 0;
}
if ($school_year_id == 0) {
    $school_years = get_school_years();
    ?>
<br />
<h2>Список годов</h2><br />
<table id="rounded-corner">
  <thead>
  <tr>
    <th class="rounded-left">Учебный год</th>
    <th>Текущий</th>
    <th>Начало</th>
    <th>Окончание</th>
    <th class="rounded-right">&nbsp;</th>
  <tr>
  </thead>
  <tbody>
<?php