| Current Path : /home/azimutno/www/demo/administrator/components/com_phocamaps/views/phocamapsmarker/ |
| Current File : /home/azimutno/www/demo/administrator/components/com_phocamaps/views/phocamapsmarker/view.html.php |
<?php
/* @package Joomla
* @copyright Copyright (C) Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* @extension Phoca Extension
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
defined('_JEXEC') or die();
jimport( 'joomla.application.component.view' );
class phocaMapsCpViewPhocaMapsMarker extends JViewLegacy
{
protected $state;
protected $item;
protected $form;
protected $t;
public function display($tpl = null) {
$this->t = PhocaMapsUtils::setVars('marker');
$this->state = $this->get('State');
$this->form = $this->get('Form');
$this->item = $this->get('Item');
$document= JFactory::getDocument();
$document->addScript(JURI::root(true).'/'. $this->t['ja'] .'coordinates.js');
JHTML::stylesheet( $this->t['s'] );
$this->addToolbar();
parent::display($tpl);
}
protected function addToolbar() {
require_once JPATH_COMPONENT.DS.'helpers'.DS.'phocamapsmarkers.php';
JRequest::setVar('hidemainmenu', true);
$user = JFactory::getUser();
$isNew = ($this->item->id == 0);
$checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $user->get('id'));
$canDo = PhocamapsMarkersHelper::getActions($this->t, $this->state->get('filter.marker_id'));
//$paramsC = JComponentHelper::getParams('COM_PHOCAMAPS');
$text = $isNew ? JText::_( 'COM_PHOCAMAPS_NEW' ) : JText::_('COM_PHOCAMAPS_EDIT');
JToolBarHelper::title( JText::_( 'COM_PHOCAMAPS_MARKER' ).': <small><small>[ ' . $text.' ]</small></small>' , 'location');
// If not checked out, can save the item.
if (!$checkedOut && $canDo->get('core.edit')){
JToolBarHelper::apply('phocamapsmarker.apply', 'JTOOLBAR_APPLY');
JToolBarHelper::save('phocamapsmarker.save', 'JTOOLBAR_SAVE');
JToolBarHelper::addNew('phocamapsmarker.save2new', 'JTOOLBAR_SAVE_AND_NEW');
}
if (empty($this->item->id)) {
JToolBarHelper::cancel('phocamapsmarker.cancel', 'JTOOLBAR_CANCEL');
}
else {
JToolBarHelper::cancel('phocamapsmarker.cancel', 'JTOOLBAR_CLOSE');
}
JToolBarHelper::divider();
JToolBarHelper::help( 'screen.phocamaps', true );
}
}
?>