Comsenz Inc.'; var $magic = array(); var $parameters = array(); function getsetting(&$magic) { global $_G; $settings = array( 'fids' => array( 'title' => 'bump_forum', 'type' => 'mselect', 'value' => array(), ), ); loadcache('forums'); $settings['fids']['value'][] = array(0, ' '); if(empty($_G['cache']['forums'])) $_G['cache']['forums'] = array(); foreach($_G['cache']['forums'] as $fid => $forum) { $settings['fids']['value'][] = array($fid, ($forum['type'] == 'forum' ? str_repeat(' ', 4) : ($forum['type'] == 'sub' ? str_repeat(' ', 8) : '')).$forum['name']); } $magic['fids'] = explode("\t", $magic['forum']); return $settings; } function setsetting(&$magicnew, &$parameters) { global $_G; $magicnew['forum'] = is_array($parameters['fids']) && !empty($parameters['fids']) ? implode("\t",$parameters['fids']) : ''; } function usesubmit() { global $_G; if(empty($_GET['tid'])) { showmessage(lang('magic/bump', 'bump_info_nonexistence')); } $thread = getpostinfo($_GET['tid'], 'tid', array('fid', 'authorid', 'subject')); $this->_check($thread['fid']); C::t('forum_thread')->update($_GET['tid'], array('moderated' => 1, 'lastpost' => TIMESTAMP)); usemagic($this->magic['magicid'], $this->magic['num']); updatemagiclog($this->magic['magicid'], '2', '1', '0', 0, 'tid', $_GET['tid']); updatemagicthreadlog($_GET['tid'], $this->magic['magicid'], 'BMP'); if($thread['authorid'] != $_G['uid']) { notification_add($thread['authorid'], 'magic', lang('magic/bump', 'bump_notification'), array('tid' => $_GET['tid'], 'subject' => $thread['subject'], 'magicname' => $this->magic['name'])); } showmessage(lang('magic/bump', 'bump_succeed'), dreferer(), array(), array('alert' => 'right', 'showdialog' => 1, 'locationtime' => true)); } function show() { global $_G; $tid = !empty($_GET['id']) ? dhtmlspecialchars($_GET['id']) : ''; if($tid) { $thread = getpostinfo($_GET['id'], 'tid', array('fid')); $this->_check($thread['fid']); } magicshowtype('top'); magicshowsetting(lang('magic/bump', 'bump_info'), 'tid', $tid, 'text'); magicshowtype('bottom'); } function buy() { global $_G; if(!empty($_GET['id'])) { $thread = getpostinfo($_GET['id'], 'tid', array('fid')); $this->_check($thread['fid']); } } function _check($fid) { if(!checkmagicperm($this->parameters['forum'], $fid)) { showmessage(lang('magic/bump', 'bump_info_noperm')); } } } ?>