예제 #1
0
    function index()
    {
        OutputModes(array('xhtml', 'fbml'));
        if (!CheckPermissions('public')) {
            return;
        }
        //poll handling
        $poll_id = $this->polls_model->GetDisplayedPoll();
        $user_voted = $this->polls_model->HasUserVoted($poll_id, $this->user_auth->entityId);
        $poll_show_results = false;
        if ($poll_id && !$user_voted) {
            if (isset($_POST['submit_vote'])) {
                if ($this->input->post('poll_vote')) {
                    if ($this->polls_model->IsChoicePartOfPoll($poll_id, $this->input->post('poll_vote'))) {
                        $this->polls_model->SetUserPollVote($poll_id, $this->user_auth->entityId, $this->input->post('poll_vote'));
                        $this->messages->AddMessage('success', 'Your vote has been cast.');
                        $user_voted = true;
                    } else {
                        $this->messages->AddMessage('error', 'Invalid option.');
                    }
                }
            } elseif (isset($_POST['submit_results'])) {
                $poll_show_results = true;
            }
        } else {
            $poll_show_results = true;
        }
        if ('fbml' === OutputMode()) {
            return $this->_FacebookHome();
        }
        $this->pages_model->SetPageCode('home_main');
        $this->load->library('image');
        //Various arrays defined
        $data = array();
        //Stores all data to be passed to view
        $res = array();
        $data['welcome_title'] = $this->pages_model->GetPropertyText('welcome_title');
        $data['welcome_text'] = $this->pages_model->GetPropertyWikitext('welcome_text');
        $data['articles'] = array('uninews' => array(), 'sport' => array(), 'features' => array(), 'arts' => array(), 'videocasts' => array(), 'lifestyle' => array(), 'blogs' => array());
        // Get the article ids of all articles to be displayed
        $article_all_ids = $this->Home_Hack_Model->getLatestArticleIds(array('uninews' => 3, 'sport' => 3, 'features' => 1, 'arts' => 1, 'videocasts' => 1, 'lifestyle' => 1, 'blogs' => 1));
        //$this->messages->AddDumpMessage('ids',$article_all_ids);
        // Create an array to map an article id to an article type
        $article_base_types = array();
        foreach ($article_all_ids as $type => $ids) {
            foreach ($ids as $id) {
                $article_base_types[$id] = $type;
            }
        }
        // Get the ids of articles which require summaries
        $article_summary_ids = array();
        if (count($article_all_ids['uninews']) > 0) {
            $article_summary_ids[] = $article_all_ids['uninews'][0];
        }
        if (count($article_all_ids['sport']) > 0) {
            $article_summary_ids[] = $article_all_ids['sport'][0];
        }
        if (count($article_all_ids['features']) > 0) {
            $article_summary_ids[] = $article_all_ids['features'][0];
        }
        if (count($article_all_ids['arts']) > 0) {
            $article_summary_ids[] = $article_all_ids['arts'][0];
        }
        if (count($article_all_ids['videocasts']) > 0) {
            $article_summary_ids[] = $article_all_ids['videocasts'][0];
        }
        // Get the article summaries, create html for image tags
        $article_summaries = $this->Home_Hack_Model->getArticleSummaries($article_summary_ids, '%W, %D %M %Y');
        foreach ($article_summaries as $summary) {
            $type = $article_base_types[$summary['id']];
            $summary['photo_xhtml'] = $this->image->getThumb($summary['photo_id'], 'medium', false, array('class' => 'left'));
            $data['articles'][$type][] = $summary;
        }
        // Get the ids of articles which require titles
        $article_title_ids = array();
        foreach ($article_all_ids as $type => $ids) {
            foreach ($ids as $id) {
                if (!in_array($id, $article_summary_ids)) {
                    $article_title_ids[] = $id;
                }
            }
        }
        // Get the article titles
        $article_titles = $this->Home_Hack_Model->getArticleTitles($article_title_ids);
        foreach ($article_titles as $title) {
            $type = $article_base_types[$title['id']];
            $title['photo_xhtml'] = $this->image->getThumb($title['photo_id'], 'small', false, array('class' => 'left'));
            $data['articles'][$type][] = $title;
        }
        // Get latest comments made on articles
        $this->load->library('comment_views');
        $data['latest_comments'] = $this->comment_views->GetLatestComments();
        //Obtain Links
        if ($this->user_auth->isLoggedIn) {
            $data['link'] = $this->Links_Model->GetUserLinks($this->user_auth->entityId);
        } else {
            $data['link'] = $this->Links_Model->GetUserLinks(0);
        }
        //Obtain weather
        $data['weather_forecast'] = $this->Home_Model->GetWeather();
        //Obtain quote
        $data['quote'] = $this->Home_Model->GetQuote();
        //Obtain banner
        $data['banner'] = $this->Home_Model->GetBannerImageForHomepage();
        //Obtain specials
        //list here the specials to get, along with their title
        $specials = array(array('lifestyle', 'Latest Lifestyle'), array('blogs', 'Latest Blog'));
        //foreach type given setup the data, assumes [0] is has a small image and heading
        foreach ($specials as $special) {
            $data['special'][$special[0]]['title'] = $special[1];
            if (isset($data['articles'][$special[0]][0])) {
                $data['special'][$special[0]]['show'] = true;
                $data['special'][$special[0]]['data'] = $data['articles'][$special[0]][0];
            } else {
                $data['special'][$special[0]]['show'] = false;
            }
        }
        /* this is the old method, getting articles set using specials
        		$specials_types = $this->Article_Model->getMainArticleTypes();
        		foreach ($specials_types as $special){
        			$special_id = $this->News_model->GetLatestFeaturedId($special['codename']);
        			$data['special'][$special['codename']]['title'] = $special['name'];
        			if(!empty($special_id)) {
        				$data['special'][$special['codename']]['show'] = true;
        				$data['special'][$special['codename']]['data'] = $this->News_model->GetSummaryArticle($special_id);
        			}
        			else {
        				$data['special'][$special['codename']]['show'] = false;
        			}
        		}*/
        // Minifeeds
        list($data['events'], $data['todo']) = $this->_GetMiniCalendars();
        // Poll data
        if ($poll_id) {
            $data['poll_vote_box'] = new PollsVoteBox($this->polls_model->GetPollDetails($poll_id), $this->polls_model->GetPollChoiceVotes($poll_id), $user_voted, $poll_show_results);
        } else {
            $data['poll_vote_box'] = null;
        }
        /**
         *	@brief	TEMPORARY HACKED FOR ROSES 2008
         *	@todo	Remove after Roses and incorporate ideas into new flexi-box homepage
         *	@author	Chris Travis (cdt502 - ctravis@gmail.com)
         *	@date	27th April 2008
         */
        $r8s_sql = 'SELECT		photo_tags.photo_tag_photo_id
					FROM		tags,
								photo_tags,
								photos
					WHERE		tags.tag_name = \'roses\'
					AND			tags.tag_type = \'photo\'
					AND			tags.tag_deleted = 0
					AND			tags.tag_id = photo_tags.photo_tag_tag_id
					AND			photo_tags.photo_tag_photo_id = photos.photo_id
					ORDER BY	photos.photo_timestamp DESC
					LIMIT		0, 5';
        $r8s_query = $this->db->query($r8s_sql);
        $data['roses_slideshow'] = array();
        foreach ($r8s_query->result_array() as $r8s_photo) {
            $data['roses_slideshow'][] = array('id' => $r8s_photo['photo_tag_photo_id'], 'xhtml' => $this->image->getThumb($r8s_photo['photo_tag_photo_id'], 'small', false));
        }
        /* END TEMPORARY CODE */
        // Set up the public frame
        $this->main_frame->SetContentSimple('general/home2', $data);
        $this->main_frame->IncludeCss('stylesheets/home.css');
        $this->main_frame->IncludeJs('javascript/prototype.js');
        $this->main_frame->IncludeJs('javascript/scriptaculous.js?load=effects,dragdrop');
        // Load the public frame view (which will load the content view)
        $this->main_frame->Load();
    }
