Example #1
0
 public function get_thanks_list($event)
 {
     // Generate thankslist if required ...
     $thanks_list = '';
     $ex_fid_ary = array_keys($this->auth->acl_getf('!f_read', true));
     $ex_fid_ary = sizeof($ex_fid_ary) ? $ex_fid_ary : 0;
     if (isset($this->config['thanks_top_number']) && $this->config['thanks_top_number']) {
         $thanks_list = $this->helper->get_toplist_index($ex_fid_ary);
     }
     $this->template->assign_vars(array('THANKS_LIST' => $thanks_list != '' ? $thanks_list : false, 'S_THANKS_LIST' => isset($this->config['thanks_top_number']) && $thanks_list != '' ? true : false, 'L_TOP_THANKS_LIST' => isset($this->config['thanks_top_number']) ? sprintf($this->user->lang['REPUT_TOPLIST'], (int) $this->config['thanks_top_number']) : false));
 }