| Current Path : /home/juvelize/www/plugins/content/sigplus/fields/ |
| Current File : /home/juvelize/www/plugins/content/sigplus/fields/imagelibrarylist.php |
<?php
/**
* @file
* @brief sigplus Image Gallery Plus image processing library list control
* @author Levente Hunyadi
* @version 1.4.2
* @remarks Copyright (C) 2009-2010 Levente Hunyadi
* @remarks Licensed under GNU/GPLv3, see http://www.gnu.org/licenses/gpl-3.0.html
* @see http://hunyadi.info.hu/projects/sigplus
*/
/*
* sigplus Image Gallery Plus plug-in for Joomla
* Copyright 2009-2010 Levente Hunyadi
*
* sigplus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sigplus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
if (!function_exists('is_gd_supported')) {
function is_gd_supported() {
$supported = extension_loaded('gd');
if (!$supported) {
return false;
}
$supported = function_exists('gd_info'); // might fail in rare cases even if GD is available
if (!$supported) {
return false;
}
$gd = gd_info();
$supported = isset($gd['GIF Read Support']) && $gd['GIF Read Support']
&& isset($gd['GIF Create Support']) && $gd['GIF Create Support']
&& (isset($gd['JPG Support']) && $gd['JPG Support'] || isset($gd['JPEG Support']) && $gd['JPEG Support'])
&& isset($gd['PNG Support']) && $gd['PNG Support'];
return $supported;
}
}
if (!function_exists('is_imagick_supported')) {
function is_imagick_supported() {
$supported = extension_loaded('imagick');
if (!$supported) {
return false;
}
$supported = class_exists('Imagick');
return $supported;
}
}
jimport('joomla.form.formfield');
/**
* Renders a control that lists all supported image processing libraries.
* This class represents a user-defined control in the administration backend.
*/
class JFormFieldImageLibraryList extends JFormField {
protected $type = 'ImageLibraryList';
/**
* Generates an HTML @c select list with options.
* @param name The value of the HTML name attribute.
* @param attribs Additional HTML attributes for the <select> tag.
* @param selected The key that is selected.
* @return HTML for the select list.
*/
private function renderHtmlSelect($options, $name, $attribs = null, $selected = null) {
if (is_array($attribs)) {
$attribs = JArrayHelper::toString($attribs);
}
$html = '<select name="'. $name .'" '. $attribs .'>';
foreach ($options as $value => $textkey) {
$html .= '<option '.( $selected == $value ? 'selected="selected" ' : '' ).'value="'.$value.'">'.JText::_($textkey).'</option>';
}
$html .= '</select>';
return $html;
}
private function renderNone($text, $name, $attribs = null) {
if (is_array($attribs)) {
$attribs = JArrayHelper::toString($attribs);
}
return '<span style="color:red" '.$attribs.'><input type="hidden" name="'.$name.'" value="none" />'.JText::_($text).'</span>';
}
public function getInput() {
$class = ( isset($this->element['class']) ? 'class="'.(string)$this->element['class'].'"' : 'class="inputbox"' );
// user-friendly names for image processing libraries
$items = array();
foreach ($this->element->option as $o) {
$val = (string)$o['value']; // attribute "value"
$textkey = (string)$o; // element content
$items[$val] = $textkey;
}
// test which image processing libraries are supported
$supported = array();
if (is_gd_supported()) {
$supported['gd'] = 'GD';
}
if (is_imagick_supported()) {
$supported['imagick'] = 'ImageMagick';
}
if (empty($supported)) { // no library is supported
if (isset($items['none'])) {
$textkey = $items['none'];
} else {
$textkey = 'none';
}
return $this->renderNone($textkey, $this->name, $class);
} else { // at least a single library is supported
$supported['default'] = 'default';
foreach ($items as $key => $textkey) {
if (isset($supported[$key])) {
$supported[$key] = $textkey;
}
}
return $this->renderHtmlSelect($supported, $this->name, $class, $this->value);
}
}
}