File: /home/confeduphaar/backip-old-files/components/com_virtuemart/views/vendor/view.html.php
<?php
/**
*
* List/add/edit/remove Vendors
*
* @package VirtueMart
* @subpackage User
* @author Max Milbers
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: view.html.php 5133 2011-12-19 12:02:41Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
// Set to '0' to use tabs i.s.o. sliders
// Might be a config option later on, now just here for testing.
define('__VM_USER_USE_SLIDERS', 0);
/**
* HTML View class for maintaining the list of users
*
* @package VirtueMart
* @subpackage Vendor
* @author Max Milbers
*/
class VirtuemartViewVendor extends VmView {
/**
* Displays the view, collects needed data for the different layouts
*
* Okey I try now a completly new idea.
* We make a function for every tab and the display is getting the right tabs by an own function
* putting that in an array and after that we call the preparedataforlayoutBlub
*
* @author Max Milbers
*/
function display($tpl = null) {
$document = JFactory::getDocument();
$mainframe = JFactory::getApplication();
$pathway = $mainframe->getPathway();
$layoutName = $this->getLayout();
$model = VmModel::getModel();
$virtuemart_vendor_id = vRequest::getInt('virtuemart_vendor_id',false);
// if ($layoutName=='default') {
if (empty($virtuemart_vendor_id)) {
$document->setTitle( vmText::_('COM_VIRTUEMART_VENDOR_LIST') );
$pathway->addItem(vmText::_('COM_VIRTUEMART_VENDOR_LIST'));
$this->vendors = $model->getVendors();
$model->addImages($this->vendors);
} else {
$this->vendor = $model->getVendor($virtuemart_vendor_id);
$model->addImages($this->vendor);
if (VmConfig::get ('enable_content_plugin', 0)) {
shopFunctionsF::triggerContentPlugin($this->vendor, 'vendor','vendor_store_desc');
shopFunctionsF::triggerContentPlugin($this->vendor, 'vendor','vendor_terms_of_service');
}
//$userId = VirtueMartModelVendor::getUserIdByVendorId($virtuemart_vendor_id);
if ($layoutName=='tos') {
$customtitle = vmText::_('COM_VIRTUEMART_VENDOR_TOS');
$pathway->addItem(vmText::_('COM_VIRTUEMART_VENDOR_TOS'));
}
elseif ($layoutName=='contact') {
$user = JFactory::getUser();
$customtitle = vmText::_('COM_VIRTUEMART_VENDOR_CONTACT');
$pathway->addItem(vmText::_('COM_VIRTUEMART_VENDOR_CONTACT'));
$this->assignRef('user', $user);
$this->captcha = shopFunctionsF::renderCaptcha('ask_captcha');
} else {
$customtitle = vmText::_('COM_VIRTUEMART_VENDOR_DETAILS');
$pathway->addItem(vmText::_('COM_VIRTUEMART_VENDOR_DETAILS'));
$this->setLayout('details');
}
$metadesc = '';
$metakey = '';
$metarobot = '';
$metaauthor = '';
if(!empty($this->vendor->metadesc)) $metadesc = $this->vendor->metadesc;
if(!empty($this->vendor->metakey)) $metakey = $this->vendor->metakey;
if(!empty($this->vendor->metarobot)) $metarobot = $this->vendor->metarobot;
if(!empty($this->vendor->metaauthor)) $metaauthor = $this->vendor->metaauthor;
$menus = $mainframe->getMenu();
$menu = $menus->getActive();
if(!empty($menu)){
$metadesc = !empty($menu->params->get('menu-meta_description')) ? $menu->params->get('menu-meta_description') : $metadesc;
$metakey = !empty($menu->params->get('menu-meta_keywords')) ? $menu->params->get('menu-meta_keywords') : $metakey;
$metarobot = !empty($menu->params->get('robots')) ? $menu->params->get('robots') : $metarobot;
$customtitle = !empty($menu->params->get('page_title')) ? $menu->params->get('page_title') : $customtitle;
if(!empty($customtitle)){
$document->setTitle( $customtitle );
if ($mainframe->getCfg('MetaTitle') == '1') {
$document->setMetaData('title', $customtitle);
}
}
}
$document->setMetaData('description',$metadesc);
$document->setMetaData('keywords', $metakey);
$document->setMetaData('robots', $metarobot);
if ($mainframe->getCfg('MetaAuthor') == '1' and !empty($metaauthor)) {
$document->setMetaData('author', $metaauthor);
}
$linkdetails = '<a href="'.JRoute::_('index.php?option=com_virtuemart&view=vendor&layout=details&virtuemart_vendor_id=' .
$virtuemart_vendor_id, FALSE).'">'.vmText::_('COM_VIRTUEMART_VENDOR_DETAILS').'</a>';
$linkcontact = '<a href="'.JRoute::_('index.php?option=com_virtuemart&view=vendor&layout=contact&virtuemart_vendor_id=' . $virtuemart_vendor_id, FALSE).'">'.vmText::_('COM_VIRTUEMART_VENDOR_CONTACT').'</a>';
$linktos = '<a href="'.JRoute::_('index.php?option=com_virtuemart&view=vendor&layout=tos&virtuemart_vendor_id=' . $virtuemart_vendor_id, FALSE).'">'.vmText::_('COM_VIRTUEMART_VENDOR_TOS').'</a>';
$this->assignRef('linkdetails', $linkdetails);
$this->assignRef('linkcontact', $linkcontact);
$this->assignRef('linktos', $linktos);
}
parent::display($tpl);
}
function renderMailLayout($doVendor, $recipient) {
$this->setLayout('mail_html_question');
$this->comment = vRequest::getString('comment');
$virtuemart_vendor_id = vRequest::getInt('virtuemart_vendor_id');
$this->doVendor=$doVendor;
//$this->doVendor=TRUE;
$vendorModel = VmModel::getModel('vendor');
$this->vendor = $vendorModel->getVendor($virtuemart_vendor_id);
// in this particular case, overwrite the value for fix the recipient name
$this->vendor->vendor_name= $this->user['name'];
$this->subject = vmText::_('COM_VIRTUEMART_VENDOR_CONTACT') .' '.$this->user['name'];
$this->vendorEmail= $this->user['email'];
//$this->vendorName= $this->user['email'];
if (VmConfig::get('order_mail_html')) {
$tpl = 'mail_html_question';
} else {
$tpl = 'mail_raw_question';
}
$this->setLayout($tpl);
$this->isMail = true;
parent::display( );
}
}
//No Closing Tag