123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: task_post.php 26754 2011-12-22 08:14:22Z zhengqingpeng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- class task_post {
- var $version = '1.0';
- var $name = 'post_name';
- var $description = 'post_desc';
- var $copyright = '<a href="http://www.comsenz.com" target="_blank">Comsenz Inc.</a>';
- var $icon = '';
- var $period = '';
- var $periodtype = 0;
- var $conditions = array(
- 'act' => array(
- 'title' => 'post_complete_var_act',
- 'type' => 'mradio',
- 'value' => array(
- array('newthread', 'post_complete_var_act_newthread'),
- array('newreply', 'post_complete_var_act_newreply'),
- array('newpost', 'post_complete_var_act_newpost'),
- ),
- 'default' => 'newthread',
- 'sort' => 'complete',
- ),
- 'forumid' => array(
- 'title' => 'post_complate_var_forumid',
- 'type' => 'select',
- 'value' => array(),
- 'sort' => 'complete',
- ),
- 'threadid' => array(
- 'title' => 'post_complate_var_threadid',
- 'type' => 'text',
- 'value' => '',
- 'sort' => 'complete',
- ),
- 'num' => array(
- 'title' => 'post_complete_var_num',
- 'type' => 'text',
- 'value' => '',
- 'sort' => 'complete',
- ),
- 'time' => array(
- 'title' => 'post_complete_var_time',
- 'type' => 'text',
- 'value' => '',
- 'sort' => 'complete',
- )
- );
- function task_post() {
- global $_G;
- loadcache('forums');
- $this->conditions['forumid']['value'][] = array(0, ' ');
- if(empty($_G['cache']['forums'])) $_G['cache']['forums'] = array();
- foreach($_G['cache']['forums'] as $fid => $forum) {
- $this->conditions['forumid']['value'][] = array($fid, ($forum['type'] == 'forum' ? str_repeat(' ', 4) : ($forum['type'] == 'sub' ? str_repeat(' ', 8) : '')).$forum['name'], $forum['type'] == 'group' ? 1 : 0);
- }
- }
- function csc($task = array()) {
- global $_G;
- $taskvars = array('num' => 0);
- foreach(C::t('common_taskvar')->fetch_all_by_taskid($task['taskid']) as $taskvar) {
- if($taskvar['value']) {
- $taskvars[$taskvar['variable']] = $taskvar['value'];
- }
- }
- $taskvars['num'] = $taskvars['num'] ? $taskvars['num'] : 1;
- $tbladd = $sqladd = '';
- if($taskvars['act'] == 'newreply' && $taskvars['threadid']) {
- $threadid = $taskvars['threadid'];
- } else {
- if($taskvars['forumid']) {
- $forumid = $taskvars['forumid'];
- }
- if($taskvars['author']) {
- return TRUE;
- }
- }
- if($taskvars['act']) {
- if($taskvars['act'] == 'newthread') {
- $first = '1';
- } elseif($taskvars['act'] == 'newreply') {
- $first = '0';
- }
- }
- $starttime = $task['applytime'];
- if($taskvars['time'] = floatval($taskvars['time'])) {
- $endtime = $task['applytime'] + 3600 * $taskvars['time'];
- }
- $num = C::t('forum_post')->count_by_search(0, $threadid, null, 0, $forumid, $_G['uid'], null, $starttime, $endtime, null, $first);
- if($num && $num >= $taskvars['num']) {
- return TRUE;
- } elseif($taskvars['time'] && TIMESTAMP >= $task['applytime'] + 3600 * $taskvars['time'] && (!$num || $num < $taskvars['num'])) {
- return FALSE;
- } else {
- return array('csc' => $num > 0 && $taskvars['num'] ? sprintf("%01.2f", $num / $taskvars['num'] * 100) : 0, 'remaintime' => $taskvars['time'] ? $task['applytime'] + $taskvars['time'] * 3600 - TIMESTAMP : 0);
- }
- }
- function view($task, $taskvars) {
- global $_G;
- $return = $value = '';
- if(!empty($taskvars['complete']['forumid'])) {
- $value = intval($taskvars['complete']['forumid']['value']);
- loadcache('forums');
- $value = '<a href="forum.php?mod=forumdisplay&fid='.$value.'"><strong>'.$_G['cache']['forums'][$value]['name'].'</strong></a>';
- } elseif(!empty($taskvars['complete']['threadid'])) {
- $value = intval($taskvars['complete']['threadid']['value']);
- $thread = C::t('forum_thread')->fetch($value);
- $value = '<a href="forum.php?mod=viewthread&tid='.$value.'"><strong>'.($thread['subject'] ? $thread['subject'] : 'TID '.$value).'</strong></a>';
- } elseif(!empty($taskvars['complete']['author'])) {
- $value = $taskvars['complete']['author']['value'];
- $authorid = C::t('common_member')->fetch_uid_by_username($value);
- $value = '<a href="home.php?mod=space&uid='.$authorid.'"><strong>'.$value.'</strong></a>';
- }
- $taskvars['complete']['num']['value'] = intval($taskvars['complete']['num']['value']);
- $taskvars['complete']['num']['value'] = $taskvars['complete']['num']['value'] ? $taskvars['complete']['num']['value'] : 1;
- if($taskvars['complete']['act']['value'] == 'newreply') {
- if($taskvars['complete']['threadid']) {
- $return .= lang('task/post', 'task_complete_act_newreply_thread', array('value' => $value, 'num' => $taskvars['complete']['num']['value']));
- } else {
- $return .= lang('task/post', 'task_complete_act_newreply_author', array('value' => $value, 'num' => $taskvars['complete']['num']['value']));
- }
- } else {
- if($taskvars['complete']['forumid']) {
- $return .= lang('task/post', 'task_complete_forumid', array('value' => $value));
- }
- if($taskvars['complete']['act']['value'] == 'newthread') {
- $return .= lang('task/post', 'task_complete_act_newthread', array('num' => $taskvars['complete']['num']['value']));
- } else {
- $return .= lang('task/post', 'task_complete_act_newpost', array('num' => $taskvars['complete']['num']['value']));
- }
- }
- return $return;
- }
- function sufprocess($task) {
- }
- }
- ?>
|