Beispiel #1
0
 /**
  * Display queue item.
  *
  * @param int $id		Queue item id.
  * @return \Symfony\Component\HttpFoundation\Response
  */
 public function display_item($id)
 {
     $this->load_item($id);
     // Check auth
     if (!$this->check_auth()) {
         return $this->helper->needs_auth();
     }
     // Display the main queue item
     $data = \queue_overlord::display_queue_item($this->id);
     // Display the posts in the queue (after the posting helper acts)
     \posts_overlord::display_topic_complete($data['topic']);
     $this->display->assign_global_vars();
     $this->generate_navigation('queue');
     $tag = $this->request->variable('tag', 0);
     if ($tag) {
         // Add tag to Breadcrumbs
         $this->display->generate_breadcrumbs(array($this->tags->get_tag_name($tag) => $this->queue->get_url(false, array('tag' => $tag))));
     }
     return $this->helper->render('manage/queue.html', \queue_overlord::$queue[$this->id]['topic_subject']);
 }
Beispiel #2
0
titania::$contrib->assign_details(true);
if (!titania::$config->support_in_titania && titania::$access_level == TITANIA_ACCESS_PUBLIC) {
    titania::needs_auth();
}
// Handle replying/editing/etc
$posting_helper = new titania_posting();
$posting_helper->act('contributions/contribution_support_post.html', titania::$contrib->contrib_id, titania::$contrib->get_url('support'), TITANIA_SUPPORT);
phpbb::$user->add_lang('viewforum');
if ($topic_id) {
    // Subscriptions
    titania_subscriptions::handle_subscriptions(TITANIA_TOPIC, $topic_id, $topic->get_url());
    // Check access level
    if ($topic->topic_access < titania::$access_level || $topic->topic_type == TITANIA_QUEUE_DISCUSSION && !titania::$contrib->is_author && !titania::$contrib->is_active_coauthor && !titania_types::$types[titania::$contrib->contrib_type]->acl_get('queue_discussion')) {
        titania::needs_auth();
    }
    posts_overlord::display_topic_complete($topic);
    titania::page_header(censor_text($topic->topic_subject) . ' - ' . titania::$contrib->contrib_name);
    if (phpbb::$auth->acl_get('u_titania_post')) {
        phpbb::$template->assign_var('U_POST_REPLY', titania_url::append_url($topic->get_url(), array('action' => 'reply')));
    }
    // Canonical URL
    phpbb::$template->assign_var('U_CANONICAL', $topic->get_url());
} else {
    // Subscriptions
    titania_subscriptions::handle_subscriptions(TITANIA_SUPPORT, titania::$contrib->contrib_id, titania::$contrib->get_url('support'));
    // Mark all topics read
    if (request_var('mark', '') == 'topics') {
        titania_tracking::track(TITANIA_SUPPORT, titania::$contrib->contrib_id);
    }
    $data = topics_overlord::display_forums_complete('support', titania::$contrib);
    titania::page_header(titania::$contrib->contrib_name . ' - ' . phpbb::$user->lang['CONTRIB_SUPPORT']);
Beispiel #3
0
 /**
  * Display topic.
  *
  * @param string $contrib_type		Contrib type URL identifier.
  * @param string $contrib			Contrib name clean.
  * @param int $topic_id				Topic id.
  *
  * @return \Symfony\Component\HttpFoundation\Response
  */
 public function display_topic($contrib_type, $contrib, $topic_id)
 {
     // Load the contrib item
     $this->load_contrib($contrib_type, $contrib);
     $this->load_topic($topic_id);
     if (!$this->check_auth(true)) {
         return $this->helper->needs_auth();
     }
     $this->user->add_lang('viewforum');
     // Subscriptions
     $this->subscriptions->handle_subscriptions(TITANIA_TOPIC, $topic_id, $this->topic->get_url(), 'SUBSCRIBE_TOPIC');
     \posts_overlord::display_topic_complete($this->topic);
     $this->template->assign_vars(array('U_CANONICAL' => $this->topic->get_url(), 'U_POST_REPLY' => $this->auth->acl_get('u_titania_post') ? $this->topic->get_url('reply') : ''));
     $this->assign_vars();
     return $this->helper->render('contributions/contribution_support.html', censor_text($this->topic->topic_subject) . ' - ' . $this->contrib->contrib_name);
 }
Beispiel #4
0
                }
                $queue->move($new_tag);
            } else {
                // Generate the list of tags we can move it to
                $extra = '<select name="id">';
                foreach ($tags as $tag_id => $row) {
                    $extra .= '<option value="' . $tag_id . '">' . (isset(phpbb::$user->lang[$row['tag_field_name']]) ? phpbb::$user->lang[$row['tag_field_name']] : $row['tag_field_name']) . '</option>';
                }
                $extra .= '</select>';
                phpbb::$template->assign_var('CONFIRM_EXTRA', $extra);
                titania::confirm_box(false, 'MOVE_QUEUE');
            }
            redirect(titania_url::append_url($base_url, array('q' => $queue->queue_id)));
            break;
    }
    // Display the main queue item
    $data = queue_overlord::display_queue_item($queue_id);
    // Handle replying/editing/etc
    $posting_helper = new titania_posting();
    $posting_helper->act('manage/queue_post.html');
    // Display the posts in the queue (after the posting helper acts)
    posts_overlord::display_topic_complete($data['topic']);
    titania::page_header(queue_overlord::$queue[$queue_id]['topic_subject']);
} else {
    // Subscriptions
    titania_subscriptions::handle_subscriptions(TITANIA_QUEUE, $queue_type, titania_url::$current_page_url);
    queue_overlord::display_queue($queue_type, $tag);
    queue_overlord::display_categories($queue_type, $tag);
    titania::page_header('VALIDATION_QUEUE');
}
titania::page_footer(true, 'manage/queue.html');
Beispiel #5
0
 /**
  * Display the complete queue item (includes the topic)
  *
  * @param int $queue_id
  * @return array data from display_queue_item
  */
 public static function display_queue_item_complete($queue_id)
 {
     $data = self::display_queue_item($queue_id);
     // Display the posts
     posts_overlord::display_topic_complete($data['topic']);
     return $data;
 }