20 lines
505 B
PHP
20 lines
505 B
PHP
<?php $o = Auth::instance()->get_user();
|
|
echo Block::factory()
|
|
->title(sprintf(_('System Emails Sent for %s: %s'),$o->accnum(),$o->name(TRUE)))
|
|
->title_icon('fa fa-list')
|
|
->body(Table::factory()
|
|
->page_items(25)
|
|
->data($o->email_log->find_all())
|
|
->columns(array(
|
|
'id'=>'ID',
|
|
'date_orig'=>'Date',
|
|
'resolve("subject")'=>'Subject',
|
|
))
|
|
->prepend(array(
|
|
'id'=>array('url'=>URL::link('user','email/view/')),
|
|
))
|
|
->postproc(array(
|
|
'resolve("subject")'=>array('trim'=>60),
|
|
))
|
|
);
|