Your IP : 216.73.216.201


Current Path : /home/sunflowe/www2/vacancesfloride/_AncienSite/components/com_sh404sef/sef_ext/
Upload File :
Current File : /home/sunflowe/www2/vacancesfloride/_AncienSite/components/com_sh404sef/sef_ext/com_poll.php

<?php
/**
 * sh404SEF support for com_poll component.
 * Copyright Yannick Gaultier (shumisha) - 2007
 * shumisha@gmail.com
 * @version     $Id: com_poll.php 1018 2009-09-04 21:41:47Z silianacom-svn $
 * {shSourceVersionTag: Version x - 2007-09-20}
 */
 
defined( '_JEXEC' ) or die( 'Direct Access to this location is not allowed.' );

// ------------------  standard plugin initialize function - don't change ---------------------------
global $sh_LANG;
$sefConfig = & shRouter::shGetConfig();  
$shLangName = '';
$shLangIso = '';
$title = array();
$shItemidString = '';
$dosef = shInitializePlugin( $lang, $shLangName, $shLangIso, $option);
if ($dosef == false) return;
// ------------------  standard plugin initialize function - don't change ---------------------------

// ------------------  load language file - adjust as needed ----------------------------------------
$shLangIso = shLoadPluginLanguage( 'com_poll', $shLangIso, '_COM_SEF_SH_POLL_VOTE');
// ------------------  load language file - adjust as needed ----------------------------------------

$task = isset($task) ? $task : null; 
switch ($task) {
  case 'vote':
	  $title[] = $sh_LANG[$shLangIso]['_COM_SEF_SH_POLL_VOTE'];
	break;
  default:
    $title[] = $sh_LANG[$shLangIso]['_COM_SEF_SH_POLL_RESULTS'];                                         
  break;
}

if (!empty($id)) {
   $query = 'SELECT title, id FROM #__polls WHERE id = "'.$id.'"';
   $database->setQuery($query);
   if (shTranslateURL($option, $shLangName))
     $pollTitle = $database->loadObject( );
   else  $pollTitle = $database->loadObject( false);
   if ($database->getErrorNum()) {
    JError::raiseError(500, $database->stderr() );
   } 
   else $title[] = $pollTitle->title;
  }
else $title[] = '/'; // V 1.2.4.s
    
shRemoveFromGETVarsList('option');
shRemoveFromGETVarsList('Itemid');
shRemoveFromGETVarsList('lang');
if (!empty($task))
  shRemoveFromGETVarsList('task');
if (!empty($id))  
  shRemoveFromGETVarsList('id');

// ------------------  standard plugin finalize function - don't change ---------------------------  
if ($dosef){
   $string = shFinalizePlugin( $string, $title, $shAppendString, $shItemidString, 
      (isset($limit) ? @$limit : null), (isset($limitstart) ? @$limitstart : null), 
      (isset($shLangName) ? @$shLangName : null));
}      
// ------------------  standard plugin finalize function - don't change ---------------------------

?>