本文整理汇总了PHP中is_pengajar函数的典型用法代码示例。如果您正苦于以下问题:PHP is_pengajar函数的具体用法?PHP is_pengajar怎么用?PHP is_pengajar使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了is_pengajar函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: pp
function pp()
{
must_login();
if (is_pengajar()) {
# panggil colorbox
$html_js = load_comp_js(array(base_url('assets/comp/colorbox/jquery.colorbox-min.js'), base_url('assets/comp/colorbox/act-pengajar.js')));
$data['comp_js'] = $html_js;
$data['comp_css'] = load_comp_css(array(base_url('assets/comp/colorbox/colorbox.css')));
$data['pengajar'] = $this->pengajar_model->retrieve(get_sess_data('user', 'id'));
$data['pengajar_login'] = $this->login_model->retrieve(get_sess_data('login', 'id'));
$data['status_id'] = get_sess_data('user', 'status_id');
$this->twig->display('pp-pengajar.html', $data);
}
if (is_siswa()) {
$retrieve_siswa = $this->siswa_model->retrieve(get_sess_data('user', 'id'));
$retrieve_login = $this->login_model->retrieve(get_sess_data('login', 'id'));
$retrieve_all_kelas = $this->kelas_model->retrieve_all_siswa(10, 1, array('siswa_id' => $retrieve_siswa['id']));
$data['siswa'] = $retrieve_siswa;
$data['siswa_login'] = $retrieve_login;
$data['siswa_kelas'] = $retrieve_all_kelas;
$data['status_id'] = get_sess_data('user', 'status_id');
# panggil colorbox
$html_js = load_comp_js(array(base_url('assets/comp/colorbox/jquery.colorbox-min.js'), base_url('assets/comp/colorbox/act-siswa.js')));
$data['comp_js'] = $html_js;
$data['comp_css'] = load_comp_css(array(base_url('assets/comp/colorbox/colorbox.css')));
$data['show'] = !empty($_GET['show']) ? $_GET['show'] : '';
$this->twig->display('pp-siswa.html', $data);
}
}
示例2: pp
function pp()
{
must_login();
if (is_pengajar()) {
# panggil colorbox
$html_js = load_comp_js(array(base_url('assets/comp/colorbox/jquery.colorbox-min.js'), base_url('assets/comp/colorbox/act-pengajar.js')));
$data['comp_js'] = $html_js;
$data['comp_css'] = load_comp_css(array(base_url('assets/comp/colorbox/colorbox.css')));
$data['pengajar'] = $this->pengajar_model->retrieve(get_sess_data('user', 'id'));
$data['pengajar_login'] = $this->login_model->retrieve(get_sess_data('login', 'id'));
$data['status_id'] = get_sess_data('user', 'status_id');
$this->twig->display('pp-pengajar.html', $data);
}
}
示例3: search
function search()
{
must_login();
if (empty($_GET['q'])) {
redirect('welcome');
}
$q = (string) $_GET['q'];
$q = urldecode($q);
if (is_siswa()) {
$kelas_aktif = $this->siswa_kelas_aktif;
}
# cari siswa
$retrieve_all_siswa = $this->siswa_model->retrieve_all_filter($nis = '', $nama = $q, $jenis_kelamin = array(), $tahun_masuk = '', $tempat_lahir = '', $tgl_lahir = '', $bln_lahir = '', $thn_lahir = '', $alamat = '', $agama = array(), $kelas_id = array(), $status_id = is_admin() ? array() : array(1, 2, 3), $username = '', $page_no = 1, $pagination = false);
foreach ($retrieve_all_siswa as $key => &$val) {
$kelas_siswa = $this->kelas_model->retrieve_siswa(null, array('siswa_id' => $val['id'], 'aktif' => 1));
# kelas aktif
if (!empty($kelas_siswa) and $val['status_id'] != 3) {
$kelas = $this->kelas_model->retrieve($kelas_siswa['kelas_id']);
$val['kelas_aktif'] = $kelas;
}
$retrieve_all_siswa[$key] = $val;
}
# cari pengajar
$retrieve_all_pengajar = $this->pengajar_model->retrieve_all_filter($nip = '', $nama = $q, $jenis_kelamin = array(), $tempat_lahir = '', $tgl_lahir = '', $bln_lahir = '', $thn_lahir = '', $alamat = '', $status_id = is_admin() ? array() : array(1, 2), $username = '', $is_admin = '', $page_no = 1, $pagination = false);
# cari materi
$retrieve_all_materi = $this->materi_model->retrieve_all($no_of_records = 10, $page_no = 1, $pengajar_id = array(), $siswa_id = array(), $mapel_id = array(), $judul = $q, $konten = null, $tgl_posting = null, $publish = null, $kelas_id = array(), $type = array(), $pagination = false);
# cari tugas
$retrieve_all_tugas = $this->tugas_model->retrieve_all($no_of_records = 10, $page_no = 1, $mapel_id = array(), $pengajar_id = is_pengajar() ? array(get_sess_data('user', 'id')) : array(), $type_id = array(), $kelas_id = is_siswa() ? array($kelas_aktif['kelas_id']) : array(), $judul = $q, $info = null, $aktif = array(), $pagination = false);
# cari pesan
$retrieve_all_pesan = $this->msg_model->retrieve_all(10, $page_no, get_sess_data('login', 'id'), array('content' => $q), false);
foreach ($retrieve_all_pesan as $key => &$val) {
$retrieve_all_pesan[$key] = $this->format_msg($val);
}
$results = array('siswa' => $retrieve_all_siswa, 'pengajar' => $retrieve_all_pengajar, 'materi' => $retrieve_all_materi, 'tugas' => $retrieve_all_tugas, 'pesan' => $retrieve_all_pesan);
$data['results'] = $results;
$data['keyword'] = $q;
if (is_admin()) {
# panggil colorbox
$html_js = load_comp_js(array(base_url('assets/comp/colorbox/jquery.colorbox-min.js'), base_url('assets/comp/colorbox/act-siswa.js'), base_url('assets/comp/colorbox/act-pengajar.js')));
$data['comp_js'] = $html_js;
$data['comp_css'] = load_comp_css(array(base_url('assets/comp/colorbox/colorbox.css')));
}
$this->twig->display('search-results.html', $data);
}
示例4: block_content
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>Materi</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("materi");
echo "\n\n <div class=\"bs-callout bs-callout-info\">\n ";
// line 16
if (is_siswa() == false) {
// line 17
echo " <div class=\"btn-group pull-right\" style=\"margin-top:-5px;\">\n ";
// line 18
echo anchor("materi/add/tertulis", "Tambah Materi Tertulis", array("class" => "btn btn-primary"));
echo "\n ";
// line 19
echo anchor("materi/add/file", "Tambah Materi File", array("class" => "btn btn-primary"));
echo "\n </div>\n ";
}
// line 22
echo " <b><a class=\"as-link\" data-toggle=\"collapse\" data-target=\"#form-filter\"><i class=\"icon-search\" style=\"line-height: 0px;\"></i> PARAMETER PENCARIAN</a></b>\n\n <div id=\"form-filter\" class=\"collapse\" style=\"margin-top: 5px;\">\n ";
// line 25
echo form_open("materi");
echo "\n <table class=\"table table-condensed\">\n <tr>\n <th style=\"border-top: none;\">Mapel</th>\n <td style=\"border-top: none;\">\n <ul class=\"unstyled inline\" style=\"margin-left: -5px;\">\n ";
// line 31
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["mapel"]) ? $context["mapel"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["m"]) {
// line 32
echo " <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"mapel_id[]\" value=\"";
// line 34
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "id"), "html", null, true);
echo "\" ";
echo twig_escape_filter($this->env, set_checkbox("mapel_id[]", $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "id"), !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "mapel_id")) && in_array($this->getAttribute(isset($context["m"]) ? $context["m"] : null, "id"), $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "mapel_id")) ? true : ""), "html", null, true);
echo "> ";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "nama"), "html", null, true);
echo "\n </label>\n </li>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['m'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 38
echo " </ul>\n </td>\n </tr>\n <tr>\n <th>Kelas</th>\n <td>\n <ul class=\"unstyled inline\" style=\"margin-left: -5px;\">\n ";
// line 45
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["kelas"]) ? $context["kelas"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["k"]) {
// line 46
echo " <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"kelas_id[]\" value=\"";
// line 48
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "id"), "html", null, true);
echo "\" ";
echo twig_escape_filter($this->env, set_checkbox("kelas_id[]", $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "id"), !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "kelas_id")) && in_array($this->getAttribute(isset($context["k"]) ? $context["k"] : null, "id"), $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "kelas_id")) ? true : ""), "html", null, true);
echo "> ";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "nama"), "html", null, true);
echo "\n </label>\n </li>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['k'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 52
echo " </ul>\n </td>\n </tr>\n <tr>\n <th>Tipe</th>\n <td>\n <ul class=\"unstyled inline\" style=\"margin-left: -5px;\">\n <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"type[]\" value=\"tertulis\" ";
// line 61
echo twig_escape_filter($this->env, set_checkbox("type[]", "tertulis", !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) && in_array("tertulis", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) ? true : ""), "html", null, true);
echo "> Tertulis\n </label>\n </li>\n <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"type[]\" value=\"file\" ";
// line 66
echo twig_escape_filter($this->env, set_checkbox("type[]", "file", !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) && in_array("file", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) ? true : ""), "html", null, true);
echo "> File\n </label>\n </li>\n </ul>\n </td>\n </tr>\n <tr>\n <th width=\"15%\">Judul</th>\n <td>\n <input type=\"text\" name=\"judul\" class=\"span4\" value=\"";
// line 75
echo twig_escape_filter($this->env, set_value("judul", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "judul")), "html", null, true);
echo "\">\n </td>\n </tr>\n <tr>\n <th>Konten</th>\n <td>\n <input type=\"text\" name=\"konten\" class=\"span5\" value=\"";
// line 81
echo twig_escape_filter($this->env, set_value("konten", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "konten")), "html", null, true);
echo "\">\n </td>\n </tr>\n <tr>\n <th>Pembuat</th>\n <td>\n <input type=\"text\" name=\"pembuat\" class=\"span4\" value=\"";
// line 87
echo twig_escape_filter($this->env, set_value("pembuat", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "pembuat")), "html", null, true);
echo "\">\n </td>\n </tr>\n <tr>\n <td></td>\n <td>\n <button type=\"submit\" class=\"btn btn-primary\">Filter</button>\n </td>\n </tr>\n </table>\n </form>\n </div>\n\n </div>\n\n <br>\n\n <table class=\"table table-striped\">\n <thead>\n <tr>\n <th width=\"7%\">ID</th>\n <th>Informasi Materi</th>\n <th width=\"15%\">Tipe Materi</th>\n <th width=\"15%\"></th>\n </tr>\n </thead>\n <tbody>\n ";
// line 114
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["materi"]) ? $context["materi"] : null);
foreach ($context['_seq'] as $context["no"] => $context["m"]) {
// line 115
echo "\n ";
// line 116
if (is_admin() == true) {
// line 117
echo " ";
$context["action_edit"] = true;
// line 118
echo " ";
$context["action_delete"] = true;
// line 119
echo " ";
} elseif (is_pengajar() == true) {
// line 120
echo " ";
if ($this->getAttribute(isset($context["m"]) ? $context["m"] : null, "pengajar_id") == get_sess_data("user", "id")) {
// line 121
echo " ";
$context["action_edit"] = true;
// line 122
//.........这里部分代码省略.........
开发者ID:Raniratna,项目名称:new_elearning,代码行数:101,代码来源:7167ed078456c7dacce5699c3c84c4bbedc1d2c03ce6f2834231bba6a50b.php
示例5: reset_jawaban
function reset_jawaban($tugas_id, $siswa_id)
{
# jika pengajar atau admin
if (is_pengajar() or is_admin()) {
$tugas_id = (int) $tugas_id;
$tugas = $this->tugas_model->retrieve($tugas_id);
if (empty($tugas)) {
redirect('tugas');
}
$siswa = $this->siswa_model->retrieve($siswa_id);
if (empty($siswa)) {
redirect('tugas');
}
# hapus history
$history_id = 'history-mengerjakan-' . $siswa['id'] . '-' . $tugas['id'];
delete_field($history_id);
# hapus nilai
$retrieve_nilai = $this->tugas_model->retrieve_nilai(null, $tugas['id'], $siswa['id']);
$this->tugas_model->delete_nilai($retrieve_nilai['id']);
$this->session->set_flashdata('tugas', get_alert('success', 'Siswa berhasil dianggap belum mengerjakan.'));
redirect('tugas/nilai/' . $tugas['id']);
} else {
$this->session->set_flashdata('tugas', get_alert('warning', 'Akses ditolak.'));
redirect('tugas');
}
}
示例6: reset_jawaban
function reset_jawaban($tugas_id, $siswa_id)
{
# jika pengajar atau admin
if (is_pengajar() or is_admin()) {
$tugas_id = (int) $tugas_id;
$tugas = $this->tugas_model->retrieve($tugas_id);
if (empty($tugas)) {
redirect('tugas');
}
$siswa = $this->siswa_model->retrieve($siswa_id);
if (empty($siswa)) {
redirect('tugas');
}
# hapus history
$history_id = 'history-mengerjakan-' . $siswa['id'] . '-' . $tugas['id'];
$history = retrieve_field($history_id);
$history_value = json_decode($history['value'], 1);
delete_field($history_id);
# hapus nilai
$retrieve_nilai = $this->tugas_model->retrieve_nilai(null, $tugas['id'], $siswa['id']);
$this->tugas_model->delete_nilai($retrieve_nilai['id']);
$this->session->set_flashdata('tugas', get_alert('success', 'Siswa berhasil dianggap belum mengerjakan.'));
if ($tugas['type_id'] == 3) {
redirect('tugas/nilai/' . $tugas['id']);
} else {
# jika tugas upload, dihapus juga file uploadnya biar g menuh-menuhin space
if ($tugas['type_id'] == 1 && is_file(get_path_file($history_value['file_name']))) {
@unlink(get_path_file($history_value['file_name']));
}
redirect('tugas/koreksi/' . $tugas['id']);
}
} else {
$this->session->set_flashdata('tugas', get_alert('warning', 'Akses ditolak.'));
redirect('tugas');
}
}
示例7: delete
function delete($segment_3 = '')
{
# yang bisa edit pengumuman adalah pengajar / admin
if (!is_pengajar() and !is_admin()) {
redirect('pengumuman/index');
}
$id = (int) $segment_3;
$pengumuman = $this->pengumuman_model->retrieve(array('id' => $id));
if (empty($pengumuman)) {
$this->session->set_flashdata('pengumuman', get_alert('warning', 'Pengumuman tidak ditemukan.'));
redirect('pengumuman/index/1');
}
$allow_action = $this->get_allow_action($pengumuman);
if (!in_array('delete', $allow_action)) {
$this->session->set_flashdata('pengumuman', get_alert('warning', 'Akses ditolak.'));
redirect('pengumuman/index/1');
}
$this->pengumuman_model->delete($pengumuman['id']);
$this->session->set_flashdata('pengumuman', get_alert('success', 'Pengumuman berhasil dihapus.'));
redirect('pengumuman/index/1');
}
示例8: delete
function delete($segment_3 = '', $segment_4 = '')
{
# versi 1.2 siswa tidak bisa tambah,edit,hapus materi
if (is_siswa()) {
redirect('materi');
}
$materi_id = (int) $segment_3;
$uri_back = (string) $segment_4;
if (empty($uri_back)) {
$uri_back = site_url('materi');
} else {
$uri_back = deurl_redirect($uri_back);
}
$materi = $this->materi_model->retrieve($materi_id);
if (empty($materi)) {
redirect($uri_back);
}
# cek kepemilikan
if (is_pengajar() and $materi['pengajar_id'] != get_sess_data('user', 'id')) {
redirect($uri_back);
}
if (is_siswa() and $materi['siswa_id'] != get_sess_data('user', 'id')) {
redirect($uri_back);
}
# jika file
if (!empty($materi['file']) and is_file(get_path_file($materi['file']))) {
unlink(get_path_file($materi['file']));
}
$this->materi_model->delete($materi['id']);
$this->session->set_flashdata('materi', get_alert('warning', 'Materi berhasil dihapus.'));
redirect($uri_back);
}
示例9: doDisplay
protected function doDisplay(array $context, array $blocks = array())
{
// line 1
echo "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <title>";
// line 6
$this->displayBlock('title', $context, $blocks);
echo "</title>\n <link type=\"text/css\" href=\"";
// line 7
echo twig_escape_filter($this->env, isset($context["base_url_theme"]) ? $context["base_url_theme"] : null, "html", null, true);
echo "bootstrap/css/bootstrap.min.css\" rel=\"stylesheet\">\n <link type=\"text/css\" href=\"";
// line 8
echo twig_escape_filter($this->env, isset($context["base_url_theme"]) ? $context["base_url_theme"] : null, "html", null, true);
echo "bootstrap/css/bootstrap-responsive.min.css\" rel=\"stylesheet\">\n <link type=\"text/css\" href=\"";
// line 9
echo twig_escape_filter($this->env, isset($context["base_url_theme"]) ? $context["base_url_theme"] : null, "html", null, true);
echo "css/theme.css\" rel=\"stylesheet\">\n <link type=\"text/css\" href=\"";
// line 10
echo twig_escape_filter($this->env, isset($context["base_url_theme"]) ? $context["base_url_theme"] : null, "html", null, true);
echo "images/icons/css/font-awesome.css\" rel=\"stylesheet\">\n ";
// line 11
$this->displayBlock('css', $context, $blocks);
// line 12
echo " ";
echo isset($context["comp_css"]) ? $context["comp_css"] : null;
echo "\n <link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"";
// line 13
echo twig_escape_filter($this->env, isset($context["favicon_url"]) ? $context["favicon_url"] : null, "html", null, true);
echo "\">\n </head>\n <body>\n <div class=\"navbar navbar-fixed-top\">\n <div class=\"navbar-inner\">\n <div class=\"container\">\n <a class=\"btn btn-navbar\" data-toggle=\"collapse\" data-target=\".navbar-inverse-collapse\">\n <i class=\"icon-reorder shaded\"></i>\n </a>\n <a class=\"brand\" href=\"";
// line 22
echo twig_escape_filter($this->env, isset($context["site_url"]) ? $context["site_url"] : null, "html", null, true);
echo "\">\n <img src=\"";
// line 23
echo twig_escape_filter($this->env, isset($context["logo_url_medium"]) ? $context["logo_url_medium"] : null, "html", null, true);
echo "\"> ";
echo twig_escape_filter($this->env, isset($context["site_name"]) ? $context["site_name"] : null, "html", null, true);
echo "\n </a>\n <div class=\"nav-collapse collapse navbar-inverse-collapse\">\n <form class=\"navbar-search pull-left input-append\" method=\"get\" action=\"";
// line 26
echo twig_escape_filter($this->env, site_url("welcome/search"), "html", null, true);
echo "\">\n <input type=\"text\" class=\"span3\" name=\"q\">\n <button class=\"btn\" type=\"submit\">\n <i class=\"icon-search\"></i>\n </button>\n </form>\n <ul class=\"nav pull-right\">\n <li class=\"nav-user dropdown\"><a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n ";
// line 34
echo twig_escape_filter($this->env, nama_panggilan(get_sess_data("user", "nama")), "html", null, true);
echo "\n\n <img src=\"";
// line 36
echo twig_escape_filter($this->env, get_url_image_pengajar(get_sess_data("user", "foto"), "medium", get_sess_data("user", "jenis_kelamin")), "html", null, true);
echo "\" class=\"nav-avatar img-polaroid\" />\n\n <b class=\"caret\"></b></a>\n <ul class=\"dropdown-menu\">\n ";
// line 40
if (is_admin()) {
// line 41
echo " <li>";
echo anchor("pengajar/detail/" . get_sess_data("user", "status_id") . "/" . get_sess_data("user", "id"), "Detail Profil", array("title" => "Detail Profil"));
echo "</li>\n ";
}
// line 43
echo "\n ";
// line 44
if (is_pengajar()) {
// line 45
echo " <li>";
echo anchor("login/pp", "Profil & Akun Login");
echo "</li>\n ";
}
// line 47
echo "\n ";
// line 48
if (is_siswa()) {
// line 49
echo " <li>";
echo anchor("login/pp", "Profil & Akun Login");
echo "</li>\n ";
}
// line 51
echo "\n <li><a href=\"";
// line 52
echo twig_escape_filter($this->env, site_url("login/logout"), "html", null, true);
echo "\">Logout</a></li>\n </ul>\n </li>\n </ul>\n </div>\n <!-- /.nav-collapse -->\n </div>\n </div>\n <!-- /navbar-inner -->\n </div>\n\n <!-- /navbar -->\n <div class=\"wrapper\">\n <div class=\"container\">\n <div class=\"row\">\n <div class=\"span3\">\n <div class=\"sidebar\">\n ";
// line 69
if (is_admin()) {
// line 70
echo " <ul class=\"widget widget-menu unstyled\">\n <li><a href=\"";
// line 71
echo twig_escape_filter($this->env, site_url(), "html", null, true);
echo "\"><i class=\"menu-icon icon-home\"></i>Beranda</a></li>\n <li><a href=\"";
// line 72
echo twig_escape_filter($this->env, site_url("pengumuman"), "html", null, true);
echo "\"><i class=\"menu-icon icon-bullhorn\"></i>Pengumuman</a></li>\n <li><a href=\"";
// line 73
echo twig_escape_filter($this->env, site_url("message"), "html", null, true);
echo "\"><i class=\"menu-icon icon-comments\"></i>Pesan <span id=\"count-new-msg\"></span></a></li>\n </ul>\n\n <ul class=\"widget widget-menu unstyled\">\n <li><a href=\"";
// line 77
echo twig_escape_filter($this->env, site_url("siswa"), "html", null, true);
echo "\"><i class=\"menu-icon icon-group\"></i>Siswa </a></li>\n <li><a href=\"";
// line 78
echo twig_escape_filter($this->env, site_url("pengajar"), "html", null, true);
echo "\"><i class=\"menu-icon icon-user\"></i>Pengajar </a></li>\n </ul>\n\n <ul class=\"widget widget-menu unstyled\">\n <li><a href=\"";
// line 82
echo twig_escape_filter($this->env, site_url("tugas?clear_filter=true"), "html", null, true);
echo "\"><i class=\"menu-icon icon-tasks\"></i>Tugas </a></li>\n <li><a href=\"";
// line 83
echo twig_escape_filter($this->env, site_url("materi?clear_filter=true"), "html", null, true);
echo "\"><i class=\"menu-icon icon-book\"></i>Materi </a></li>\n </ul>\n\n <ul class=\"widget widget-menu unstyled\">\n <li><a href=\"";
//.........这里部分代码省略.........
开发者ID:etofia,项目名称:new_elearning,代码行数:101,代码来源:1d17b46455dd2185ef348b74c3dd09cbd34f19d541653c5de5b049543300.php
示例10: block_content
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>Tugas</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("tugas");
echo "\n\n <div class=\"bs-callout bs-callout-info\">\n ";
// line 16
if (is_siswa() == false) {
// line 17
echo " <div class=\"btn-group pull-right\" style=\"margin-top:-5px;\">\n ";
// line 18
echo anchor("tugas/add/3", "Tambah Tugas Ganda", array("class" => "btn btn-primary"));
echo "\n ";
// line 19
echo anchor("tugas/add/2", "Tambah Tugas Essay", array("class" => "btn btn-primary"));
echo "\n ";
// line 20
echo anchor("tugas/add/1", "Tambah Tugas Upload", array("class" => "btn btn-primary"));
echo "\n </div>\n ";
}
// line 23
echo " <b><a class=\"as-link\" data-toggle=\"collapse\" data-target=\"#form-filter\"><i class=\"icon-search\" style=\"line-height: 0px;\"></i> Filter</a></b>\n\n <div id=\"form-filter\" class=\"collapse\" style=\"margin-top: 5px;\">\n ";
// line 26
echo form_open("tugas");
echo "\n <table class=\"table table-condensed\">\n <tr>\n <th style=\"border-top: none;\">Mapel</th>\n <td style=\"border-top: none;\">\n <ul class=\"unstyled inline\" style=\"margin-left: -5px;\">\n ";
// line 32
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["mapel"]) ? $context["mapel"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["m"]) {
// line 33
echo " <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"mapel_id[]\" value=\"";
// line 35
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "id"), "html", null, true);
echo "\" ";
echo twig_escape_filter($this->env, set_checkbox("mapel_id[]", $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "id"), !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "mapel_id")) && in_array($this->getAttribute(isset($context["m"]) ? $context["m"] : null, "id"), $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "mapel_id")) ? true : ""), "html", null, true);
echo "> ";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "nama"), "html", null, true);
echo "\n </label>\n </li>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['m'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 39
echo " </ul>\n </td>\n </tr>\n ";
// line 42
if (is_siswa() == false) {
// line 43
echo " <tr>\n <th>Kelas</th>\n <td>\n <ul class=\"unstyled inline\" style=\"margin-left: -5px;\">\n ";
// line 47
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["kelas"]) ? $context["kelas"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["k"]) {
// line 48
echo " <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"kelas_id[]\" value=\"";
// line 50
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "id"), "html", null, true);
echo "\" ";
echo twig_escape_filter($this->env, set_checkbox("kelas_id[]", $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "id"), !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "kelas_id")) && in_array($this->getAttribute(isset($context["k"]) ? $context["k"] : null, "id"), $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "kelas_id")) ? true : ""), "html", null, true);
echo "> ";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "nama"), "html", null, true);
echo "\n </label>\n </li>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['k'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 54
echo " </ul>\n </td>\n </tr>\n ";
}
// line 58
echo " <tr>\n <th>Tipe</th>\n <td>\n <ul class=\"unstyled inline\" style=\"margin-left: -5px;\">\n <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"type[]\" value=\"3\" ";
// line 64
echo twig_escape_filter($this->env, set_checkbox("type[]", "3", !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) && in_array("3", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) ? true : ""), "html", null, true);
echo "> Ganda\n </label>\n </li>\n <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"type[]\" value=\"2\" ";
// line 69
echo twig_escape_filter($this->env, set_checkbox("type[]", "2", !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) && in_array("2", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) ? true : ""), "html", null, true);
echo "> Essay\n </label>\n </li>\n <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"type[]\" value=\"1\" ";
// line 74
echo twig_escape_filter($this->env, set_checkbox("type[]", "1", !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) && in_array("1", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "type")) ? true : ""), "html", null, true);
echo "> Upload\n </label>\n </li>\n </ul>\n </td>\n </tr>\n <tr>\n <th width=\"15%\">Judul</th>\n <td>\n <input type=\"text\" name=\"judul\" class=\"span4\" value=\"";
// line 83
echo twig_escape_filter($this->env, set_value("judul", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "judul")), "html", null, true);
echo "\">\n </td>\n </tr>\n <tr>\n <th>Info</th>\n <td>\n <input type=\"text\" name=\"info\" class=\"span5\" value=\"";
// line 89
echo twig_escape_filter($this->env, set_value("info", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "info")), "html", null, true);
echo "\">\n </td>\n </tr>\n ";
// line 92
if (is_pengajar() == false) {
// line 93
echo " <tr>\n <th>Pembuat</th>\n <td>\n <input type=\"text\" name=\"pembuat\" class=\"span4\" value=\"";
// line 96
echo twig_escape_filter($this->env, set_value("pembuat", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "pembuat")), "html", null, true);
echo "\">\n </td>\n </tr>\n ";
}
// line 100
echo " <tr>\n <th>Status</th>\n <td>\n <ul class=\"unstyled inline\" style=\"margin-left: -5px;\">\n <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"status[]\" value=\"1\" ";
// line 106
echo twig_escape_filter($this->env, set_checkbox("status[]", "1", !twig_test_empty($this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "status")) && in_array("1", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "status")) ? true : ""), "html", null, true);
echo "> Terbit\n </label>\n </li>\n <li>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"status[]\" value=\"0\" ";
// line 111
//.........这里部分代码省略.........
开发者ID:unregister,项目名称:new_elearning,代码行数:101,代码来源:15a290914e04874404a546e9c3097768976d6925efc804ad62a129b0e746.php
示例11: get_sess_data
/**
* Method untuk mendapatkan data session
*
* @param string $key1
* @param string $key2
* @return array
*/
function get_sess_data($key1, $key2)
{
$CI =& get_instance();
$CI->load->library('session');
$sess_data = $CI->session->userdata('login_' . APP_PREFIX);
if (!empty($sess_data)) {
$type = '';
if (is_admin()) {
$type = 'admin';
}
if (is_pengajar()) {
$type = 'pengajar';
}
if (is_siswa()) {
$type = 'siswa';
}
if (!empty($type)) {
return $sess_data[$type][$key1][$key2];
}
}
}
示例12: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<div class=\"btn-controls\">\n <div class=\"btn-box-row row-fluid\">\n <div class=\"span12\">\n <div class=\"widget-usage\" style=\"padding: 10px 15px;\">\n <small class=\"pull-right\">";
// line 8
echo twig_escape_filter($this->env, tgl_indo(date("Y-m-d")), "html", null, true);
echo ", IP ";
echo twig_escape_filter($this->env, get_ip(), "html", null, true);
echo "</small>\n Selamat datang di <b>E-learning ";
// line 9
echo twig_escape_filter($this->env, get_pengaturan("nama-sekolah", "value"), "html", null, true);
echo "</b>\n <br>\n <i class=\"icon icon-map-marker\"></i> ";
// line 11
echo twig_escape_filter($this->env, get_pengaturan("alamat", "value"), "html", null, true);
echo "\n ";
// line 12
if (!twig_test_empty(get_pengaturan("telp", "value"))) {
// line 13
echo " <i class=\"icon icon-phone\"></i> ";
echo twig_escape_filter($this->env, get_pengaturan("telp", "value"), "html", null, true);
echo "\n ";
}
// line 15
echo " </div>\n </div>\n </div>\n <br>\n\n ";
// line 20
if (is_admin()) {
// line 21
echo " <div class=\"btn-box-row row-fluid\">\n <a href=\"";
// line 22
echo twig_escape_filter($this->env, site_url("siswa/index/1"), "html", null, true);
echo "\" class=\"btn-box big span3\">\n <i class=\"icon-group\"></i><b>";
// line 23
echo twig_escape_filter($this->env, isset($context["jml_siswa"]) ? $context["jml_siswa"] : null, "html", null, true);
echo "</b>\n <p class=\"text-muted\">Siswa</p>\n </a>\n <a href=\"";
// line 26
echo twig_escape_filter($this->env, site_url("pengajar/index/1"), "html", null, true);
echo "\" class=\"btn-box big span3\">\n <i class=\"icon-user\"></i><b>";
// line 27
echo twig_escape_filter($this->env, isset($context["jml_pengajar"]) ? $context["jml_pengajar"] : null, "html", null, true);
echo "</b>\n <p class=\"text-muted\">Pengajar</p>\n </a>\n <a href=\"";
// line 30
echo twig_escape_filter($this->env, site_url("siswa/index/0"), "html", null, true);
echo "\" class=\"btn-box big span3\">\n <i class=\"icon-group\"></i><b>";
// line 31
echo twig_escape_filter($this->env, isset($context["jml_siswa_pending"]) ? $context["jml_siswa_pending"] : null, "html", null, true);
echo "</b>\n <p class=\"text-muted\">Pending siswa</p>\n </a>\n <a href=\"";
// line 34
echo twig_escape_filter($this->env, site_url("pengajar/index/0"), "html", null, true);
echo "\" class=\"btn-box big span3\">\n <i class=\"icon-user\"></i><b>";
// line 35
echo twig_escape_filter($this->env, isset($context["jml_pengajar_pending"]) ? $context["jml_pengajar_pending"] : null, "html", null, true);
echo "</b>\n <p class=\"text-muted\">Pending pengajar</p>\n </a>\n </div>\n\n <div class=\"btn-box-row row-fluid\">\n <div class=\"span6\">\n <div class=\"well well-small\" style=\"box-shadow: none;background-color: #FFF;\">\n <b><i class=\"icon-bullhorn\"></i> Pengumuman</b>\n <table class=\"table table-striped table-condensed\">\n ";
// line 45
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["pengumuman"]) ? $context["pengumuman"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["p"]) {
// line 46
echo " <tr>\n <td>";
// line 47
echo anchor("pengumuman/detail/" . $this->getAttribute(isset($context["p"]) ? $context["p"] : null, "id"), $this->getAttribute(isset($context["p"]) ? $context["p"] : null, "judul"));
echo "</td>\n </tr>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['p'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 50
echo " </table>\n </div>\n </div>\n \n ";
}
// line 55
echo "\n ";
// line 56
if (is_pengajar()) {
// line 57
echo " <div class=\"btn-box-row row-fluid\">\n <div class=\"span6\">\n <div class=\"widget-usage\" style=\"padding: 10px 15px;\">\n <b><i class=\"icon-bullhorn\"></i> Pengumuman</b>\n <table class=\"table table-striped table-condensed\">\n ";
// line 62
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["pengumuman"]) ? $context["pengumuman"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["p"]) {
// line 63
echo " <tr>\n <td>";
// line 64
echo anchor("pengumuman/detail/" . $this->getAttribute(isset($context["p"]) ? $context["p"] : null, "id"), $this->getAttribute(isset($context["p"]) ? $context["p"] : null, "judul"));
echo "</td>\n </tr>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['p'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 67
echo " </table>\n </div>\n </div>\n <div class=\"span6\">\n <div class=\"widget-usage\" style=\"padding: 10px 15px;\">\n <b>Peraturan E-learning : </b><br>\n ";
// line 73
echo get_pengaturan("peraturan-elearning", "value");
echo "\n </div>\n </div>\n </div>\n ";
}
// line 78
echo "\n ";
// line 79
if (is_siswa()) {
// line 80
echo " <div class=\"btn-box-row row-fluid\">\n <div class=\"span6\">\n\n <div class=\"widget-usage\" style=\"padding: 10px 15px; margin-bottom: 20px;\">\n <b>Tugas terbaru</b>\n <table class=\"table table-striped table-condensed\">\n ";
// line 86
//.........这里部分代码省略.........
开发者ID:bismar71,项目名称:naonwe,代码行数:101,代码来源:bd087f7d7ce830ba114e3d5059d5d345ccf707b1b3ae165ebebcc76f7e21.php
示例13: block_content
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>Data Pengajar</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("pengajar");
echo "\n\n ";
// line 15
if (is_admin() == true) {
// line 16
echo " <div class=\"row-fluid\">\n <div class=\"span8\">\n <a href=\"";
// line 18
echo twig_escape_filter($this->env, site_url("pengajar/add/" . (isset($context["status_id"]) ? $context["status_id"] : null)), "html", null, true);
echo "\" class=\"btn btn-primary\">Tambah Pengajar</a>\n </div>\n\n <div class=\"span4\">\n <div class=\"btn-group\">\n ";
// line 23
echo anchor("pengajar/index/1", "Aktif", array("class" => (isset($context["status_id"]) ? $context["status_id"] : null) == 1 ? "btn btn-info" : "btn btn-default"));
echo "\n ";
// line 24
echo anchor("pengajar/index/0", "Pending", array("class" => (isset($context["status_id"]) ? $context["status_id"] : null) == 0 ? "btn btn-info" : "btn btn-default"));
echo "\n ";
// line 25
echo anchor("pengajar/index/2", "Blocking", array("class" => (isset($context["status_id"]) ? $context["status_id"] : null) == 2 ? "btn btn-info" : "btn btn-default"));
echo "\n ";
// line 26
echo anchor("pengajar/filter", "<i class=\"icon-search\" style=\"line-height: 0px;\"></i> Filter", array("class" => "btn btn-default"));
echo "\n </div>\n </div>\n </div>\n ";
} elseif (is_pengajar() == true) {
// line 31
echo " <div class=\"bs-callout bs-callout-info\">\n <b><a class=\"as-link\" data-toggle=\"collapse\" data-target=\"#form-filter\"><i class=\"icon-search\" style=\"line-height: 0px;\"></i> Filter</a></b>\n <div id=\"form-filter\" class=\"collapse\" style=\"margin-top: 5px;\">\n ";
// line 34
echo form_open("pengajar/filter");
echo "\n <table class=\"table table-condensed\" id=\"form-search\">\n <tr>\n <th width=\"20%\" style=\"border-top:none;\">NIP</th>\n <td style=\"border-top:none;\">\n <input type=\"text\" name=\"nip\" class=\"span2\" style=\"margin-bottom:0px;\" value=\"";
// line 39
echo twig_escape_filter($this->env, set_value("nip", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "nip", array(), "any", true, true) ? $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "nip") : ""), "html", null, true);
echo "\">\n </td>\n </tr>\n <tr>\n <th>Nama</th>\n <td>\n <input type=\"text\" name=\"nama\" class=\"span4\" style=\"margin-bottom:0px;\" value=\"";
// line 45
echo twig_escape_filter($this->env, set_value("nama", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "nama", array(), "any", true, true) ? $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "nama") : ""), "html", null, true);
echo "\">\n </td>\n </tr>\n <tr>\n <th>Jenis Kelamin</th>\n <td>\n <p style=\"margin-top:0px; margin-bottom:5px;\">\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"jenis_kelamin[]\" value=\"Laki-laki\" ";
// line 53
echo twig_escape_filter($this->env, set_checkbox("jenis_kelamin[]", "Laki-laki", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "jenis_kelamin", array(), "any", true, true) && twig_in_filter("Laki-laki", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "jenis_kelamin")) ? true : false), "html", null, true);
echo "> Laki-laki\n </label>\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" name=\"jenis_kelamin[]\" value=\"Perempuan\" ";
// line 56
echo twig_escape_filter($this->env, set_checkbox("jenis_kelamin[]", "Perempuan", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "jenis_kelamin", array(), "any", true, true) && twig_in_filter("Perempuan", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "jenis_kelamin")) ? true : false), "html", null, true);
echo "> Perempuan\n </label>\n </p>\n </td>\n <tr>\n <tr>\n <th>Tempat Lahir</th>\n <td>\n <input type=\"text\" name=\"tempat_lahir\" class=\"span3\" style=\"margin-bottom:0px;\" value=\"";
// line 64
echo twig_escape_filter($this->env, set_value("tempat_lahir", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "tempat_lahir", array(), "any", true, true) ? $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "tempat_lahir") : ""), "html", null, true);
echo "\">\n </td>\n <tr>\n <tr>\n <th>Tanggal Lahir</th>\n <td>\n <select class=\"span2\" style=\"width: 10%;\" name=\"tgl_lahir\">\n <option value=\"\">Tgl</option>\n ";
// line 72
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(range(1, 31));
foreach ($context['_seq'] as $context["_key"] => $context["i"]) {
// line 73
echo " <option value=\"";
echo twig_escape_filter($this->env, isset($context["i"]) ? $context["i"] : null, "html", null, true);
echo "\" ";
echo twig_escape_filter($this->env, set_select("tgl_lahir", isset($context["i"]) ? $context["i"] : null, $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "tgl_lahir", array(), "any", true, true) && (isset($context["i"]) ? $context["i"] : null) == $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "tgl_lahir") ? true : false), "html", null, true);
echo ">";
echo twig_escape_filter($this->env, isset($context["i"]) ? $context["i"] : null, "html", null, true);
echo "</option>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['i'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 75
echo " </select>\n <select class=\"span2\" style=\"width: 17%;\" name=\"bln_lahir\">\n <option value=\"\">Bulan</option>\n ";
// line 78
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(range(1, 12));
foreach ($context['_seq'] as $context["_key"] => $context["i"]) {
// line 79
echo " <option value=\"";
echo twig_escape_filter($this->env, isset($context["i"]) ? $context["i"] : null, "html", null, true);
echo "\" ";
echo twig_escape_filter($this->env, set_select("bln_lahir", isset($context["i"]) ? $context["i"] : null, $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "bln_lahir", array(), "any", true, true) && (isset($context["i"]) ? $context["i"] : null) == $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "bln_lahir") ? true : false), "html", null, true);
echo ">";
echo twig_escape_filter($this->env, get_indo_bulan(isset($context["i"]) ? $context["i"] : null), "html", null, true);
echo "</option>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['i'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 81
echo " </select>\n <input type=\"text\" name=\"thn_lahir\" class=\"span1\" maxlength=\"4\" value=\"";
// line 82
echo twig_escape_filter($this->env, set_value("thn_lahir", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "thn_lahir", array(), "any", true, true) ? $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "thn_lahir") : ""), "html", null, true);
echo "\" placeholder=\"Tahun\">\n </td>\n <tr>\n <tr>\n <th>Alamat</th>\n <td>\n <input type=\"text\" name=\"alamat\" class=\"span4\" style=\"margin-bottom:0px;\" value=\"";
// line 88
echo twig_escape_filter($this->env, set_value("alamat", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "alamat", array(), "any", true, true) ? $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "alamat") : ""), "html", null, true);
echo "\">\n </td>\n <tr>\n <tr>\n <th>Opsi</th>\n <td>\n <label><input type=\"checkbox\" name=\"is_admin\" value=\"1\" style=\"margin-top:-2px;\" ";
// line 94
echo twig_escape_filter($this->env, set_checkbox("is_admin", "1", $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "is_admin", array(), "any", true, true) && $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "is_admin") == 1 ? true : false), "html", null, true);
echo "> Administrator</label>\n </td>\n </tr>\n <tr>\n <td></td>\n <td>\n <button type=\"submit\" class=\"btn btn-primary\">Filter</button>\n </td>\n </tr>\n </table>\n ";
// line 104
echo form_close();
echo "\n </div>\n </div>\n ";
}
// line 108
echo " <br>\n\n ";
// line 110
echo form_open("pengajar/index/" . (isset($context["status_id"]) ? $context["status_id"] : null));
//.........这里部分代码省略.........
开发者ID:Raniratna,项目名称:new_elearning,代码行数:101,代码来源:980c10c5b7b27622e8b3961e0f0e2a6f8a4151a7611cc45b7071bbec8d7b.php
示例14: edit_password
function edit_password($segment_3 = '', $segment_4 = '')
{
if (is_pengajar()) {
exit('Akses ditolak');
}
$status_id = (int) $segment_3;
$siswa_id = (int) $segment_4;
$retrieve_siswa = $this->siswa_model->retrieve($siswa_id);
if (empty($retrieve_siswa)) {
exit('Data siswa tidak ditemukan');
}
# jika sebagai siswa, hanya profilnya dia yang bisa diupdate
if (is_siswa() and get_sess_data('user', 'id') != $retrieve_siswa['id']) {
exit('Akses ditolak');
}
$data['status_id'] = $status_id;
$data['siswa_id'] = $siswa_id;
$retrieve_login = $this->login_model->retrieve(null, null, null, $siswa_id);
if ($this->form_validation->run('siswa/edit_password') == TRUE) {
$password = $this->input->post('password2', TRUE);
# update password
$this->login_model->update_password($retrieve_login['id'], $password);
$this->session->set_flashdata('edit', get_alert('success', 'Password siswa berhasil diperbaharui.'));
redirect('siswa/edit_password/' . $status_id . '/' . $siswa_id);
}
$this->twig->display('edit-siswa-password.html', $data);
}
示例15: get_url_image_session
/**
* Method untuk mendapatkan link foto pengajar/admin/siswa ketika sudah login
*
* @param string $img
* @param string $size
* @param string $jk
* @return string url
*/
function get_url_image_session($img = '', $size = 'medium', $jk = 'Laki-laki')
{
if (is_pengajar() or is_admin()) {
return get_url_image_pengajar($img, $size, $jk);
} elseif (is_siswa()) {
return get_url_image_siswa($img, $size, $jk);
}
}