Your IP : 216.73.217.13


Current Path : /home/poneycluc/www/plugins/system/t4/admin/field/
Upload File :
Current File : /home/poneycluc/www/plugins/system/t4/admin/field/palettes.php

<?php
/**
 * @package     Joomla.Libraries
 * @subpackage  Form
 *
 * @copyright   Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_PLATFORM') or die;

require_once 't4color.php';
/**
 * Form Field class for the Joomla Framework.
 *
 * @since  2.5
 */

use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\Registry\Registry;

class JFormFieldPalettes extends JFormFieldT4color
{
	/**
	 * The field type.
	 *
	 * @var		string
	 */
	protected $type = 'palettes';
	protected $layout = 'field.palettes';
	
	protected function getInput(){
	    $dataInput['id'] = $this->id;
	    $dataInput['name'] = $this->name;
	    $dataInput['value'] = $this->value;
	    $data['colors'] = $this->loadColors();
	    $data['input'] =  $dataInput;
	    $data['palettes'] =  $this->getPalettes();
	    $data['fields'] =  $this->getFields();
	    $data['layout'] = $this->element['group'];
	    $data['palettesDef'] = $this->getPalettesDef();
		return LayoutHelper::render($this->layout, $data, T4PATH_ADMIN .'/layouts');
	}


	protected function getPalettes() {

		// get data structure
		$fields = $this->getFields();
		$compareColor = $this->compareUserColor();
		$baseColor = $this->loadColors();
		$getPaletteClone = new \stdClass();
		$template = T4Admin\Admin::getTemplate(true);
        $temp_Params = new Registry($template->params);
        
		// get base palettes
        $basepalettes = (array) json_decode(\T4\Helper\Path::getFileContent('etc/palettes.json', false), true);
        // local palettes
        $file = T4PATH_LOCAL . '/etc/palettes.json';
        $userpalettes = is_file($file) ? (array) json_decode(file_get_contents($file), true) : [];

		$themeData = (array) json_decode(\T4\Helper\Path::getFileContent('etc/theme/' . $temp_Params->get('typelist-theme') . '.json'), true);
		if(!empty($themeData['styles_palettes']) && !empty(json_decode($themeData['styles_palettes'],true))){
			$palettesTheme = array_merge(json_decode($themeData['styles_palettes'],true),$userpalettes);
		}else{
			$palettesTheme = $userpalettes;
		}
		$keys = array_unique(array_merge(array_keys($basepalettes),array_keys($palettesTheme)));
		$palettes = [];
		$fields[] = ['name' => 'title'];
		foreach ($keys as $key) {
			$base = !empty($basepalettes[$key]) ? $basepalettes[$key] : [];
			$local = !empty($palettesTheme[$key]) ? $palettesTheme[$key] : [];
			$status = '';
			$palette = [];
			$ovr = $loc = $org = false;
			foreach ($fields as $field) {
				$value = "";
				$name = $field['name'];
				if (!empty($base[$name]) && !empty($local[$name]) && $base[$name] != $local[$name]) {
					$value = $local[$name];
					$ovr = true;
				} else if (!empty($base[$name])) {
					$value = $base[$name];
					$org = true;
				} else if (!empty($local[$name])) {
					$value = $local[$name];
					$loc = true;
				}
				if($name == 'heading_color' && !$value){
					if (!empty($base['text_color']) && !empty($local['text_color']) && $base['text_color'] != $local['text_color']) {
						$value = $local['text_color'];
						$ovr = true;
					} else if (!empty($base['text_color'])) {
						$value = $base['text_color'];
						$org = true;
					} else if (!empty($local['text_color'])) {
						$value = $local['text_color'];
						$loc = true;
					}
				}

				if(!$value) $value = $field['value'];
				$palette[$name] = $value;
			}

			$status = $ovr || ($loc && $org) ? 'ovr' : ($loc ? 'loc' : 'org');
			$palette['status'] = $status;
			$palette['class'] = $key;

			$palettes[$key] = $palette;
		}
		return $palettes;
	}
	protected function getPalettesDef()
	{
		$fields = $this->getFields();
		$paletteDef = array();
		foreach ($fields as $field) {
			$value = "";
			$name = $field['name'];
			$value = $field['value'];
			$paletteDef[$name] = $value;
		}
		return $paletteDef;
	}
	/**
	 * Method to get the field label markup for a spacer.
	 * Use the label text or name from the XML element as the spacer or
	 * Use a hr="true" to automatically generate plain hr markup
	 *
	 * @return  string  The field label markup.
	 *
	 * @since   11.1
	 */
	protected function getLabel(){
		return null;
	}


	protected function getFields(){
		static $fields = null;
		if ($fields === null) {
			$fields = [];

			foreach ($this->element->xpath('color') as $option)
			{
				$value = (string) $option['value'];
				$name = (string) $option['name'];
				$text  = (string) $option['title'];
				$tmp = array(
						'value'    => $value,
						'name'    => $name,
						'title'     => Text::_($text),
						'class'    => (string) $option['class'],
				);
				
				// Add the option object to the result set.
				$fields[] = $tmp;
			}
		}

		return $fields;		
	}
		public function setup(SimpleXMLElement $element, $value, $group = null)
	{
		if(Factory::getApplication()->isClient('administrator')){
			$doc = Factory::getDocument();
			$doc->addScript(T4PATH_ADMIN_URI . '/assets/js/palettes_v2.js');
		}
		return parent::setup($element, $value, $group);
	}
}