AAAAPK —>\
index.htmlnu W+A„¶ PK —>\®)ÕÐ .htaccessnu W+A„¶
Order allow,deny
Deny from all
PK —>\Ó‚e e edit_options.phpnu W+A„¶
form->getFieldsets('request');
if (!empty($fieldSets)) {
$fieldSet = array_shift($fieldSets);
$label = !empty($fieldSet->label) ? $fieldSet->label : 'COM_MENUS_'.$fieldSet->name.'_FIELDSET_LABEL';
echo JHtml::_('sliders.panel', JText::_($label), 'request-options');
if (isset($fieldSet->description) && trim($fieldSet->description)) :
echo '
'.$this->escape(JText::_($fieldSet->description)).'
';
endif;
?>
form->getFieldsets('params');
foreach ($fieldSets as $name => $fieldSet) :
$label = !empty($fieldSet->label) ? $fieldSet->label : 'COM_MENUS_'.$name.'_FIELDSET_LABEL';
echo JHtml::_('sliders.panel', JText::_($label), $name.'-options');
if (isset($fieldSet->description) && trim($fieldSet->description)) :
echo ''.$this->escape(JText::_($fieldSet->description)).'
';
endif;
?>
form->getFieldsets('associations');
foreach ($fieldSets as $name => $fieldSet) :
$label = !empty($fieldSet->label) ? $fieldSet->label : 'COM_MENUS_'.$name.'_FIELDSET_LABEL';
echo JHtml::_('sliders.panel', JText::_($label), $name.'-options');
if (isset($fieldSet->description) && trim($fieldSet->description)) :
echo ''.$this->escape(JText::_($fieldSet->description)).'
';
endif;
?>
PK —>\,‘X ( ( edit.phpnu W+A„¶
PK W»>\ tmpl/index.htmlnu W+A„¶ PK W»>\v°›Ë# #
tmpl/edit.phpnu W+A„¶
PK W»>\}ð¹¢ð ð tmpl/edit_inside.phpnu W+A„¶ form->getFieldset('optional');
$styleImagePreview = "";
?>
PK W»>\®)ÕÐ tmpl/.htaccessnu W+A„¶
Order allow,deny
Deny from all
PK W»>\¶¶ï® ®
view.html.phpnu W+A„¶ form, $name);
}
/**
*
* put some optional field
*/
public function putOptionalField($name){
UniteFunctionJoomlaHCar::putFormField($this->form, $name,"params");
}
/**
*
* set image style and preview url
*/
private function setImage(){
//get slider id
if(!empty($this->item->id)){
$sliderID = $this->item->sliderid;
}else
$sliderID = JRequest::getVar("sliderid");
$slider = HelperUniteHCar::getSlider($sliderID);
$params = $slider["params"];
$imageHeight = $params->get("image_height",100);
$imageWidth = $params->get("image_width",150);
$this->slider = $slider;
//put image
if($this->isEmpty == false){
$filenameImage = $this->params->get("image");
$this->urlPreview = UniteFunctionJoomlaHCar::getImageOutputUrl($filenameImage,$imageWidth,$imageHeight,true);
}else{
$this->imagePreviewStyle = "style='display:none;'";
}
//add image pattern to js
$pattern = UniteFunctionJoomlaHCar::getImageOutputUrl("IMAGE_PLACE",$imageWidth,$imageHeight,true,false);
UniteFunctionJoomlaHCar::addScriptDeclaration("var g_imagePattern='$pattern';");
}
protected function addToolbar(){
JRequest::setVar('hidemainmenu', true);
$user = JFactory::getUser();
$userId = $user->get('id');
$isNew = ($this->item->id == 0);
$checkedOut = !($this->item->checked_out == 0 || $this->item->checked_out == $userId);
$canDo = true; //ContactHelper::getActions($this->state->get('filter.category'));
$sliderTitle = $this->slider["title"];
$title = JText::_('COM_UNITEHCAROUSEL').' - '.$sliderTitle;
if($isNew){
$title .= JText::_( 'COM_UNITEHCAROUSEL_NEW' );
}else{
$title .= " [".JText::_('COM_UNITEHCAROUSEL_EDIT_SLIDE')."]";
}
JToolBarHelper::title($title, 'generic.png' );
// Built the actions for new and existing records.
if ($isNew) {
// For new records, check the create permission.
//if ($canDo->get('core.create')) {
JToolBarHelper::apply('item.apply', 'JTOOLBAR_APPLY');
JToolBarHelper::save('item.save', 'JTOOLBAR_SAVE');
//JToolBarHelper::custom('item.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
//}
JToolBarHelper::cancel('item.cancel', 'JTOOLBAR_CANCEL');
}
else {
// Can't save the record if it's checked out.
if (!$checkedOut) {
// Since it's an existing record, check the edit permission, or fall back to edit own if the owner.
//if ($canDo->get('core.edit') || ($canDo->get('core.edit.own') && $this->item->created_by == $userId)) {
JToolBarHelper::apply('item.apply', 'JTOOLBAR_APPLY');
JToolBarHelper::save('item.save', 'JTOOLBAR_SAVE');
// We can save this record, but check the create permission to see if we can return to make a new one.
//if ($canDo->get('core.create')) {
//JToolBarHelper::custom('contact.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
//}
//}
}
// If checked out, we can still save
//if ($canDo->get('core.create')) {
JToolBarHelper::custom('item.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false);
//}
JToolBarHelper::cancel('item.cancel', 'JTOOLBAR_CLOSE');
}
}
/**
* display function
*
*/
public function display($tpl = null)
{
// Initialiase variables.
$this->form = $this->get('Form');
$this->item = $this->get('Item');
$this->state = $this->get('State');
if(!empty($this->item->id))
$this->isEmpty = false;
$arrParams = $this->item->get("params");
$this->params = new JRegistry();
$this->params->loadArray($arrParams);
// Check for errors.
if (count($errors = $this->get('Errors'))) {
JError::raiseError(500, implode("\n", $errors));
return false;
}
$this->setImage();
$this->addToolbar();
parent::display($tpl);
}
}
PK —>\
index.htmlnu W+A„¶ PK —>\®)ÕÐ : .htaccessnu W+A„¶ PK —>\Ó‚e e ò edit_options.phpnu W+A„¶ PK —>\,‘X ( ( — edit.phpnu W+A„¶ PK W»>\ ÷ tmpl/index.htmlnu W+A„¶ PK W»>\v°›Ë# #
6! tmpl/edit.phpnu W+A„¶ PK W»>\}ð¹¢ð ð –&