first commit
This commit is contained in:
41
admin/templates/emails/emails-list.php
Normal file
41
admin/templates/emails/emails-list.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
global $gdb;
|
||||
|
||||
$grid = new \grid( 'pp_contact_emails' );
|
||||
$grid -> gdb_opt = $gdb;
|
||||
|
||||
$grid -> columns_view = [
|
||||
[
|
||||
'name' => 'Lp.',
|
||||
'th' => [ 'class' => 'g-lp' ],
|
||||
'td' => [ 'class' => 'g-center' ],
|
||||
'autoincrement' => true
|
||||
],
|
||||
[
|
||||
'name' => 'Data',
|
||||
'db' => 'add_date',
|
||||
'td' => [ ],
|
||||
'th' => ['style' => 'width: 220px;' ],
|
||||
'php' => 'echo date( "Y-m-d H:i", strtotime( "[add_date]" ) );',
|
||||
'sort' => true
|
||||
|
||||
],
|
||||
[
|
||||
'name' => 'Email',
|
||||
'db' => 'email',
|
||||
'content' => '<a href="/admin/emails/email_details/id=[id]">[email]</a>',
|
||||
'sort' => true ,
|
||||
],
|
||||
[
|
||||
'name' => 'Temat',
|
||||
'db' => 'title',
|
||||
],
|
||||
[
|
||||
'name' => 'Szczegóły',
|
||||
'content' => '<a href="/admin/emails/email_details/id=[id]">Szczegóły</a>',
|
||||
'th' => [ 'class' => 'g-center', 'style' => 'width: 70px;' ],
|
||||
'td' => [ 'class' => 'g-center' ]
|
||||
]
|
||||
];
|
||||
|
||||
echo $grid -> draw();
|
||||
Reference in New Issue
Block a user