Your IP : 216.73.216.240
<?php
/****************************************************************************************\
** JoomGallery 3 **
** By: JoomGallery::ProjectTeam **
** Copyright (C) 2008 - 2021 JoomGallery::ProjectTeam **
** Based on: JoomGallery 1.0.0 by JoomGallery::ProjectTeam **
** Released under GNU GPL Public License **
** License: http://www.gnu.org/copyleft/gpl.html or have a look **
** at administrator/components/com_joomgallery/LICENSE.TXT **
\****************************************************************************************/
defined('_JEXEC') or die( 'Restricted access' );
jimport('joomla.form.formfield');
jimport('joomla.form.helper');
JFormHelper::loadFieldClass('joomcategory');
/**
* Renders a category select box form field with checkbox in front of the label
*
* @package JoomGallery
* @since 2.0
*/
class JFormFieldCbcategory extends JFormFieldJoomCategory
{
/**
* The form field type
*
* @var string
* @since 2.0
*/
protected $type = 'Cbcategory';
/**
* Method to get the field label markup
*
* @return string The field label markup
* @since 2.0
*/
protected function getLabel()
{
$label = '';
$cbname = $this->element['cbname'] ? $this->element['cbname'] : 'change[]';
$cbvalue = $this->element['cbvalue'] ? $this->element['cbvalue'] : $this->name;
$validate = $this->element['validate'] ? (string) $this->element['validate'] : '';
$cbid = str_replace(array('[', ']'), array('', ''), $cbname.$cbvalue);
$cbonclick = '';
if(!empty($validate))
{
$cbonclick = "if(jQuery('#".$cbid."').prop('checked')) { var el = jQuery('#".$this->id."'); el.addClass('validate-".$validate."'); el.attr('aria-required', 'true').attr('required', 'required'); } else { var el = jQuery('#".$this->id."'); el.removeClass('validate-".$validate."'); el.removeAttr('aria-required').removeAttr('required');}";
$js = "
jQuery(document).ready(function() {
".$cbonclick."
});";
$doc = JFactory::getDocument();
$doc->addScriptDeclaration($js);
}
$cbhtml = '<input id="'.$cbid.'" type="checkbox" onclick="'.$cbonclick.'" name="'.$cbname.'" value="'.$cbvalue.'" />';
$label = parent::getLabel();
$insertpos = strpos($label, '>');
$label = substr_replace($label, $cbhtml, $insertpos + 1, 0);
return $label;
}
}