| Current Path : /home/cbequiperp/www/administrator/components/com_uniterevolution/models/fields/ |
| Current File : /home/cbequiperp/www/administrator/components/com_uniterevolution/models/fields/bullets.php |
<?php
/**
* @package Unite Revolution Slider for Joomla 1.7-2.5
* @author UniteCMS.net
* @copyright (C) 2012 Unite CMS, All Rights Reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('JPATH_BASE') or die;
/**
* Supports a modal article picker.
*
* @package Joomla.Administrator
* @subpackage com_content
* @since 1.6
*/
class JFormFieldBullets extends JFormField
{
/**
* The form field type.
*
* @var string
* @since 1.6
*/
protected $type = 'bullets';
/**
*
* get label function
*/
protected function getLabel(){
return("");
}
/**
* Method to get the field input markup.
*
* @return string The field input markup.
* @since 1.6
*/
protected function getInput()
{
// Load the modal behavior script.
JHtml::_('behavior.modal', 'a.modal');
// Build the script.
$script = array();
$script[] = ' function onBulletsSelect(data){';
$script[] = ' alert("do something: " + data)';
$script[] = ' SqueezeBox.close();';
$script[] = ' }';
// Add the script to the document head.
JFactory::getDocument()->addScriptDeclaration(implode("\n", $script));
// Setup variables for display.
$html = array();
$link = 'index.php?option=com_uniterevolution&view=slider&layout=bullets&tmpl=component';
$html[] = '<input type="hidden" name="' . $this->name . '" id="' . $this->id . '"' . ' value="'.$this->value.'" />';
$bulletsText = "Change Bullets";
$buttonID = $this->id."-btn";
$desc = UniteFunctionsRev::getVal($this->element, "description");
$htmlAddon = "";
if(!empty($desc)){
$htmlAddon = ' title="'.$desc.'"';
//$class .= " hasTip"; //making problems with rel
}
// The user select button.
$html[] = ' <a id="'.$buttonID.'" class="modal panel_button" '.$htmlAddon.' href="'.$link.'&'.JSession::getFormToken().'=1" rel="{handler: \'iframe\', size: {x: 900, y: 450}}">'.$bulletsText.'</a>';
$html = implode("\n", $html);
return $html;
}
}