/**
 * @param $Permission string or array of the following levels (in the order that
 *	they are to be obtained:
 *	- 'public' - anyone
 *	- 'student' - must be logged on
 *	- 'vip' - must be logged on as a vip
 *	- 'vip+pr' - must be logged on as a vip or a pr rep
 *	- 'office' - must be in the office
 *	- 'pr' - must be in the office as a pr rep
 *	- 'editor' - must be in the office as an editor
 *	- 'admin' - must be in the office as an administrator
 * @param $LoadMainFrame bool Whether to load the mainframe if permision hasn't
 *	 yet been acquired (for the login screen).
 * @return bool Whether enough privilages.
 */
function CheckPermissions($Permission = 'public', $LoadMainFrame = TRUE, $NoPost = FALSE)
{
    // Start a session
    $CI =& get_instance();
    // Initialisation stuff
    $CI->load->library('messages');
    $CI->load->model('user_auth');
    $CI->load->model('pages_model');
    // Decide on output format
    if (isset($_POST['fb_sig'])) {
        /// @todo AUTHENTICATE FACEBOOK
        OutputMode('fbml');
        global $_SESSION;
        $_SESSION = array();
    } else {
        if (isset($_GET['opmode'])) {
            OutputMode($_GET['opmode']);
        } else {
            OutputMode(DefaultOutputMode());
        }
    }
    // If the output mode is not supported, show a 404
    if (!in_array(OutputMode(), OutputModes())) {
        show_404();
    }
    // Translate some auxilliary permissions
    $auxilliary_permissions = array('moderator' => 'editor');
    if (array_key_exists($Permission, $auxilliary_permissions)) {
        $Permission = $auxilliary_permissions[$Permission];
    }
    $user_level = GetUserLevel();
    // URL analysis regarding vip area
    $thru_viparea = $CI->uri->total_segments() >= 1 && $CI->uri->segment(1) === 'viparea';
    $thru_office_pr = $CI->uri->total_segments() >= 3 && $CI->uri->segment(1) === 'office' && $CI->uri->segment(2) === 'pr' && $CI->uri->segment(3) === 'org';
    $thru_office_manage = $CI->uri->total_segments() >= 2 && $CI->uri->segment(1) === 'office' && $CI->uri->segment(2) === 'manage';
    $company_short_name = $CI->config->Item('company_organisation_id');
    $organisation_specified = FALSE;
    if ($thru_viparea) {
        if ($CI->uri->total_segments() > 1) {
            $organisation_shortname = $CI->uri->segment(2);
            $organisation_specified = TRUE;
            VipSegments(2);
        } else {
            $organisation_shortname = $CI->user_auth->organisationShortName;
        }
        // don't allow access to vip area of the company, only through office/manage
        if ($organisation_shortname === $company_short_name) {
            $organisation_shortname = '';
            $CI->user_auth->logoutOrganisation();
            redirect('');
        }
        vip_url('viparea/' . $organisation_shortname . '/', TRUE);
    } elseif ($thru_office_pr) {
        $organisation_shortname = $CI->uri->segment(4);
        $organisation_specified = TRUE;
        VipSegments(4);
        vip_url('office/pr/org/' . $organisation_shortname . '/', TRUE);
    } elseif ($thru_office_manage) {
        $organisation_shortname = $company_short_name;
        $organisation_specified = TRUE;
        VipSegments(2);
        vip_url('office/manage/', TRUE);
    } else {
        $organisation_shortname = '';
    }
    VipOrganisation(FALSE, $organisation_shortname);
    VipOrganisation(TRUE, $CI->user_auth->organisationShortName);
    // Login actions for student/vip/office logins
    $student_login_action = array('redirect+url', 'login/main', 'post' => TRUE);
    if ($organisation_specified) {
        $vip_login_action = array('redirect+url', 'login/vipswitch/' . $organisation_shortname, 'post' => TRUE);
    } else {
        $vip_login_action = array('redirect+url', 'login/vip', 'post' => TRUE);
    }
    $office_login_action = array('redirect+url', 'login/office', 'post' => TRUE);
    // If vip+pr, use URI to decide which
    if ($Permission === 'vip+pr') {
        $Permission = $thru_viparea ? 'vip' : ($thru_office_pr ? 'pr' : ($thru_office_manage ? 'manage' : ''));
    } elseif ($Permission === 'vip') {
        $Permission = $thru_viparea ? 'vip' : ($thru_office_manage ? 'manage' : '');
    } elseif ($thru_office_pr && $Permission !== 'pr' || $thru_viparea && $Permission !== 'vip' || $thru_office_manage && $Permission !== 'manage') {
        $Permission = '';
    }
    // Matrix indexed by user level, then page level, of behaviour
    // Possible values:
    //	NULL/notset	http error 404
    //	TRUE		allowed
    //	array		specially handled
    //	otherwise	access denied
    if ($user_level === 'public') {
        $action_levels = array('public' => TRUE, 'student' => $student_login_action, 'vip' => $student_login_action, 'office' => $student_login_action, 'pr' => $student_login_action, 'editor' => $student_login_action, 'manage' => $student_login_action, 'admin' => $student_login_action);
    } elseif ($user_level === 'student') {
        $action_levels = array('public' => TRUE, 'student' => TRUE, 'vip' => $vip_login_action, 'office' => $office_login_action, 'pr' => $office_login_action, 'editor' => $office_login_action, 'manage' => $office_login_action, 'admin' => $office_login_action);
    } elseif ($user_level === 'organisation') {
        // Logged in from public as organisation
        $allow_vip = array_key_exists($organisation_shortname, $CI->user_auth->allTeams);
        $action_levels = array('public' => TRUE, 'student' => TRUE, 'vip' => $allow_vip, 'office' => FALSE, 'pr' => FALSE, 'editor' => FALSE, 'manage' => FALSE, 'admin' => FALSE);
        if ($allow_vip) {
            VipOrganisationId(FALSE, $CI->user_auth->allTeams[$organisation_shortname][0]);
            VipOrganisationName(FALSE, $CI->user_auth->allTeams[$organisation_shortname][1]);
            VipOrganisationId(TRUE, $CI->user_auth->organisationLogin);
            VipOrganisationName(TRUE, $CI->user_auth->organisationName);
            VipMode('viparea');
            VipLevel('write', TRUE);
        }
    } elseif ($user_level === 'vip') {
        // Logged in as student and in VIP area
        $vip_door_open_action = array('message', 'warning', HtmlButtonLink(site_url('logout/vip' . $CI->uri->uri_string()), 'Leave VIP Area') . $CI->pages_model->GetPropertyText('login:warn_open_vip', TRUE), TRUE);
        $allow_vip = array_key_exists($organisation_shortname, $CI->user_auth->allTeams);
        if ($allow_vip) {
            $vip_accessible = TRUE;
            VipOrganisationId(FALSE, $CI->user_auth->allTeams[$organisation_shortname][0]);
            VipOrganisationName(FALSE, $CI->user_auth->allTeams[$organisation_shortname][1]);
            VipOrganisationId(TRUE, $CI->user_auth->organisationLogin);
            VipOrganisationName(TRUE, $CI->user_auth->organisationName);
            VipMode('viparea');
            VipLevel('write', TRUE);
        } else {
            // check permissions to access this organisation
            $vip_organisations = $CI->user_auth->getOrganisationLogins();
            foreach ($vip_organisations as $organisation) {
                if ($organisation['organisation_directory_entry_name'] == $organisation_shortname) {
                    $vip_accessible = $vip_login_action;
                    break;
                }
            }
            if (!isset($vip_accessible)) {
                $vip_accessible = FALSE;
            }
        }
        $action_levels = array('public' => $vip_door_open_action, 'student' => $vip_door_open_action, 'vip' => $vip_accessible, 'office' => $office_login_action, 'pr' => $office_login_action, 'editor' => $office_login_action, 'manage' => $office_login_action, 'admin' => $office_login_action);
    } else {
        // Office
        // Door left open actions
        $office_door_open_action = array('message', 'warning', HtmlButtonLink(site_url('logout/office' . $CI->uri->uri_string()), 'Leave Office') . $CI->pages_model->GetPropertyText('login:warn_open_office', TRUE), TRUE);
        $admin_door_open_action = $office_door_open_action;
        // check permissions to access this organisation
        $manage_accessible = FALSE;
        $vip_organisations = $CI->user_auth->getOrganisationLogins();
        foreach ($vip_organisations as $organisation) {
            if ($organisation['organisation_directory_entry_name'] == $company_short_name) {
                $manage_accessible = TRUE;
                break;
            }
        }
        // Refine further
        if ($user_level === 'office') {
            $action_levels = array('public' => $office_door_open_action, 'student' => $office_door_open_action, 'vip' => $vip_login_action, 'office' => TRUE, 'pr' => 'pr', 'editor' => FALSE, 'manage' => FALSE, 'admin' => FALSE);
        } elseif ($user_level === 'editor') {
            $action_levels = array('public' => $office_door_open_action, 'student' => $office_door_open_action, 'vip' => $vip_login_action, 'office' => TRUE, 'pr' => TRUE, 'editor' => TRUE, 'manage' => $manage_accessible, 'admin' => FALSE);
        } elseif ($user_level === 'admin') {
            $action_levels = array('public' => $admin_door_open_action, 'student' => $admin_door_open_action, 'vip' => $vip_login_action, 'office' => TRUE, 'pr' => TRUE, 'editor' => TRUE, 'manage' => $manage_accessible, 'admin' => TRUE);
        }
        // Change an office user to pr if they rep for the organisation
        static $vipModes = array('pr' => 'office', 'manage' => 'manage');
        if (array_key_exists($Permission, $vipModes)) {
            // Get organisation information
            $CI->db->select('organisation_entity_id AS id,' . 'organisation_name AS name,' . 'organisation_pr_rep AS rep');
            $CI->db->join('entities', 'organisation_entity_id = entity_id', 'inner');
            $CI->db->where(array('organisation_directory_entry_name' => $organisation_shortname, 'entity_deleted = FALSE'));
            $matching_org = $CI->db->get('organisations')->result_array();
            if (empty($matching_org)) {
                $action_levels[$Permission] = FALSE;
            } else {
                $matching_org = $matching_org[0];
                if ($action_levels[$Permission] === 'pr') {
                    $action_levels[$Permission] = TRUE;
                    $rep = $matching_org['rep'] == $CI->user_auth->entityId;
                    if ($rep) {
                        VipLevel('rep', TRUE);
                    } else {
                        VipLevel('read', TRUE);
                    }
                } elseif ($action_levels[$Permission]) {
                    VipLevel('write', TRUE);
                }
                VipOrganisationId(FALSE, $matching_org['id']);
                VipOrganisationName(FALSE, $matching_org['name']);
                VipOrganisationId(TRUE, $matching_org['id']);
                VipOrganisationName(TRUE, $matching_org['name']);
                VipMode($vipModes[$Permission]);
            }
        }
    }
    $access_allowed = FALSE;
    // No permission set or NULL indicates page doesn't exist at this URI
    if (!array_key_exists($Permission, $action_levels) || NULL === $action_levels[$Permission]) {
        return show_404();
    } else {
        $action = $action_levels[$Permission];
        // True is allow
        if (TRUE === $action) {
            $access_allowed = TRUE;
        } elseif (is_array($action)) {
            // Array is special decider
            // Perform action
            switch ($action[0]) {
                case 'handle':
                    $access_allowed = $action[1]($action[2], $Permission);
                    if (array_key_exists(3, $action)) {
                        $CI->messages->AddMessage($action[3], $action[4], FALSE);
                    }
                    break;
                case 'redirect+url':
                    $action[1] .= $CI->uri->uri_string();
                case 'redirect':
                    if (array_key_exists(2, $action)) {
                        $CI->messages->AddMessage($action[2], $action[3]);
                    }
                    if (array_key_exists('post', $action) && $action['post']) {
                        // store post data
                        if (!empty($_POST)) {
                            SetRedirectData($action[1], serialize($_POST));
                        }
                    }
                    // Before redirecting, forward on the redirected post data
                    $post_data = GetRedirectData();
                    if (NULL !== $post_data) {
                        SetRedirectData($action[1], $post_data);
                    }
                    // Do the redirect
                    redirect($action[1]);
                    return FALSE;
                case 'message':
                    $CI->messages->AddMessage($action[1], $action[2], FALSE);
                    $access_allowed = $action[3];
                    break;
                default:
                    break;
            }
        } else {
            // Anything else is disallow
            $CI->messages->AddMessage('warning', 'You do not have the ' . $Permission . ' privilages required!');
            //redirect('');
        }
        // Restore post data
        if ((TRUE === $action || is_array($action)) && !$NoPost) {
            $post_data = GetRedirectData();
            if (NULL !== $post_data) {
                $post_data = @unserialize($post_data);
                if (is_array($post_data)) {
                    if (!isset($_POST)) {
                        global $_POST;
                        $_POST = array();
                    }
                    foreach ($post_data as $key => $value) {
                        $_POST[$key] = $value;
                    }
                }
            }
        }
    }
    if ('fbml' === OutputMode()) {
        $Permission = 'facebookapp';
    } elseif ('ajax' === OutputMode()) {
        $Permission = 'ajax';
    } elseif (FeedOutputMode()) {
        $Permission = 'feed';
    }
    SetupMainFrame($Permission, FALSE);
    if (!$access_allowed && $LoadMainFrame) {
        $CI->load->library('Custom_pages');
        $page = new CustomPageView('error:permissions');
        $CI->main_frame->SetContent($page);
        $CI->main_frame->Load();
    }
    return $access_allowed;
}
예제 #3
0
 function index()
 {
     OutputModes(array('xhtml', 'fbml'));
     if (!CheckPermissions('public')) {
         return;
     }
     if ('fbml' === OutputMode()) {
         return $this->_FacebookHome();
     }
     $this->load->model('home_hack_model');
     $this->load->model('flickr_model');
     $this->load->model('crosswords_model');
     $this->load->model('comments_model');
     $spotlight = $this->home_hack_model->getArticlesByTags(array('front-page'), 1);
     $this->home_hack_model->ignore($spotlight);
     $uninews = $this->home_hack_model->getArticlesByTags(array('news'), 3);
     $sport = $this->home_hack_model->getArticlesByTags(array('sport'), 4);
     $arts = $this->home_hack_model->getArticlesByTags(array('arts'), 4);
     $lifestyle = $this->home_hack_model->getArticlesByTags(array('lifestyle'), 4);
     $photos = $this->flickr_model->getLatestPhotos(9);
     $boxes = array();
     $boxes[] = array('type' => 'spotlight', 'articles' => $spotlight);
     $boxes[] = array('type' => 'article_rollover', 'title' => 'latest news', 'title_link' => '/news', 'articles' => $uninews);
     $boxes[] = array('type' => 'adsense_third', 'last' => true);
     $boxes[] = array('type' => 'article_list', 'title' => 'latest sport', 'title_link' => '/sport', 'size' => '1/3', 'last' => false, 'articles' => $sport);
     $boxes[] = array('type' => 'article_list', 'title' => 'latest arts', 'title_link' => '/arts', 'size' => '1/3', 'last' => false, 'articles' => $arts);
     $boxes[] = array('type' => 'article_list', 'title' => 'latest lifestyle', 'title_link' => '/lifestyle', 'size' => '1/3', 'last' => true, 'articles' => $lifestyle);
     $boxes[] = array('type' => 'photo_bar', 'size' => 'full', 'last' => true, 'photos' => $photos);
     $boxes[] = array('type' => 'adsense_half', 'last' => false);
     //		$boxes[] = array(
     //			'type'			=>	'advert_half',
     //			'image'			=>	'/images/adverts/woodstock.jpg',
     //			'image_title'		=>	'RAG Woodstock Saturday Week 9',
     //			'link'			=>	'http://www.facebook.com/event.php?eid=100229538904',
     //			'last'			=>	false
     //		);
     $comments_config = $this->config->item('comments');
     $boxes[] = array('type' => 'comments_latest', 'title' => 'latest comments', 'title_link' => '', 'size' => '1/2', 'last' => true, 'comments' => $this->comments_model->GetLatestComments(10), 'comments_per_page' => $comments_config['max_per_page']);
     $boxes[] = array('type' => 'crossword_latest', 'title' => 'latest crosswords', 'title_link' => '/crosswords', 'size' => '1/2', 'last' => false, 'next' => $this->crosswords_model->GetCrosswords(null, null, null, true, null, null, 1, 'ASC'), 'latest' => $this->crosswords_model->GetCrosswords(null, null, null, null, true, null, 2, 'DESC'));
     $data = array('boxes' => $boxes);
     $this->pages_model->SetPageCode('home_main');
     $this->main_frame->SetData('menu_tab', 'home');
     $this->main_frame->SetContentSimple('flexibox/layout', $data);
     $this->main_frame->IncludeCss('stylesheets/home.css');
     $this->main_frame->Load();
     //Obtain weather
     //$data['weather_forecast'] = $this->Home_Model->GetWeather();
     // Minifeeds
     //list($data['events'], $data['todo']) = $this->_GetMiniCalendars();
     // Poll data
     /*
     if ($poll_id)
     {
     	$data['poll_vote_box'] = new PollsVoteBox(
     		$this->polls_model->GetPollDetails($poll_id),
     		$this->polls_model->GetPollChoiceVotes($poll_id),
     		$user_voted,
     		$poll_show_results
     	);
     }
     else
     {
     	$data['poll_vote_box'] = null;
     }
     */
     //poll handling
     /*
     $poll_id = $this->polls_model->GetDisplayedPoll();
     $user_voted = $this->polls_model->HasUserVoted($poll_id, $this->user_auth->entityId);
     $poll_show_results = false;
     if ($poll_id && !$user_voted)
     {
     	if (isset($_POST['submit_vote'])) {
     		if ($this->input->post('poll_vote'))
     		{
     			if ($this->polls_model->IsChoicePartOfPoll($poll_id, $this->input->post('poll_vote')))
     			{
     				$this->polls_model->SetUserPollVote($poll_id, $this->user_auth->entityId, $this->input->post('poll_vote'));
     				$this->messages->AddMessage('success', 'Your vote has been cast.');
     				$user_voted = true;
     			}
     			else
     			{
     				$this->messages->AddMessage('error', 'Invalid option.');
     			}
     		}
     	}
     	elseif (isset($_POST['submit_results'])) {
     		$poll_show_results = true;
     	}
     } else {
     	$poll_show_results = true;
     }
     */
 }
