TRUE, 'view'=>TRUE, ); /** * Show a list of emails */ public function action_list() { Block::factory() ->title(sprintf(_('System Emails Sent for %s: %s'),$this->ao->accnum(),$this->ao->name(TRUE))) ->title_icon('icon-th') ->body(Table::factory() ->page_items(25) ->data($this->ao->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), )) ); } public function action_view() { list($id,$output) = Table::page(__METHOD__); $elo = ORM::factory('Email_Log',$id); if (! $elo->loaded() OR ! Auth::instance()->authorised($elo->account)) throw HTTP_Exception::factory(403,'Service either doesnt exist, or you are not authorised to see it'); $output .= View::factory('email/user/view') ->set('elo',$elo); Block::factory() ->title(sprintf('%s: %s',$elo->id,$elo->resolve('subject'))) ->title_icon('icon-list-alt') ->body($output); } } ?>