本文整理汇总了PHP中get_flashdata函数的典型用法代码示例。如果您正苦于以下问题:PHP get_flashdata函数的具体用法?PHP get_flashdata怎么用?PHP get_flashdata使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了get_flashdata函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>";
// line 6
echo isset($context["module_title"]) ? $context["module_title"] : null;
echo "</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 9
echo get_flashdata("mapel");
echo "\n\n ";
// line 11
echo form_open("admin/mapel/edit/" . $this->getAttribute(isset($context["mapel"]) ? $context["mapel"] : null, "id") . "/" . enurl_redirect(isset($context["uri_back"]) ? $context["uri_back"] : null), array("class" => "form-horizontal row-fluid"));
echo "\n <div class=\"control-group\">\n <label class=\"control-label\">Nama <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <input type=\"text\" name=\"nama\" class=\"span8\" value=\"";
// line 15
echo twig_escape_filter($this->env, set_value("nama", $this->getAttribute(isset($context["mapel"]) ? $context["mapel"] : null, "nama")), "html", null, true);
echo "\">\n <br>";
// line 16
echo form_error("nama");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Deskripsi</label>\n <div class=\"controls\">\n <textarea name=\"info\" class=\"span12\" rows=\"5\">";
// line 22
echo set_value("info", $this->getAttribute(isset($context["mapel"]) ? $context["mapel"] : null, "info"));
echo "</textarea>\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Status</label>\n <div class=\"controls\">\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" value=\"1\" name=\"status\" ";
// line 29
echo twig_escape_filter($this->env, set_checkbox("status", "1", $this->getAttribute(isset($context["mapel"]) ? $context["mapel"] : null, "aktif") == 1 ? true : false), "html", null, true);
echo ">\n Aktif\n </label>\n </div>\n </div>\n <div class=\"control-group\">\n <div class=\"controls\">\n <button type=\"submit\" class=\"btn btn-primary\">Update</button>\n <a href=\"";
// line 37
echo twig_escape_filter($this->env, isset($context["uri_back"]) ? $context["uri_back"] : null, "html", null, true);
echo "\" class=\"btn\">Batal</a>\n </div>\n </div>\n ";
// line 40
echo form_close();
echo "\n\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:32,代码来源:815802a5180dd7c8e97f6c0c40a1eabb2b4db23228355d8eabfd1a8cda19.php
示例2: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>";
// line 6
echo isset($context["module_title"]) ? $context["module_title"] : null;
echo "</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 9
echo get_flashdata("kelas");
echo "\n\n <div class=\"panel panel-default\">\n <div class=\"panel-heading\">\n Tambah Kelas\n </div>\n <div class=\"panel-body\">\n ";
// line 16
echo form_open("admin/kelas", array("class" => "form-horizontal row-fluid"));
echo "\n <div class=\"control-group\">\n <label class=\"control-label\">Nama Kelas <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <input type=\"text\" name=\"nama\" class=\"span5\" placeholder=\"Nama Kelas\" value=\"";
// line 20
echo twig_escape_filter($this->env, set_value("nama"), "html", null, true);
echo "\">\n <button type=\"submit\" class=\"btn btn-primary\">Simpan</button>\n ";
// line 22
echo form_error("nama");
echo "\n </div>\n </div>\n ";
// line 25
echo form_close();
echo "\n </div>\n </div>\n\n <p><b>Note:</b> Kelas tidak dapat di hapus namun dapat di ubah menjadi tidak aktif</p>\n\n ";
// line 31
echo isset($context["kelas_hirarki"]) ? $context["kelas_hirarki"] : null;
echo "\n\n <br>\n <div id=\"response_update\"></div>\n <button class=\"btn btn-primary\" id=\"update-hirarki\">Update Hirarki</button>\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:26,代码来源:e21e79c49e313b4c30919792b145d76ccb359710f0fc8fdd1add2842d09e.php
示例3: block_content
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>Email Template</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("mapel");
echo "\n\n ";
// line 15
if (is_demo_app()) {
// line 16
echo " ";
echo get_alert("warning", get_demo_msg());
echo "\n ";
}
// line 18
echo "\n <table class=\"table table-striped datatable\">\n <thead>\n <tr>\n <th>Nama template</th>\n <th width=\"15%\"></th>\n </tr>\n </thead>\n <tbody>\n ";
// line 27
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["template"]) ? $context["template"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["e"]) {
// line 28
echo " <tr>\n <td>";
// line 29
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["e"]) ? $context["e"] : null, "nama"), "html", null, true);
echo "</td>\n <td>\n <a href=\"";
// line 31
echo twig_escape_filter($this->env, site_url("email/edit/" . $this->getAttribute(isset($context["e"]) ? $context["e"] : null, "id")), "html", null, true);
echo "\" class=\"btn btn-default\">Edit</a>\n </td>\n </tr>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['e'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 35
echo " </tbody>\n </table>\n\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:35,代码来源:b794548bd1a6acb9b58332453353a7cbea333d382f2341e989269737b823.php
示例4: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>";
// line 6
echo isset($context["module_title"]) ? $context["module_title"] : null;
echo "</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 9
echo get_flashdata("mapel");
echo "\n\n ";
// line 11
echo form_open("admin/mapel/add", array("class" => "form-horizontal row-fluid"));
echo "\n <div class=\"control-group\">\n <label class=\"control-label\">Nama <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <input type=\"text\" name=\"nama\" class=\"span8\" value=\"";
// line 15
echo twig_escape_filter($this->env, set_value("nama"), "html", null, true);
echo "\">\n <br>";
// line 16
echo form_error("nama");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Deskripsi</label>\n <div class=\"controls\">\n <textarea name=\"info\" class=\"span12\" rows=\"5\">";
// line 22
echo set_value("info");
echo "</textarea>\n </div>\n </div>\n <div class=\"control-group\">\n <div class=\"controls\">\n <button type=\"submit\" class=\"btn btn-primary\">Simpan</button>\n <a href=\"";
// line 28
echo twig_escape_filter($this->env, site_url("admin/mapel"), "html", null, true);
echo "\" class=\"btn\">Batal</a>\n </div>\n </div>\n ";
// line 31
echo form_close();
echo "\n\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:29,代码来源:e77bfcb44e01e83cd758d3bf076b694ee0546ba32e73d1a1f758f2d79475.php
示例5: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<div class=\"btn-group pull-right\">\n <a class=\"btn btn-primary btn-small\" href=\"";
// line 5
echo twig_escape_filter($this->env, site_url("tugas/tambah_soal/" . $this->getAttribute(isset($context["tugas"]) ? $context["tugas"] : null, "id")), "html", null, true);
echo "\">Tambah Pertanyaan</a>\n ";
// line 6
if ($this->getAttribute(isset($context["tugas"]) ? $context["tugas"] : null, "type_id") == 3) {
// line 7
echo " <a class=\"btn btn-primary btn-small\" href=\"";
echo twig_escape_filter($this->env, site_url("tugas/tambah_pilihan/" . $this->getAttribute(isset($context["tugas"]) ? $context["tugas"] : null, "id") . "/" . $this->getAttribute(isset($context["pertanyaan"]) ? $context["pertanyaan"] : null, "id")), "html", null, true);
echo "\">Tambah Pilihan</a>\n ";
}
// line 9
echo "</div>\n\n<h4>Edit Pertanyaan ke ";
// line 11
echo twig_escape_filter($this->env, isset($context["no_pertanyaan"]) ? $context["no_pertanyaan"] : null, "html", null, true);
echo "</h4>\n";
// line 12
echo get_flashdata("tugas");
echo "\n\n";
// line 14
echo form_open("tugas/edit_soal/" . $this->getAttribute(isset($context["tugas"]) ? $context["tugas"] : null, "id") . "/" . $this->getAttribute(isset($context["pertanyaan"]) ? $context["pertanyaan"] : null, "id"));
echo "\n<table class=\"table table-striped\" style=\"margin-top:20px;\">\n <tbody>\n <tr>\n <td>\n <textarea name=\"pertanyaan\" id=\"pertanyaan\" style=\"height:400px;width:100%;\">";
// line 19
echo set_value("pertanyaan", html_entity_decode($this->getAttribute(isset($context["pertanyaan"]) ? $context["pertanyaan"] : null, "pertanyaan")));
echo "</textarea>\n ";
// line 20
echo form_error("pertanyaan");
echo "\n </td>\n <tr>\n <tr>\n <td colspan=\"2\">\n <button type=\"submit\" class=\"btn btn-primary\">Update</button>\n </td>\n </tr>\n </tbody>\n</table>\n";
// line 30
echo form_close();
echo "\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:35,代码来源:71d49f7a78df3c2ae25b319519e77a446f8d21fcf0672fd1a09ecb88bc5d.php
示例6: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<h4>Edit Kelas Aktif</h4>\n";
// line 5
echo get_flashdata("class");
echo "\n\n";
// line 7
echo form_open("siswa/moved_class/" . (isset($context["status_id"]) ? $context["status_id"] : null) . "/" . (isset($context["siswa_id"]) ? $context["siswa_id"] : null), array("class" => "form-horizontal row-fluid"));
echo "\n<table class=\"table table-striped\">\n <tr>\n <td>\n <select class=\"span2\" name=\"kelas_id\">\n <option value=\"\">--pilih--</option>\n ";
// line 13
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["kelas"]) ? $context["kelas"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["k"]) {
// line 14
echo " <option value=\"";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "id"), "html", null, true);
echo "\" ";
echo $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "id") == $this->getAttribute(isset($context["get_aktif"]) ? $context["get_aktif"] : null, "kelas_id") ? "selected" : "";
echo ">";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["k"]) ? $context["k"] : null, "nama"), "html", null, true);
echo "</option>\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 16
echo " </select>\n <br>";
// line 17
echo form_error("kelas_id");
echo "\n </td>\n <td>\n <button type=\"submit\" class=\"btn btn-primary\">Update</button>\n </td>\n </tr>\n</table>\n";
// line 24
echo form_close();
echo "\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:35,代码来源:669a4f6e8c7dc02a4e11f673e2a6c35fc22a4b99b59d453296af0e9866a0.php
示例7: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>";
// line 6
echo isset($context["module_title"]) ? $context["module_title"] : null;
echo "</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 9
echo get_flashdata("mapel");
echo "\n\n <div class=\"panel panel-default\">\n <div class=\"panel-heading\">\n <span class=\"pull-right\">\n ";
// line 14
if ($this->getAttribute(isset($context["mapel"]) ? $context["mapel"] : null, "aktif") != 1) {
// line 15
echo " <span class=\"badge\">Matapelajaran Tidak Aktif</span> |\n <a href=\"";
// line 16
echo twig_escape_filter($this->env, site_url("admin/mapel/edit/" . $this->getAttribute(isset($context["mapel"]) ? $context["mapel"] : null, "id")), "html", null, true);
echo "\"><i class=\"icon-edit\"></i> Edit</a>\n ";
}
// line 18
echo " </span>\n <strong>";
// line 19
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["mapel"]) ? $context["mapel"] : null, "nama"), "html", null, true);
echo "</strong>\n </div>\n <div class=\"panel-body\">\n ";
// line 22
echo $this->getAttribute(isset($context["mapel"]) ? $context["mapel"] : null, "info");
echo "\n </div>\n </div>\n\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:27,代码来源:b41ffaecfbb98ab5a27d1e5a8b56d1240edd5a06e90c7f8390fbd9e8be6c.php
示例8: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>";
// line 6
echo isset($context["module_title"]) ? $context["module_title"] : null;
echo "</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 9
echo get_flashdata("mapel");
echo "\n\n <div class=\"row-fluid\">\n <div class=\"span6\">\n <div class=\"panel panel-default\">\n <div class=\"panel-heading as-link\" data-toggle=\"collapse\" data-target=\"#form-filter\">\n <b><i class=\"icon-search\"></i> Filter Kelas</b>\n </div>\n <div id=\"form-filter\" class=\"collapse\">\n <div class=\"panel-body\">\n <form class=\"form-horizontal row-fluid\" method=\"post\" action=\"";
// line 19
echo twig_escape_filter($this->env, site_url("admin/mapel_kelas/list"), "html", null, true);
echo "\">\n <table class=\"table table-form table-condensed\">\n <tr>\n <td class=\"pull-right\">Parent Kelas</td>\n <td>\n <select name=\"parent_kelas\" id=\"parent-kelas\">\n <option>--pilih--</option>\n ";
// line 26
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["parent_kelas"]) ? $context["parent_kelas"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["pk"]) {
// line 27
echo " <option value=\"";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["pk"]) ? $context["pk"] : null, "id"), "html", null, true);
echo "\" ";
echo $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "parent_id") == $this->getAttribute(isset($context["pk"]) ? $context["pk"] : null, "id") ? "selected" : "";
echo ">";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["pk"]) ? $context["pk"] : null, "nama"), "html", null, true);
echo "</option>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['pk'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 29
echo " </select>\n </td>\n </tr>\n <tr>\n <td class=\"pull-right\">Sub Kelas</td>\n <td>\n <select name=\"sub_kelas\" id=\"sub-kelas\">\n <option>--pilih--</option>\n ";
// line 37
if (!twig_test_empty(isset($context["sub_kelas"]) ? $context["sub_kelas"] : null)) {
// line 38
echo " ";
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["sub_kelas"]) ? $context["sub_kelas"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["sk"]) {
// line 39
echo " <option value=\"";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["sk"]) ? $context["sk"] : null, "id"), "html", null, true);
echo "\" ";
echo $this->getAttribute(isset($context["filter"]) ? $context["filter"] : null, "sub_id") == $this->getAttribute(isset($context["sk"]) ? $context["sk"] : null, "id") ? "selected" : "";
echo ">";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["sk"]) ? $context["sk"] : null, "nama"), "html", null, true);
echo "</option>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['sk'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 41
echo " ";
}
// line 42
echo " </select>\n </td>\n </tr>\n <tr>\n <td></td>\n <td>\n <button class=\"btn btn-small btn-primary\" type=\"submit\">Submit</button>\n </td>\n </tr>\n </table>\n </form>\n </div>\n </div>\n </div>\n </div>\n <div class=\"span6\">\n Atur matapelajaran yang ada pada masing - masing kelas\n </div>\n </div>\n\n ";
// line 62
echo isset($context["mapel_kelas_hirarki"]) ? $context["mapel_kelas_hirarki"] : null;
echo "\n\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:59,代码来源:b69d04241e2f16de1884d221d89d3d5575c19f872c1abcd994a8d8ad8a47.php
示例9: block_content
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>Manajemen Matapelajaran</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("mapel");
echo "\n\n ";
// line 15
if (is_demo_app()) {
// line 16
echo " ";
echo get_alert("warning", get_demo_msg());
echo "\n ";
}
// line 18
echo "\n <div class=\"row-fluid\">\n <div class=\"span2\">\n <a href=\"";
// line 21
echo twig_escape_filter($this->env, site_url("mapel/add"), "html", null, true);
echo "\" class=\"btn btn-primary\">Tambah Mapel</a>\n </div>\n <div class=\"span10\">\n Atur matapelajaran yang ada di sekolah<br>\n <b>Note: </b> Matapelajaran tidak dapat dihapus namun dapat di ubah menjadi tidak aktif\n </div>\n </div>\n\n <br>\n <table class=\"table table-striped\">\n <thead>\n <tr>\n <th width=\"5%\">No</th>\n <th>Matapelajaran</th>\n <th>Aktif</th>\n <th width=\"15%\"></th>\n </tr>\n </thead>\n <tbody>\n ";
// line 40
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["mapels"]) ? $context["mapels"] : null);
foreach ($context['_seq'] as $context["no"] => $context["v"]) {
// line 41
echo " <tr>\n <td>";
// line 42
echo twig_escape_filter($this->env, isset($context["no"]) ? $context["no"] : null, "html", null, true);
echo ".</td>\n <td>\n ";
// line 44
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["v"]) ? $context["v"] : null, "nama"), "html", null, true);
echo "\n <br><small>";
// line 45
echo nl2br(twig_escape_filter($this->env, $this->getAttribute(isset($context["v"]) ? $context["v"] : null, "info"), "html", null, true));
echo "</small>\n </td>\n <td>\n ";
// line 48
if ($this->getAttribute(isset($context["v"]) ? $context["v"] : null, "aktif") == 1) {
// line 49
echo " <i class=\"icon-ok\"></i>\n ";
} else {
// line 51
echo " <i class=\"icon-minus\"></i>\n ";
}
// line 53
echo " </td>\n <td>\n <a class=\"btn btn-default\" href=\"";
// line 55
echo twig_escape_filter($this->env, site_url("mapel/edit/" . $this->getAttribute(isset($context["v"]) ? $context["v"] : null, "id") . "/" . enurl_redirect(current_url())), "html", null, true);
echo "\"><i class=\"icon-edit\"></i> Edit</a>\n </td>\n </tr>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['no'], $context['v'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 59
echo " </tbody>\n </table>\n\n <br>\n ";
// line 63
echo isset($context["pagination"]) ? $context["pagination"] : null;
echo "\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:57,代码来源:51513400fc954bbd9f4bdbe187cbbeb863fc55965217a298d6e1d19b731b.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>";
// line 10
echo anchor("pengumuman", "Pengumuman");
echo " / Buat Pengumuman</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("pengumuman");
echo "\n\n ";
// line 15
echo form_open_multipart("pengumuman/add", array("class" => "form-horizontal row-fluid"));
echo "\n <div class=\"control-group\">\n <label class=\"control-label\">Judul <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <input type=\"text\" name=\"judul\" class=\"span12\" value=\"";
// line 19
echo twig_escape_filter($this->env, set_value("judul"), "html", null, true);
echo "\">\n <br>";
// line 20
echo form_error("judul");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Tgl. Tampil <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <input type=\"text\" name=\"tgl_tampil\" class=\"span4\" value=\"";
// line 26
echo twig_escape_filter($this->env, set_value("tgl_tampil"), "html", null, true);
echo "\" id=\"tgl-tampil\">\n <br>";
// line 27
echo form_error("tgl_tampil");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Konten <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <textarea name=\"konten\" id=\"konten\" style=\"height:400px;width:100%;\">";
// line 33
echo set_value("konten");
echo "</textarea>\n ";
// line 34
echo form_error("konten");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Tampil Disiswa</label>\n <div class=\"controls\">\n <label class=\"radio inline\"><input type=\"radio\" name=\"tampil_siswa\" value=\"1\" ";
// line 40
echo twig_escape_filter($this->env, set_radio("tampil_siswa", "1", true), "html", null, true);
echo "> Ya</label>\n <label class=\"radio inline\"><input type=\"radio\" name=\"tampil_siswa\" value=\"0\" ";
// line 41
echo twig_escape_filter($this->env, set_radio("tampil_siswa", "0"), "html", null, true);
echo "> Tidak</label>\n <br>";
// line 42
echo form_error("tampil_siswa");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Tampil Dipengajar</label>\n <div class=\"controls\">\n <label class=\"radio inline\"><input type=\"radio\" name=\"tampil_pengajar\" value=\"1\" ";
// line 48
echo twig_escape_filter($this->env, set_radio("tampil_pengajar", "1", true), "html", null, true);
echo "> Ya</label>\n <label class=\"radio inline\"><input type=\"radio\" name=\"tampil_pengajar\" value=\"0\" ";
// line 49
echo twig_escape_filter($this->env, set_radio("tampil_pengajar", "0"), "html", null, true);
echo "> Tidak</label>\n <br>";
// line 50
echo form_error("tampil_pengajar");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <div class=\"controls\">\n <button type=\"submit\" class=\"btn btn-primary\">Simpan</button>\n <a href=\"";
// line 56
echo twig_escape_filter($this->env, site_url("pengumuman"), "html", null, true);
echo "\" class=\"btn btn-default\">Kembali</a>\n </div>\n </div>\n ";
// line 59
echo form_close();
echo "\n\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:56,代码来源:58006a588f0a4ee0ad62ee15f16934eaa6e7702c279fed53fae5649b6dcf.php
示例11: block_content
public function block_content($context, array $blocks = array())
{
// line 4
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>";
// line 6
echo isset($context["module_title"]) ? $context["module_title"] : null;
echo "</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 9
echo get_flashdata("mapel");
echo "\n\n <div class=\"bs-callout bs-callout-info\">\n <p>\n Pilih matapelajaran yang ingin di masukkan pada <b>";
// line 13
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["kelas"]) ? $context["kelas"] : null, "nama", array(), "array"), "html", null, true);
echo "</b>\n </p>\n </div>\n <br>\n\n ";
// line 18
echo form_open("admin/mapel_kelas/add/" . $this->getAttribute(isset($context["parent"]) ? $context["parent"] : null, "id", array(), "array") . "/" . $this->getAttribute(isset($context["kelas"]) ? $context["kelas"] : null, "id", array(), "array") . "/" . enurl_redirect(isset($context["uri_back"]) ? $context["uri_back"] : null));
echo "\n <table class=\"table table-striped\">\n <tbody>\n ";
// line 21
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["mapels"]) ? $context["mapels"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["m"]) {
// line 22
echo " ";
$context["checked"] = get_row_data("mapel_model", "retrieve_kelas", array(0 => null, 1 => $this->getAttribute(isset($context["kelas"]) ? $context["kelas"] : null, "id", array(), "array"), 2 => $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "id")));
// line 23
echo " <tr>\n <td>\n ";
// line 25
if ($this->getAttribute(isset($context["m"]) ? $context["m"] : null, "aktif") != 1) {
// line 26
echo " <span class=\"badge badge-warning pull-right\">Matapelajaran Tidak Aktif</span>\n ";
}
// line 28
echo " <label><input type=\"checkbox\" name=\"mapel[]\" value=\"";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "id"), "html", null, true);
echo "\" style=\"margin-top:-2px;margin-right:5px;\" ";
echo $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "aktif") != 1 ? "disabled" : "";
echo " ";
echo twig_test_empty(isset($context["checked"]) ? $context["checked"] : null) ? "" : "checked";
echo "> ";
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "nama"), "html", null, true);
echo "</label>\n <small>";
// line 29
echo nl2br(twig_escape_filter($this->env, $this->getAttribute(isset($context["m"]) ? $context["m"] : null, "info"), "html", null, true));
echo "</small>\n </td>\n </tr>\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 33
echo " </tbody>\n </table>\n <br>\n <button type=\"submit\" class=\"btn btn-primary\">Simpan</button>\n <a href=\"";
// line 37
echo twig_escape_filter($this->env, isset($context["uri_back"]) ? $context["uri_back"] : null, "html", null, true);
echo "\" class=\"btn btn-default\">Kembali</a>\n ";
// line 38
echo form_close();
echo "\n\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:56,代码来源:813f03298479b9687cd34aa10558e4466f8b977b329b1ee7db708d946b8f.php
示例12: block_content
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>Pengaturan</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("pengaturan");
echo "\n\n ";
// line 15
echo form_open_multipart("welcome/pengaturan", array("class" => "form-horizontal row-fluid"));
echo "\n <div class=\"control-group\">\n <label class=\"control-label\">Nama sekolah <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <input type=\"text\" name=\"nama-sekolah\" class=\"span8\" value=\"";
// line 19
echo twig_escape_filter($this->env, set_value("nama-sekolah", get_pengaturan("nama-sekolah", "value")), "html", null, true);
echo "\">\n <br>";
// line 20
echo form_error("nama-sekolah");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Alamat sekolah <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <input type=\"text\" name=\"alamat\" class=\"span8\" value=\"";
// line 26
echo twig_escape_filter($this->env, set_value("alamat", get_pengaturan("alamat", "value")), "html", null, true);
echo "\">\n <br>";
// line 27
echo form_error("alamat");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Telpon</label>\n <div class=\"controls\">\n <input type=\"text\" name=\"telp\" class=\"span5\" value=\"";
// line 33
echo twig_escape_filter($this->env, set_value("telp", get_pengaturan("telp", "value")), "html", null, true);
echo "\">\n <br>";
// line 34
echo form_error("telp");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Registrasi siswa</label>\n <div class=\"controls\">\n <label class=\"radio inline\">\n <input type=\"radio\" name=\"registrasi-siswa\" value=\"1\" ";
// line 41
echo twig_escape_filter($this->env, set_radio("registrasi-siswa", "1", get_pengaturan("registrasi-siswa", "value") == "1" ? true : ""), "html", null, true);
echo "> Tampilkan\n </label>\n <label class=\"radio inline\">\n <input type=\"radio\" name=\"registrasi-siswa\" value=\"0\" ";
// line 44
echo twig_escape_filter($this->env, set_radio("registrasi-siswa", "0", get_pengaturan("registrasi-siswa", "value") == "0" ? true : ""), "html", null, true);
echo "> Sembuyikan\n </label>\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Registrasi pengajar</label>\n <div class=\"controls\">\n <label class=\"radio inline\">\n <input type=\"radio\" name=\"registrasi-pengajar\" value=\"1\" ";
// line 52
echo twig_escape_filter($this->env, set_radio("registrasi-pengajar", "1", get_pengaturan("registrasi-pengajar", "value") == "1" ? true : ""), "html", null, true);
echo "> Tampilkan\n </label>\n <label class=\"radio inline\">\n <input type=\"radio\" name=\"registrasi-pengajar\" value=\"0\" ";
// line 55
echo twig_escape_filter($this->env, set_radio("registrasi-pengajar", "0", get_pengaturan("registrasi-pengajar", "value") == "0" ? true : ""), "html", null, true);
echo "> Sembuyikan\n </label>\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Info Registrasi</label>\n <div class=\"controls\">\n <textarea name=\"info-registrasi\" class=\"tinymce\" style=\"width:100%; height:300px;\">";
// line 62
echo set_value("info-registrasi", get_pengaturan("info-registrasi", "value"));
echo "</textarea>\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Peraturan E-learning</label>\n <div class=\"controls\">\n <textarea name=\"peraturan-elearning\" class=\"tinymce\" style=\"width:100%; height:300px;\">";
// line 68
echo set_value("peraturan-elearning", get_pengaturan("peraturan-elearning", "value"));
echo "</textarea>\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Email server</label>\n <div class=\"controls\">\n <input type=\"text\" name=\"email-server\" class=\"span5\" value=\"";
// line 74
echo twig_escape_filter($this->env, set_value("email-server", get_pengaturan("email-server", "value")), "html", null, true);
echo "\">\n <br>";
// line 75
echo form_error("email-server");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <div class=\"controls\">\n <button type=\"submit\" class=\"btn btn-primary\">Update</button>\n </div>\n </div>\n ";
// line 83
echo form_close();
echo "\n\n </div>\n</div>\n";
}
开发者ID:unregister,项目名称:new_elearning,代码行数:56,代码来源:7c6785edc4eca16ab1544d48104c49727a1d4b532f8759711570632a9508.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>";
// line 10
echo anchor("email", "Email Template");
echo " / Edit</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("email");
echo "\n\n ";
// line 15
if (is_demo_app()) {
// line 16
echo " ";
echo get_alert("warning", get_demo_msg());
echo "\n ";
}
// line 18
echo "\n ";
// line 19
echo get_alert("success", "Ubah bentuk atau kata - kata template email selain {\$...}");
echo "\n\n ";
// line 21
echo form_open("email/edit/" . $this->getAttribute(isset($context["template"]) ? $context["template"] : null, "id"), array("class" => "form-horizontal row-fluid"));
echo "\n <div class=\"control-group\">\n <label class=\"control-label\">ID</label>\n <div class=\"controls\">\n <p style=\"margin-top:5px;\">";
// line 25
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["template"]) ? $context["template"] : null, "id"), "html", null, true);
echo "</p>\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Nama</label>\n <div class=\"controls\">\n <p style=\"margin-top:5px;\">";
// line 31
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["template"]) ? $context["template"] : null, "nama"), "html", null, true);
echo "</p>\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Subject</label>\n <div class=\"controls\">\n <input type=\"text\" name=\"subject\" class=\"span12\" value=\"";
// line 37
echo twig_escape_filter($this->env, set_value("subject", $this->getAttribute(isset($context["template"]) ? $context["template"] : null, "subject")), "html", null, true);
echo "\">\n <br>";
// line 38
echo form_error("subject");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <label class=\"control-label\">Body</label>\n <div class=\"controls\">\n <textarea name=\"body\" id=\"body\" style=\"height:300px;width:100%;\">";
// line 44
echo set_value("body", html_entity_decode($this->getAttribute(isset($context["template"]) ? $context["template"] : null, "body")));
echo "</textarea>\n ";
// line 45
echo form_error("body");
echo "\n </div>\n </div>\n <div class=\"control-group\">\n <div class=\"controls\">\n ";
// line 50
if (is_demo_app() == false) {
// line 51
echo " <button type=\"submit\" class=\"btn btn-primary\">Update</button>\n ";
}
// line 53
echo " <a href=\"";
echo twig_escape_filter($this->env, site_url("email"), "html", null, true);
echo "\" class=\"btn btn-default\">Kembali</a>\n </div>\n </div>\n ";
// line 56
echo form_close();
echo "\n\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:56,代码来源:bd8af2e8b9ceb84d88bd17df9ffbf7b5c433f91f98b85bf76bfed39e2e59.php
示例14: block_content
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"module message\">\n <div class=\"module-head\">\n <h3>Pesan</h3>\n </div>\n <div class=\"module-body\">\n <div class=\"module-option clearfix\">\n ";
// line 14
echo get_flashdata("msg");
echo "\n\n <div class=\"pull-right\">\n <form class=\"form-search\" method=\"get\" action=\"";
// line 17
echo twig_escape_filter($this->env, site_url("message/index/"), "html", null, true);
echo "\">\n <div class=\"input-append\">\n <input type=\"text\" class=\"span3 search-query\" placeholder=\"cari pesan...\" name=\"q\" value=\"";
// line 19
echo twig_escape_filter($this->env, isset($context["keyword"]) ? $context["keyword"] : null, "html", null, true);
echo "\">\n <button type=\"submit\" class=\"btn\"><i class=\"icon-search\"></i></button>\n </div>\n </form>\n </div>\n <div class=\"pull-left\">\n <a href=\"";
// line 25
echo twig_escape_filter($this->env, site_url("message/create/"), "html", null, true);
echo "\" class=\"btn btn-primary\"><i class=\"icon-pencil\"></i> Tulis pesan</a>\n </div>\n </div>\n <div class=\"module-body table\">\n <table class=\"table table-message\">\n <tbody>\n ";
// line 31
$context['_parent'] = (array) $context;
$context['_seq'] = twig_ensure_traversable(isset($context["inbox"]) ? $context["inbox"] : null);
foreach ($context['_seq'] as $context["_key"] => $context["d"]) {
// line 32
echo " <tr class=\"";
echo $this->getAttribute(isset($context["d"]) ? $context["d"] : null, "opened") == 0 ? "unread" : "";
echo " clickable-row\" data-href=\"";
echo twig_escape_filter($this->env, site_url("message/detail/" . $this->getAttribute(isset($context["d"]) ? $context["d"] : null, "id") . "#msg-" . $this->getAttribute(isset($context["d"]) ? $context["d"] : null, "id")), "html", null, true);
echo "\">\n <td class=\"cell-author\">\n <img style=\"height:30px;width:30px; margin-right: 10px;\" class=\"img-polaroid img-circle pull-left\" src=\"";
// line 34
echo twig_escape_filter($this->env, get_url_image_siswa($this->getAttribute($this->getAttribute(isset($context["d"]) ? $context["d"] : null, "profil"), "foto"), "medium", $this->getAttribute($this->getAttribute(isset($context["d"]) ? $context["d"] : null, "profil"), "jenis_kelamin")), "html", null, true);
echo "\">\n <a href=\"";
// line 35
echo twig_escape_filter($this->env, $this->getAttribute($this->getAttribute(isset($context["d"]) ? $context["d"] : null, "profil"), "link_profil"), "html", null, true);
echo "\">";
echo twig_escape_filter($this->env, character_limiter($this->getAttribute($this->getAttribute(isset($context["d"]) ? $context["d"] : null, "profil"), "nama"), 23, "..."), "html", null, true);
echo "</a>\n <br><small>";
// line 36
echo twig_escape_filter($this->env, $this->getAttribute(isset($context["d"]) ? $context["d"] : null, "date"), "html", null, true);
echo "</small>\n </td>\n <td class=\"cell-title hidden-phone hidden-tablet\">\n <a class=\"pull-right\" style=\"margin-left:10px;\" href=\"";
// line 39
echo twig_escape_filter($this->env, site_url("message/detail/" . $this->getAttribute(isset($context["d"]) ? $context["d"] : null, "id") . "/?confirm=1#confirm"), "html", null, true);
echo "\"><i class=\"icon-trash\"></i></a>\n ";
// line 40
echo character_limiter(strip_tags($this->getAttribute(isset($context["d"]) ? $context["d"] : null, "content")), 80, "...");
echo "\n </td>\n </tr>\n ";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['d'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 44
echo "\n </tbody>\n </table>\n </div>\n <div class=\"module-foot\">\n ";
// line 49
echo isset($context["pagination"]) ? $context["pagination"] : null;
echo "\n </div>\n\n </div>\n</div>\n";
}
开发者ID:unregister,项目名称:new_elearning,代码行数:53,代码来源:ab62e07afcd72ffe171409b0a6dbbb650bf91e8a072a4e9ac9dcbf44706d.php
示例15: block_content
public function block_content($context, array $blocks = array())
{
// line 8
echo "<div class=\"module\">\n <div class=\"module-head\">\n <h3>Manajemen Kelas</h3>\n </div>\n <div class=\"module-body\">\n ";
// line 13
echo get_flashdata("kelas");
echo "\n\n ";
// line 15
if (is_demo_app()) {
// line 16
echo " ";
echo get_alert("warning", get_demo_msg());
echo "\n ";
}
// line 18
echo "\n <div class=\"panel panel-info\">\n <div class=\"panel-heading\">\n Edit Kelas\n </div>\n <div class=\"panel-body\">\n ";
// line 24
echo form_open("kelas/edit/" . $this->getAttribute(isset($context["kelas"]) ? $context["kelas"] : null, "id"), array("class" => "form-horizontal row-fluid"));
echo "\n <div class=\"control-group\">\n <label class=\"control-label\">Nama Kelas <span class=\"text-error\">*</span></label>\n <div class=\"controls\">\n <input type=\"text\" name=\"nama\" class=\"span5\" placeholder=\"Nama Kelas\" value=\"";
// line 28
echo twig_escape_filter($this->env, set_value("nama", $this->getAttribute(isset($context["kelas"]) ? $context["kelas"] : null, "nama")), "html", null, true);
echo "\">\n ";
// line 29
echo form_error("nama");
echo "\n </div>\n </div>\n ";
// line 32
if (!(null === $this->getAttribute(isset($context["kelas"]) ? $context["kelas"] : null, "parent_id"))) {
// line 33
echo " <div class=\"control-group\">\n <label class=\"control-label\">Status</label>\n <div class=\"controls\">\n <label class=\"checkbox inline\">\n <input type=\"checkbox\" value=\"1\" name=\"status\" ";
// line 37
echo twig_escape_filter($this->env, set_checkbox("status", "1", $this->getAttribute(isset($context["kelas"]) ? $context["kelas"] : null, "aktif") == 1 ? true : false), "html", null, true);
echo ">\n Aktif\n </label>\n </div>\n </div>\n ";
}
// line 43
echo " <div class=\"control-group\">\n <div class=\"controls\">\n ";
// line 45
if (is_demo_app() == false) {
// line 46
echo " <button type=\"submit\" class=\"btn btn-primary\">Simpan</button>\n ";
}
// line 48
echo " <a href=\"";
echo twig_escape_filter($this->env, site_url("kelas"), "html", null, true);
echo "\" class=\"btn\">Batal</a>\n </div>\n </div>\n ";
// line 51
echo form_close();
echo "\n </div>\n </div>\n\n <p class=\"text-warning\"><b>NB:</b> Kelas tidak dapat di hapus namun dapat di ubah menjadi tidak aktif.</p>\n\n ";
// line 57
echo isset($context["kelas_hirarki"]) ? $context["kelas_hirarki"] : null;
echo "\n\n <br>\n <div id=\"response_update\"></div>\n <button class=\"btn btn-primary\" id=\"update-hirarki\">Update Hirarki</button>\n </div>\n</div>\n";
}
开发者ID:Raniratna,项目名称:new_elearning,代码行数:51,代码来源:b18943fbab5aac2b10ae65165d7955236ae6d4912fac9e991bb53bb3d277.php