/*
if ($class === 'error')
	echo 'warning_box"><img src="/images/prototype/homepage/error.png" alt="Error" title="Error"';
elseif ($class === 'warning')
	echo 'warning_box"><img src="/images/prototype/homepage/warning.png" alt="Warning" title="Warning"';
elseif ($class === 'information')
	echo 'information_box"><img src="/images/prototype/homepage/information.png" alt="Information" title="Information"';
elseif ($class === 'success')
	echo 'information_box"><img src="/images/prototype/homepage/sucess.png" alt="Success" title="Success"';
else
	echo 'information_box"><img src="/images/prototype/homepage/questionmark.png" alt="Question" title="Question"';
*/
/// @todo FIXME call text xml
?>

<?php 
if ('fbml' === OutputMode()) {
    // Facebook markup language message
    if ('error' !== $class) {
        $class = 'explanation';
    }
    echo '<fb:' . $class . '><fb:message>';
    echo $text;
    echo '</fb:message></fb:' . $class . '>';
} else {
    // Normal html message
    echo '<div class="message_' . $class . '">' . "\n";
    echo '	<img src="/images/prototype/homepage/' . $class . '.png" alt="' . $class . '" width="30" height="30" />' . "\n";
    echo '	' . $text . "\n";
    echo '</div>' . "\n";
}