Beispiel #1
0
 /**
  * Add the page title and toolbar.
  *
  * @since	1.6
  */
 protected function addToolbar()
 {
     require_once JPATH_COMPONENT . '/helpers/quick2cart.php';
     $state = $this->get('State');
     $canDo = Quick2CartHelper::getActions();
     if (JVERSION >= '3.0') {
         JToolBarHelper::title(JText::_('COM_QUICK2CART_TITLE_TAXTRATES'), 'list');
     } else {
         JToolBarHelper::title(JText::_('COM_QUICK2CART_TITLE_TAXTRATES'), 'taxrates.png');
     }
     //Check if the form exists before showing the add/edit buttons
     $formPath = JPATH_COMPONENT_ADMINISTRATOR . '/views/taxrate';
     if (file_exists($formPath)) {
         if ($canDo->get('core.create')) {
             JToolBarHelper::addNew('taxrate.add', 'JTOOLBAR_NEW');
         }
         if ($canDo->get('core.edit') && isset($this->items[0])) {
             JToolBarHelper::editList('taxrate.edit', 'JTOOLBAR_EDIT');
         }
     }
     if ($canDo->get('core.edit.state')) {
         if (isset($this->items[0]->state)) {
             JToolBarHelper::divider();
             JToolBarHelper::custom('taxrates.publish', 'publish.png', 'publish_f2.png', 'JTOOLBAR_PUBLISH', true);
             JToolBarHelper::custom('taxrates.unpublish', 'unpublish.png', 'unpublish_f2.png', 'JTOOLBAR_UNPUBLISH', true);
         }
         /*elseif (isset($this->items[0]))
         		{
         			//If this component does not use state then show a direct delete button as we can not trash
         			JToolBarHelper::deleteList('', 'taxrates.delete','JTOOLBAR_DELETE');
         		}*/
         if (isset($this->items[0]->checked_out)) {
             JToolBarHelper::custom('taxrates.checkin', 'checkin.png', 'checkin_f2.png', 'JTOOLBAR_CHECKIN', true);
         }
     }
     //Show trash and delete for components that uses the state field
     if (isset($this->items[0]->state)) {
         /*if ($state->get('filter.state') == -2 && $canDo->get('core.delete'))
         		{
         			JToolBarHelper::deleteList('', 'taxrates.delete','JTOOLBAR_EMPTY_TRASH');
         			JToolBarHelper::divider();
         		}*/
         /*elseif ($canDo->get('core.edit.state'))
         		{
         			JToolBarHelper::trash('taxrates.trash','JTOOLBAR_TRASH');
         			JToolBarHelper::divider();
         		}*/
     }
     if (isset($this->items[0])) {
         if ($canDo->get('core.delete')) {
             JToolBarHelper::deleteList('', 'taxrates.delete', 'JTOOLBAR_DELETE');
         }
     }
     //Set sidebar action - New in 3.0
     if (version_compare(JVERSION, '3.0', 'ge')) {
         JHtmlSidebar::setAction('index.php?option=com_quick2cart&view=taxrates');
         $this->extra_sidebar = '';
     }
 }
Beispiel #2
0
 /**
  * Add the page title and toolbar.
  */
 protected function addToolbar()
 {
     JFactory::getApplication()->input->set('hidemainmenu', true);
     $user = JFactory::getUser();
     $isNew = $this->item->id == 0;
     if ($isNew) {
         $viewTitle = JText::_('COM_QUICK2CART_ADD_ZONE');
     } else {
         $viewTitle = JText::_('COM_QUICK2CART_EDIT_ZONE');
     }
     if (JVERSION >= '3.0') {
         JToolBarHelper::title($viewTitle, 'pencil-2');
     } else {
         JToolBarHelper::title($viewTitle, 'zone.png');
     }
     if (isset($this->item->checked_out)) {
         $checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $user->get('id'));
     } else {
         $checkedOut = false;
     }
     $canDo = Quick2CartHelper::getActions();
     // If not checked out, can save the item.
     if (!$checkedOut && ($canDo->get('core.edit') || $canDo->get('core.create'))) {
         JToolBarHelper::apply('zone.apply', 'JTOOLBAR_APPLY');
         JToolBarHelper::save('zone.save', 'JTOOLBAR_SAVE');
     }
     if (!$checkedOut && $canDo->get('core.create')) {
         JToolBarHelper::custom('zone.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
     }
     // If an existing item, can save to a copy.
     /*if (!$isNew && $canDo->get('core.create')) {
     			JToolBarHelper::custom('zone.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false);
     		}*/
     if (empty($this->item->id)) {
         JToolBarHelper::cancel('zone.cancel', 'JTOOLBAR_CANCEL');
     } else {
         JToolBarHelper::cancel('zone.cancel', 'JTOOLBAR_CLOSE');
     }
 }
 public function display($cachable = false, $urlparams = false)
 {
     require_once JPATH_COMPONENT . '/helpers/quick2cart.php';
     $vName = JFactory::getApplication()->input->getCmd('view', 'dashboard');
     JFactory::getApplication()->input->set('view', $vName);
     $layout = JFactory::getApplication()->input->getCmd('layout', 'default');
     $jinput = JFactory::getApplication()->input;
     $vLayout = '';
     // 	Generally we keep view name and model name same.
     //$mName = $vName;
     switch ($vName) {
         case 'dashboard':
             $mName = 'Dashboard';
             $vLayout = $jinput->get('layout', 'dashboard');
             break;
         case 'stores':
             $mName = 'stores';
             $vLayout = $jinput->get('layout', 'default');
             break;
         case "vendor":
             $mName = 'vendor';
             $vLayout = $jinput->get('layout', 'default');
             break;
         case 'products':
             $mName = 'products';
             $vLayout = $jinput->get('layout', 'default');
             break;
         case 'orders':
             $mName = 'orders';
             $vLayout = $jinput->get('layout', $layout);
             break;
         case 'salesreport':
             $mName = 'salesreport';
             $vLayout = $jinput->get('layout', 'default');
             break;
         case 'delaysreport':
             $mName = 'delaysreport';
             $vLayout = $jinput->get('layout', 'default');
             break;
             /*case 'attributes':
             			$mName = 'attributes';
             			$vLayout = $jinput->get('layout', 'default');
             		break;*/
         /*case 'attributes':
         			$mName = 'attributes';
         			$vLayout = $jinput->get('layout', 'default');
         		break;*/
         case 'managecoupon':
             $mName = 'Managecoupon';
             $vLayout = $jinput->get('layout', 'default');
             break;
         default:
             $mName = 'reports';
             $vLayout = $jinput->get('layout', 'payouts');
             break;
         case 'countries':
             $mName = 'countries';
             $vLayout = $jinput->get('layout', 'default');
             break;
         case 'shipping':
             $mName = 'shipping';
             $vLayout = $jinput->get('layout', 'default');
             break;
         case 'shipprofiles':
             $mName = 'shipprofiles';
             $vLayout = $jinput->get('layout', 'default');
             break;
         case 'shipprofile':
             $mName = 'shipprofile';
             $vLayout = $jinput->get('layout', 'edit');
             break;
     }
     if ($vLayout) {
         JFactory::getApplication()->input->set('layout', $vLayout);
     }
     Quick2CartHelper::addSubmenu($vName, $vLayout);
     parent::display();
     return $this;
 }