سلام دوست عزیز
فایل های image.php و Default.php درون پوشه tmpl کامپوننت هستند.
و فایل view.html.php درون کامپوننت حاوی کدهای زیر است
<?php
defined('_JEXEC') || die;
class payViewpayList extends JViewLegacy
{
protected $items;
protected $pagination;
public function display($tpl = null)
{
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
$this->addToolBar();
$errors = $this->get('Errors');
if(count($errors))
{
JFactory::getApplication()->enqueueMessage(implode('<br />', $errors), 'error');
return;
}
parent::display($tpl);
$this->setDocument();
}
protected function addToolBar()
{
JToolBarHelper::title(JText::_('تراکنش ها'), 'pay');
JToolbarHelper::preferences('com_pay');
}
protected function setDocument()
{
JFactory::getDocument()->setTitle(JText::_('تراکنش ها'));
}
}
?>
ممنون میشوم بفرمایید چه کاری بایستی انجام دهم درون این فایل View