Compare commits
2 Commits
79094a385a
...
c63df969c4
Author | SHA1 | Date |
---|---|---|
RomanGolienko | c63df969c4 | |
RomanGolienko | 26ee706cb9 |
|
@ -18,6 +18,19 @@ class attendancelog {
|
|||
$url = 'https://eios.mkgtu.ru/api.php?des=studentsByGrupp¶m1=' . $groupName . '¶m2=' . $educationForm;
|
||||
return json_decode(file_get_contents($url),1);
|
||||
}
|
||||
function getClassesByGroup($groupName,$educationForm)
|
||||
{
|
||||
$tmp = explode('-', $groupName);
|
||||
$groupName = trim($tmp[0]);
|
||||
$groupNumber = substr($tmp[1],0,2);
|
||||
$educationForm = urlencode($educationForm);
|
||||
$groupName = urlencode($groupName);
|
||||
$groupNumber = urlencode($groupNumber);
|
||||
$url = 'https://local.mkgtu.ru/raspisnew/api.php?des=raspis_grupp&name='. $groupName .'&number='. $groupNumber .'&fo=' . $educationForm;
|
||||
return json_decode(file_get_contents($url),1);
|
||||
//return $url;
|
||||
}
|
||||
|
||||
function getGroupNameByID($id) {
|
||||
$sql_search = 'SELECT sokr, fo FROM acs_grupp WHERE id='. $id .' ';
|
||||
return $this->DB->QUR_SEL($sql_search);
|
||||
|
@ -26,9 +39,19 @@ class attendancelog {
|
|||
{
|
||||
$des = ''; if(isset($_GET['des'])) $des = $_GET['des'];
|
||||
if ($des == 'show'){
|
||||
//получаем список студентов по группе
|
||||
//получаем список пар по имени группы
|
||||
// $current_group = $this->getGroupNamebyID($_GET['id']);
|
||||
// return $this->getStudentsByGroup($current_group[1]['sokr'], $current_group[1]['fo']);
|
||||
|
||||
|
||||
$current_group = $this->getGroupNamebyID($_GET['id']);
|
||||
return $this->getStudentsByGroup($current_group[1]['sokr'], $current_group[1]['fo']);
|
||||
$current_group_classes = $this->getClassesByGroup($current_group[1]['sokr'], $current_group[1]['fo']);
|
||||
$out = array();
|
||||
foreach ($current_group_classes['raspis'] as $class) {
|
||||
$out['info'][$class['week_name']][$class['day_name']][$class['time1']] = $class;
|
||||
$out['students'] = $this->getStudentsByGroup($current_group[1]['sokr'], $current_group[1]['fo']);
|
||||
}
|
||||
return $out;
|
||||
}
|
||||
}
|
||||
function HTML()
|
||||
|
@ -38,8 +61,8 @@ class attendancelog {
|
|||
$actionResult = $this->mainPageAction();
|
||||
//$html .= '<pre>'. print_r($groups,1) . '</pre>';
|
||||
//$html .= '<pre>'. print_r($actionResult,1) . '</pre>';
|
||||
$html .= '<pre>'. print_r($_GET,1) . '</pre>';
|
||||
// $html .= '<pre>'. print_r($_SESSION,1) . '</pre>';
|
||||
//$html .= '<pre>'. print_r($_GET,1) . '</pre>';
|
||||
//$html .= '<pre>'. print_r($_SESSION,1) . '</pre>';
|
||||
GLOBAL $smarty;
|
||||
$page = ''; if(isset($_GET['page'])) $page = $_GET['page'];
|
||||
$des = ''; if(isset($_GET['des'])) $des = $_GET['des'];
|
||||
|
|
|
@ -38,92 +38,68 @@
|
|||
<div class="widget-body">
|
||||
<div class="tabbable custom-tab">
|
||||
<ul class="nav nav-tabs">
|
||||
<li class="active"><a href="#tab_1_1" data-toggle="tab">Понедельник</a></li>
|
||||
<li class=""><a href="#tab_1_2" data-toggle="tab">Вторник</a></li>
|
||||
<li class=""><a href="#tab_1_3" data-toggle="tab">Среда</a></li>
|
||||
<li class=""><a href="#tab_1_4" data-toggle="tab">Четверг</a></li>
|
||||
<li class=""><a href="#tab_1_5" data-toggle="tab">Пятница</a></li>
|
||||
<li class=""><a href="#tab_1_6" data-toggle="tab">Суббота</a></li>
|
||||
<li class=""><a href="#tab_1_7" data-toggle="tab">Воскресенье</a></li>
|
||||
{foreach from=$actionResult.info key=key item=week}
|
||||
{if $key == 'Четная'}
|
||||
{foreach from=$week key=key item=day}
|
||||
<li><a href="#tab_1_{$key}" data-toggle="tab">{$key}</a></li>
|
||||
{/foreach}
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane active" id="tab_1_1">
|
||||
<p>I'm in Section 1.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_2">
|
||||
<p>Howdy, I'm in Section 2.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_3">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_4">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_5">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_6">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_7">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
{foreach from=$actionResult.info key=key item=week}
|
||||
{if $key == 'Четная'}
|
||||
{foreach from=$week key=key item=day}
|
||||
<div class="tab-pane active" id="tab_1_{$key}">
|
||||
<div class="accordion" id="accordion{$key}">
|
||||
{foreach from=$day key=key item=class}
|
||||
<div class="accordion-group">
|
||||
<div class="accordion-heading">
|
||||
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion{$day.day1}" href="#collapse_{$class.day1}-{$class.time1}">
|
||||
{$class.predmet}
|
||||
</a>
|
||||
</div>
|
||||
<div id="collapse_{$class.day1}-{$class.time1}" class="accordion-body collapse in">
|
||||
<div class="accordion-inner">
|
||||
<form action="" method="post">
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>ФИО</th>
|
||||
<th>Присутствие</th>
|
||||
<th>Примечание</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$actionResult.students.students key=key item=student}
|
||||
<tr>
|
||||
<td>{$key}</td>
|
||||
<td>{$student}</td>
|
||||
<td><input type="checkbox" name="" id="{$key}"></td>
|
||||
<td><input type="text" name="" id="" style="width: 90%"></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
<button type="submit" class="btn btn-success">Сохранить</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
||||
{/if}
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row-fluid">
|
||||
<div class="span9">
|
||||
<div class="widget blue">
|
||||
<div class="widget-title">
|
||||
<h4><i class="icon-reorder"></i></h4>
|
||||
<span class="tools"><a href="javascript:;" class="icon-chevron-down"></a></span>
|
||||
</div>
|
||||
<div class="widget-body">
|
||||
<table class="table table-striped table-bordered">
|
||||
<caption> Студенты группы {$groupName}</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Номер</th>
|
||||
<th>Имя</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$actionResult['students'] key=key item=name}
|
||||
<tr>
|
||||
<td>{$key +1 }</td>
|
||||
<td>{$name}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{else}
|
||||
<div class="row-fluid">
|
||||
<div class="span4">
|
||||
|
@ -157,11 +133,11 @@
|
|||
<tbody>
|
||||
{foreach from=$groups key=key item=group}
|
||||
{if $key != 0}
|
||||
<tr>
|
||||
<td><a href="/modul/attendancelog/main/show/{$group['id']}/">{$group.sokr}</a></td>
|
||||
<td>{$group['fo']}</td>
|
||||
<td>{$group['kurs']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="/modul/attendancelog/main/show/{$group['id']}/">{$group.sokr}</a></td>
|
||||
<td>{$group['fo']}</td>
|
||||
<td>{$group['kurs']}</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in New Issue