فقط متن را ویرایش میکنم اما باز هم اررور میده
این هم نمونه
<?php
/**
* @package Helix Framework
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2013 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
//no direct accees
defined ('_JEXEC') or die('resticted aceess');
class HelixFeatureFooter {
private $helix;
public function __construct($helix){
$this->helix = $helix;
}
public function onHeader(){
}
public function onFooter(){
}
public function Position(){
return $this->helix->Param('footer_position');
}
public function onPosition()
{
ob_start();
//Helix Logo
if ($this->helix->Param('show_helix_logo')) : ?>
<div class="helix-framework">
<a class="helix-logo" target="_blank" title="فروشگاه شما" href="http://www.mysite.ir">
این سایت در ساماندهی به ثبت رسیده است
</a>
</div>
<?php endif;
//Copyright
if( $this->helix->Param('showcp') ) {?>
<span class="copyright">
<a class="helix-logo" target="_blank" title="فروشگاه شما" href="http://www.mysite.ir">
این سایت در ساماندهی به ثبت رسیده است
</a>
</span>
<?php
}
//Joomla Credit
if ($this->helix->Param('jcredit'))?>
<span class="powered-by">
<a class="helix-logo" target="_blank" title="فروشگاه شما" href="http://www.mysite.ir">
این سایت در ساماندهی به ثبت رسیده است
</a>
</span>
<?php
if( $this->helix->Param('validator') )
echo '<span class="validation-link">' . JText::_('Valid') . ' <a target="_blank" href="http://validator.w3.org/check/referer">XHTML</a> ' . JText::_('and') .' <a target="_blank" href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">CSS</a></span>';
return ob_get_clean();
}
}