Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/ic_library.tar
Назад
index.html 0000604 00000000037 15245530301 0006533 0 ustar 00 <!DOCTYPE html><title></title> ic_library.xml 0000604 00000002346 15245530301 0007404 0 ustar 00 <?xml version="1.0" encoding="utf-8"?> <extension version="2.5.0" type="plugin" group="system" method="upgrade"> <name>PLG_SYSTEM_IC_LIBRARY</name> <author>Cyril Rezé / Jooml!C</author> <creationDate>2014-11-09</creationDate> <copyright>Copyright (c)2014-2015 Cyril Rezé, Jooml!C - All rights reserved</copyright> <license>GNU General Public License version 3 or later; see LICENSE.txt</license> <authorEmail>info@joomlic.com</authorEmail> <authorUrl>www.joomlic.com</authorUrl> <description>PLG_SYSTEM_IC_LIBRARY_XML_DESCRIPTION</description> <version>1.2</version> <files> <filename plugin="ic_library">ic_library.php</filename> <filename>index.html</filename> </files> <languages> <language tag="en-GB">language/en-GB/en-GB.plg_system_ic_library.ini</language> <language tag="en-GB">language/en-GB/en-GB.plg_system_ic_library.sys.ini</language> <language tag="fr-FR">language/fr-FR/fr-FR.plg_system_ic_library.ini</language> <language tag="fr-FR">language/fr-FR/fr-FR.plg_system_ic_library.sys.ini</language> <language tag="it-IT">language/it-IT/it-IT.plg_system_ic_library.ini</language> <language tag="it-IT">language/it-IT/it-IT.plg_system_ic_library.sys.ini</language> </languages> <config> </config> </extension> ic_library.php 0000604 00000004660 15245530301 0007374 0 ustar 00 <?php /** * Plugin System - iC Library *---------------------------------------------------------------------------- * @package iC Library * @copyright Copyright (c)2014-2015 Cyril Rezé, Jooml!C - All rights reserved * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Cyril Rezé / Jooml!C * @link http://www.joomlic.com * * @version 1.2 2014-12-22 * @since 1.0 * * This program 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. * * This program 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/>. *---------------------------------------------------------------------------- */ // No direct access to this file defined('_JEXEC') or die(); /** * iC Library plugin class. * * @package Joomla.plugin * @subpackage System.iClib */ class plgSystemiC_library extends JPlugin { /** * Method to register iC library. * * return void */ public function onAfterInitialise() { if (is_dir(JPATH_LIBRARIES . '/ic_library')) { JLoader::registerPrefix('iC', JPATH_LIBRARIES . '/ic_library'); // Test if translation is missing, set to en-GB by default $language = JFactory::getLanguage(); $language->load('lib_ic_library', JPATH_SITE, 'en-GB', true); $language->load('lib_ic_library', JPATH_SITE, null, true); } } /** * Method to load Custom CSS from Component Config. * NOTE: To be moved to a separate system plugin - iCagenda */ public function onAfterDispatch() { // Check if component is installed if ( file_exists(JPATH_ADMINISTRATOR . '/components/com_icagenda/icagenda.php') ) { // Custom CSS loading $customCSS_activation = JComponentHelper::getParams('com_icagenda')->get('customCSS_activation', '0'); $customCSS = JComponentHelper::getParams('com_icagenda')->get('customCSS', ''); if (!empty($customCSS_activation) && $customCSS) { JFactory::getDocument()->addStyleDeclaration( $customCSS ); } } } } thumb/image.php 0000604 00000007451 15245530512 0007463 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iC Library - Library by Jooml!C, for Joomla! *------------------------------------------------------------------------------ * @package iC Library * @subpackage thumb * @copyright Copyright (c)2014-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @version 1.0.0 2014-05-08 * @since 1.0.0 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); /** * iC Library image class */ class iCThumbImage { /** * Create image from a BMP * * @since 1.0.0 */ static public function createFromBMP($filename) { // Open file in binary mode if (! $f1 = fopen($filename,"rb")) return FALSE; //1 : Loads file header $FILE = unpack("vfile_type/Vfile_size/Vreserved/Vbitmap_offset", fread($f1,14)); if ($FILE['file_type'] != 19778) return FALSE; //2 : Loads BMP header $BMP = unpack('Vheader_size/Vwidth/Vheight/vplanes/vbits_per_pixel'. '/Vcompression/Vsize_bitmap/Vhoriz_resolution'. '/Vvert_resolution/Vcolors_used/Vcolors_important', fread($f1,40)); $BMP['colors'] = pow(2,$BMP['bits_per_pixel']); if ($BMP['size_bitmap'] == 0) $BMP['size_bitmap'] = $FILE['file_size'] - $FILE['bitmap_offset']; $BMP['bytes_per_pixel'] = $BMP['bits_per_pixel']/8; $BMP['bytes_per_pixel2'] = ceil($BMP['bytes_per_pixel']); $BMP['decal'] = ($BMP['width']*$BMP['bytes_per_pixel']/4); $BMP['decal'] -= floor($BMP['width']*$BMP['bytes_per_pixel']/4); $BMP['decal'] = 4-(4*$BMP['decal']); if ($BMP['decal'] == 4) $BMP['decal'] = 0; //3 : Loads colors of the palette $PALETTE = array(); if ($BMP['colors'] < 16777216 && $BMP['colors'] != 65536) { $PALETTE = unpack('V'.$BMP['colors'], fread($f1,$BMP['colors']*4)); } //4 : Creates image $IMG = fread($f1,$BMP['size_bitmap']); $VIDE = chr(0); $res = imagecreatetruecolor($BMP['width'],$BMP['height']); $P = 0; $Y = $BMP['height']-1; while ($Y >= 0) { $X=0; while ($X < $BMP['width']) { if ($BMP['bits_per_pixel'] == 24) { $COLOR = unpack("V",substr($IMG,$P,3).$VIDE); } elseif ($BMP['bits_per_pixel'] == 16) { $COLOR = unpack("v",substr($IMG,$P,2)); $blue = ($COLOR[1] & 0x001f) << 3; $green = ($COLOR[1] & 0x07e0) >> 3; $red = ($COLOR[1] & 0xf800) >> 8; $COLOR[1] = $red * 65536 + $green * 256 + $blue; } elseif ($BMP['bits_per_pixel'] == 8) { $COLOR = unpack("n",$VIDE.substr($IMG,$P,1)); $COLOR[1] = $PALETTE[$COLOR[1]+1]; } elseif ($BMP['bits_per_pixel'] == 4) { $COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1)); if (($P*2)%2 == 0) $COLOR[1] = ($COLOR[1] >> 4) ; else $COLOR[1] = ($COLOR[1] & 0x0F); $COLOR[1] = $PALETTE[$COLOR[1]+1]; } elseif ($BMP['bits_per_pixel'] == 1) { $COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1)); if (($P*8)%8 == 0) $COLOR[1] = $COLOR[1] >>7; elseif (($P*8)%8 == 1) $COLOR[1] = ($COLOR[1] & 0x40)>>6; elseif (($P*8)%8 == 2) $COLOR[1] = ($COLOR[1] & 0x20)>>5; elseif (($P*8)%8 == 3) $COLOR[1] = ($COLOR[1] & 0x10)>>4; elseif (($P*8)%8 == 4) $COLOR[1] = ($COLOR[1] & 0x8)>>3; elseif (($P*8)%8 == 5) $COLOR[1] = ($COLOR[1] & 0x4)>>2; elseif (($P*8)%8 == 6) $COLOR[1] = ($COLOR[1] & 0x2)>>1; elseif (($P*8)%8 == 7) $COLOR[1] = ($COLOR[1] & 0x1); $COLOR[1] = $PALETTE[$COLOR[1]+1]; } else return FALSE; imagesetpixel($res,$X,$Y,$COLOR[1]); $X++; $P += $BMP['bytes_per_pixel']; } $Y--; $P+=$BMP['decal']; } // Close file fclose($f1); return $res; } } thumb/index.html 0000604 00000000037 15245530512 0007656 0 ustar 00 <!DOCTYPE html><title></title> thumb/get.php 0000604 00000034330 15245530512 0007154 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iC Library - Library by Jooml!C, for Joomla! *------------------------------------------------------------------------------ * @package iC Library * @subpackage thumb * @copyright Copyright (c)2014-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @version 1.2.2 2015-03-13 * @since 1.0.0 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); /** * iC Library image class */ class iCThumbGet { /** * Return the link to the thumbnail of an image * * @since 1.0.0 */ static public function thumbnail($image, $thumbsPath, $subFolder, $width, $height, $quality, $crop = null, $prefix = null, $type = null, $checksize = null, $name = null) { $app = JFactory::getApplication(); $file_local = JPATH_ROOT . '/' . $image; $file_distant = $image; $linkToImage = filter_var($image, FILTER_VALIDATE_URL) ? $file_distant : $file_local; // Set memory_limit if possible to 512mo, and check needed memory to generate thumbnails ini_set('memory_limit','512M'); // Check if fopen is allowed $fopen = true; $result = ini_get('allow_url_fopen'); if (empty($result)) { $fopen = false; } // Initialize Vars $Image_Link = ''; $Thumb_Link = ''; $Display_Thumb = false; $MimeTypeOK = true; $MimeTypeERROR = false; $Invalid_Link = false; $Invalid_Img_Format = false; $fopen_bmp_error_msg = false; $Invalid_LinkMsg = '<i class="icon-warning"></i><br /><span style="color:red;"><strong>' . JText::_('ICLIB_INVALID_PICTURE_LINK') . '</strong></span>'; $Wrong_img_format = '<i class="icon-warning"></i><br/><span style="color:red;"><strong>' . JText::_('ICLIB_NOT_AUTHORIZED_IMAGE_TYPE') . '</strong><br/>' . JText::_('ICLIB_NOT_AUTHORIZED_IMAGE_TYPE_INFO') . '</span>'; $fopen_bmp_error = '<i class="icon-warning"></i><br/><span style="color:red;"><strong>' . JText::_('ICLIB_PHP_ERROR_FOPEN_COPY_BMP') . '</strong><br/>' . JText::_('ICLIB_PHP_ERROR_FOPEN_COPY_BMP_INFO') . '</span>'; $error_icthumb = '<i class="icon-warning"></i><br/><span style="color:red;"><strong>' . JText::_('ICLIB_ERROR_ICTHUMB') . '</strong><br/>' . JText::_('ICLIB_ERROR_ICTHUMB_INFO') . '</span>'; // Mime-Type pre-settings $errorMimeTypeMsg = '<i class="icon-warning"></i><br /><span style="color:red;"><strong>' . JText::_('ICLIB_ERROR_MIME_TYPE') . '</strong><br/>' . JText::_('ICLIB_ERROR_MIME_TYPE_NO_THUMBNAIL'); // Folder for copy of distant images, and jpg created from bmp $copyPath = $thumbsPath . '/copy'; $cropped = $crop ? 'c' : ''; // Thumb Destination if ($name) { $thumb_name = ''; } elseif ($prefix) { $thumb_name = $prefix.'_w'.$width.'h'.$height.'q'.$quality.$cropped.'_'; } else { $thumb_name = 'w'.$width.'h'.$height.'q'.$quality.$cropped.'_'; } $thumb_destination = $subFolder . '/' . $thumb_name; // Get Image File Infos // $url = $image; // $decomposition = explode( '/' , $url ); // in each parent // $i = 0; // while ( isset($decomposition[$i]) ) // $i++; // $i--; // $imgname = $decomposition[$i]; // $fichier = explode( '.', $decomposition[$i] ); // $imgtitle = $fichier[0]; // $imgextension = strtolower($fichier[1]); // fixed 3.1.10 $image_info = pathinfo($image); $imgtitle = $image_info['filename']; $imgextension = strtolower($image_info['extension']); // To be checked if error with uppercase extension type // Clean file name jimport( 'joomla.filter.output' ); $cleanFileName = JFilterOutput::stringURLSafe($imgtitle) . '.' . $imgextension; $cleanTitle = JFilterOutput::stringURLSafe($imgtitle); // Image pre-settings $imageValue = $image; $Image_Link = $image; // url to thumbnails already created $Thumb_Link = $thumbsPath . '/' . $thumb_destination . $cleanFileName; $Thumb_aftercopy_Link = $thumbsPath . '/' . $thumb_destination . $cleanTitle . '.jpg'; // url to copy original jpg created $MAX_aftercopy_Link = $copyPath . '/' . $cleanTitle . '.jpg'; $file_copy = JPATH_ROOT . '/' . $MAX_aftercopy_Link; // Fix for previous version, if original image is too small (ic_large image only, used in event details view) $original_too_small = false; if ($prefix == 'ic_large') { $file_to_check = filter_var($image, FILTER_VALIDATE_URL) ? $file_copy : $file_local; list($w, $h) = getimagesize($file_to_check); if ($w < $width or $h < $height) { $max_image_size = filter_var($image, FILTER_VALIDATE_URL) ? $MAX_aftercopy_Link : $image; $original_too_small = true; } } // Check if thumbnails already created if (file_exists(JPATH_ROOT . '/' . $Thumb_Link) || $original_too_small) { $Thumb_Link = $original_too_small ? $max_image_size : $Thumb_Link; $Display_Thumb = true; } elseif (file_exists(JPATH_ROOT . '/' . $Thumb_aftercopy_Link) || $original_too_small) { $Thumb_Link = $original_too_small ? $max_image_size : $Thumb_aftercopy_Link; $Display_Thumb = true; } // if thumbnails not already created, create thumbnails else { $memory_limit = ini_get('memory_limit'); if (preg_match('/^(\d+)(.)$/', $memory_limit, $matches)) { if ($matches[2] == 'M') { $memory_limit = $matches[1] * 1024 * 1024; // nnnM -> nnn MB } elseif ($matches[2] == 'K') { $memory_limit = $matches[1] * 1024; // nnnK -> nnn KB } } list($w, $h) = getimagesize($linkToImage); $rgba_factor = 4; $security_factor = 1.8; if (function_exists('memory_get_usage') && ( (($w * $h * $rgba_factor * $security_factor) + memory_get_usage()) > $memory_limit ) ) { if ( $app->isAdmin() ) { $alert_message = JText::sprintf('ICLIB_ERROR_ALERT_IMAGE_TOO_LARGE', $image); // Get the message queue $messages = $app->getMessageQueue(); $display_alert_message = false; // If we have messages if (is_array($messages) && count($messages)) { // Check each message for the one we want foreach ($messages as $key => $value) { if ($value['message'] == $alert_message) { $display_alert_message = true; } } } if (!$display_alert_message) { $app->enqueueMessage($alert_message, 'Warning'); } return JText::_('ICLIB_ERROR_IMAGE_TOO_LARGE'); } else { return false; } } if (file_exists($linkToImage)) { // Test Mime-Type $fileinfos = getimagesize($linkToImage); $mimeType = $fileinfos['mime']; $extensionType = 'image/' . $imgextension; // SETTINGS ICTHUMB $errorMimeTypeInfo = '<span style="color:black;"><br/>' . JText::sprintf('ICLIB_ERROR_MIME_TYPE_INFO', $imgextension, $mimeType); // Error message if Mime-Type is not the same as extension if (($imgextension == 'jpeg') OR ($imgextension == 'jpg')) { if (($mimeType != 'image/jpeg') AND ($mimeType != 'image/jpg')) { $MimeTypeOK = false; $MimeTypeERROR = true; } } elseif ($imgextension == 'bmp') { if (($mimeType != 'image/bmp') AND ($mimeType != 'image/x-ms-bmp')) { $MimeTypeOK = false; $MimeTypeERROR = true; } } elseif ($mimeType != $extensionType) { $MimeTypeOK = false; $MimeTypeERROR = true; } } // If Error mime-type, no thumbnail creation if ($MimeTypeOK) { // Call function and create image thumbnail for events list in admin // If Image JPG, JPEG, PNG or GIF if (($imgextension == "jpg") OR ($imgextension == "jpeg") OR ($imgextension == "png") OR ($imgextension == "gif")) { $Thumb_Link = $Thumb_Link; if (!file_exists(JPATH_ROOT . '/' . $Thumb_Link)) { if (filter_var($imageValue, FILTER_VALIDATE_URL)) { if ((iCUrl::url_exists($imageValue)) AND ($fopen)) { $testFile = JPATH_ROOT . '/' . $copyPath . '/' . $cleanFileName; if (!file_exists($testFile)) { //Get the file $content = file_get_contents($imageValue); //Store in the filesystem. $fp = fopen(JPATH_ROOT . '/' . $copyPath . '/' . $cleanFileName, "w"); fwrite($fp, $content); fclose($fp); } $linkToImage = JPATH_ROOT . '/' . $copyPath . '/' . $cleanFileName; $imageValue = $copyPath . '/' . $cleanFileName; } else { $linkToImage = $imageValue; } } else { $linkToImage = JPATH_ROOT . '/' . $imageValue; } if ((iCUrl::url_exists($linkToImage)) OR (file_exists($linkToImage))) { iCThumbCreate::createThumb($linkToImage, JPATH_ROOT . '/' . $Thumb_Link, $width, $height, $quality, $crop, $prefix, $checksize); } else { $Invalid_Link = true; } } } // If Image BMP elseif ($imgextension == "bmp") { $Image_Link = $copyPath . '/' . $cleanTitle . '.jpg'; $Thumb_Link = $Thumb_aftercopy_Link; if (!file_exists(JPATH_ROOT . '/' . $Thumb_Link)) { if (filter_var($imageValue, FILTER_VALIDATE_URL)) { if ((iCUrl::url_exists($imageValue)) AND ($fopen)) { $testFile = JPATH_ROOT . '/' . $copyPath . '/' . $cleanTitle . '.jpg'; if (!file_exists($testFile)) { // Get the file $content = file_get_contents($imageValue); // Store in the filesystem. $fp = fopen(JPATH_ROOT . '/' . $copyPath . '/' . $cleanFileName, "w"); fwrite($fp, $content); fclose($fp); $imageNewValue = JPATH_ROOT . '/' . $copyPath . '/' . $cleanFileName; imagejpeg(iCThumbImage::createFromBMP($imageNewValue), JPATH_ROOT . '/' . $copyPath . '/' . $cleanTitle . '.jpg', 100); unlink($imageNewValue); } } else { $linkToImage = $imageValue; } } else { imagejpeg(iCThumbImage::createFromBMP(JPATH_ROOT . '/' . $imageValue), JPATH_ROOT . '/' . $copyPath . '/' . $cleanTitle . '.jpg', 100); } $imageValue = $copyPath . '/' . $cleanTitle . '.jpg'; $linkToImage = JPATH_ROOT . '/' . $imageValue; if (!$fopen) { $fopen_bmp_error_msg = true; } elseif ((iCUrl::url_exists($linkToImage)) OR (file_exists($linkToImage))) { iCThumbCreate::createThumb($linkToImage, JPATH_ROOT . '/' . $Thumb_Link, $width, $height, $quality, $crop, $prefix, $checksize); } else { $Invalid_Link = true; } } } // If Not authorized Image Format else { if ((iCUrl::url_exists($linkToImage)) OR (file_exists($linkToImage))) { $Invalid_Img_Format = true; } else { $Invalid_Link = true; } } if (!$Invalid_Link) { $Display_Thumb = true; } } // If error Mime-Type else { if (($imgextension == "jpg") OR ($imgextension == "jpeg") OR ($imgextension == "png") OR ($imgextension == "gif") OR ($imgextension == "bmp")) { $MimeTypeERROR = true; } else { $Invalid_Img_Format = true; $MimeTypeERROR = false; } } } if ($type == 'imgTag' || $type == 'imgTagLinkModal') { // Display Thumbnail Image tag $thumbnailImgTag = ''; if ($Invalid_Img_Format) { $thumbnailImgTag.= $app->isAdmin() ? $Wrong_img_format : ''; } if ($Invalid_Link) { $thumbnailImgTag.= $app->isAdmin() ? $Invalid_LinkMsg : ''; } if ($MimeTypeERROR) { $thumbnailImgTag.= $app->isAdmin() ? $errorMimeTypeMsg : ''; $thumbnailImgTag.= $app->isAdmin() ? $errorMimeTypeInfo : ''; } if ($fopen_bmp_error_msg) { $thumbnailImgTag.= $app->isAdmin() ? $fopen_bmp_error : ''; } if ($Display_Thumb) { if ($imgextension == "bmp") { if ($type == 'imgTagLinkModal') { $thumbnailImgTag.= '<a href="' . JURI::root( true ) . '/' . $MAX_aftercopy_Link.'" class="modal">'; } $thumbnailImgTag.= '<img src="' . JURI::root( true ) . '/' . $Thumb_aftercopy_Link.'" alt="" />'; if ($type == 'imgTagLinkModal') { $thumbnailImgTag.= '</a>'; } } else { if ($type == 'imgTagLinkModal') { if (filter_var($Image_Link, FILTER_VALIDATE_URL)) { $thumbnailImgTag.= '<a href="'.$Image_Link.'" class="modal">'; } else { $thumbnailImgTag.= '<a href="' . JURI::root( true ) . '/' . $Image_Link.'" class="modal">'; } } $thumbnailImgTag.= '<img src="' . JURI::root( true ) . '/' . $Thumb_Link.'" alt="" />'; if ($type == 'imgTagLinkModal') { $thumbnailImgTag.= '</a>'; } } } if ((!file_exists(JPATH_ROOT . '/' . $Thumb_Link)) && ($image) && (!$fopen)) { $thumbnailImgTag.= $app->isAdmin() ? $error_icthumb : ''; } return $thumbnailImgTag; } else { // Display Thumbnail Image tag $thumb_img = ''; // Set Thumbnail $default_thumbnail = 'media/com_icagenda/images/nophoto.jpg'; if ( $Invalid_Img_Format || $Invalid_Link || $MimeTypeERROR || $fopen_bmp_error_msg || ((!file_exists(JPATH_ROOT . '/' . $Thumb_Link)) && ($image)) ) { $thumb_img = $default_thumbnail; } elseif ($Display_Thumb) { $thumb_img = $Thumb_Link; } return $thumb_img; } } /** * Return the thumbnail from an image, embed inside html tags * * @since 1.0.0 */ static public function thumbnailImgTag($image, $thumbsPath, $subFolder, $width, $height, $quality, $crop = null, $prefix = null) { $thumbnailImgTag = iCThumbGet::thumbnail($image, $thumbsPath, $subFolder, $width, $height, $quality, $crop, $prefix, 'imgTag'); return $thumbnailImgTag; } /** * Return the thumbnail from an image, embed inside html tags * Link on thumbnail opens original image in modal * * @since 1.0.0 */ static public function thumbnailImgTagLinkModal($image, $thumbsPath, $subFolder, $width, $height, $quality, $crop = null, $prefix = null) { $thumbnailImgTag = iCThumbGet::thumbnail($image, $thumbsPath, $subFolder, $width, $height, $quality, $crop, $prefix, 'imgTagLinkModal'); return $thumbnailImgTag; } } thumb/create.php 0000604 00000006060 15245530512 0007637 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iC Library - Library by Jooml!C, for Joomla! *------------------------------------------------------------------------------ * @package iC Library * @subpackage thumb * @copyright Copyright (c)2014-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @version 1.2.1 2015-02-19 * @since 1.0.0 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); /** * iC Library thumb class */ class iCThumbCreate { /** * Create thumbnail image by php using the GD Library * * @since 1.0.0 */ static public function createThumb($source_image, $destination_image_url, $width, $height, $quality, $crop = null, $prefix = null, $checksize = null) { //Set image ratio list($w, $h) = getimagesize($source_image); // resize if ($crop === true) { if ($checksize && ($w < $width or $h < $height) ) { $width = $w+1; $height = $h+1; $x = 0; } else { $ratio = max($width/$w, $height/$h); $h = $height / $ratio; $x = ($w - $width / $ratio) / 2; $w = $width / $ratio; } } else { if ($checksize && ($w < $width or $h < $height) ) { $width = $w; $height = $h; $x = 0; } else { $ratio = min($width/$w, $height/$h); $width = $w * $ratio; $height = $h * $ratio; $x = 0; } } if (preg_match("/.jpg/i","$source_image") OR preg_match("/.jpeg/i","$source_image")) { //JPEG type thumbnail $destImage = imagecreatetruecolor($width, $height); $sourceImage = imagecreatefromjpeg($source_image); imagecopyresampled($destImage, $sourceImage, 0, 0, $x, 0, $width, $height, $w, $h); imagejpeg($destImage, $destination_image_url, $quality); imagedestroy($destImage); } elseif (preg_match("/.png/i", "$source_image")) { //PNG type thumbnail $destImage = imagecreatetruecolor ($width, $height); $sourceImage = imagecreatefrompng($source_image); imagealphablending($destImage, false); imagecopyresampled($destImage, $sourceImage, 0, 0, $x, 0, $width, $height, $w, $h); imagesavealpha($destImage, true); imagepng($destImage, $destination_image_url); } elseif (preg_match("/.gif/i", "$source_image")) { //GIF type thumbnail $destImage = imagecreatetruecolor($width, $height); $sourceImage = imagecreatefromgif($source_image); $bgc = imagecolorallocate ($destImage, 255, 255, 255); imagefilledrectangle ($destImage, 0, 0, $width, $height, $bgc); imagecopyresampled($destImage, $sourceImage, 0, 0, $x, 0, $width, $height, $w, $h); if(function_exists('imagegif')) { // Pour GIF header('Content-Type: image/gif'); imagegif($destImage, $destination_image_url, $quality); } imagedestroy($destImage); } else { echo 'unable to load image source'; } } } filter/output.php 0000604 00000007543 15245530512 0010111 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iC Library - Library by Jooml!C, for Joomla! *------------------------------------------------------------------------------ * @package iC Library * @subpackage filter * @copyright Copyright (c)2014-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @version 1.0.0 2014-06-13 * @since 1.0.0 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); /** * class iCUrl */ class iCFilterOutput { /** * Process a string in a JOOMLA_TRANSLATION_STRING standard. * This method processes a string and replaces all accented UTF-8 characters by unaccented * ASCII-7 "equivalents" and the string is uppercase. Spaces replaced by underscore. * * @param string $string String to process * * @return string Processed string * * @since 1.0.0 */ public static function stringToJText($string) { // Remove any '_' from the string since they will be used as concatenaters $str = str_replace('_', ' ', $string); $lang = JFactory::getLanguage(); $str = $lang->transliterate($str); // Trim white spaces at beginning and end of translation string and make uppercase $str = trim(JString::strtoupper($str)); // Remove any duplicate whitespace, and ensure all characters are alphanumeric $str = preg_replace('/(\s|[^A-Za-z0-9\-])+/', '_', $str); // Trim underscores at beginning and end of translation string $str = trim($str, '_'); return $str; } /** * Process a string in slug format. * This method processes a string and replaces all accented UTF-8 characters by unaccented * ASCII-7 "equivalents" and the string is lowercase. Spaces replaced by underscore. * * @param string $string String to process * * @return string Processed string * * @since 1.0.0 */ public static function stringToSlug($string) { // Remove any '_' from the string since they will be used as concatenaters $replace = array('-', '_'); $str = str_replace($replace, ' ', $string); //replaces all accented UTF-8 characters by unaccented ASCII-7 "equivalents" $lang = JFactory::getLanguage(); $str = $lang->transliterate($str); // Trim white spaces at beginning and end of translation string and make uppercase $str = trim(JString::strtolower($str)); // Remove any duplicate whitespace, and ensure all characters are alphanumeric $str = preg_replace('/(\s|[^A-Za-z0-9\-])+/', '_', $str); // Trim underscores at beginning and end of translation string $str = trim($str, '_'); return $str; } /** * Convert a HTML string in a text single line. * This method processes a string, cleans all HTML tags and converts special characters to HTML entities. * The string is lowercase. Spaces replaced by underscore. * * @param string $string String to process * * @return string Processed string * * @since 1.0.0 */ static public function fullCleanHTML($string) { // Clean text of all formatting and scripting code $str = preg_replace("'<script[^>]*>.*?</script>'si", '', $string); $str = preg_replace('/<a\s+.*?href="([^"]+)"[^>]*>([^<]+)<\/a>/is', '\2 (\1)', $str); $str = preg_replace('/<!--.+?-->/', '', $str); $str = preg_replace('/{.+?}/', '', $str); // Strip HTML and PHP tags $str = strip_tags($str); // Replace all sequences of two or more spaces, tabs, and/or line breaks with a single space $str = preg_replace('/[\p{Z}\s]{2,}/u', ' ', $str); // Convert special characters to HTML entities $str = htmlspecialchars($str, ENT_QUOTES, 'UTF-8'); // Trim spaces at beginning and end of translation string $str = trim($str); return $str; } } filter/index.html 0000604 00000000037 15245530512 0010024 0 ustar 00 <!DOCTYPE html><title></title> globalize/index.html 0000604 00000000037 15245530512 0010507 0 ustar 00 <!DOCTYPE html><title></title> globalize/culture/hu-HU.php 0000604 00000002766 15245530512 0011647 0 ustar 00 <?php /** * iCagenda Globalization hu-HU (Hungarian) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '1996.04.22.'; $datevalue_1 = 'Y . m . d .'; $dateglobalize_2 = '1996. április 22.'; $datevalue_2 = 'Y . _ F _ j .'; $dateglobalize_3 = '1996. ápr. 22.'; $datevalue_3 = 'Y . _ M _ j .'; $dateglobalize_4 = 'április 22.'; $datevalue_4 = 'F _ j .'; $dateglobalize_6 = '1996. április'; $datevalue_6 = 'Y . _ F'; $dateglobalize_7 = '1996. április 22., hétfő'; $datevalue_7 = 'Y . _ F _ j . , _ l'; $dateglobalize_8 = 'április 22., hétfő'; $datevalue_8 = 'F _ j . , _ l'; $dateglobalize_11 = '1996. ápr. 22., H'; $datevalue_11 = 'Y . _ M _ j . , _ D'; $dateglobalize_12 = 'ápr. 22., H'; $datevalue_12 = 'M _ j . , _ D'; $dmy_text_5 = '22␣április␣1996'; $dmy_text_6 = '22␣ápr.␣1996'; $mdy_text_5 = 'április␣22␣1996'; $mdy_text_6 = 'ápr.␣22␣1996'; $ymd_text_5 = '1996␣április␣22'; $ymd_text_6 = '1996␣ápr.␣22'; globalize/culture/es-ES.php 0000604 00000003001 15245530512 0011614 0 ustar 00 <?php /** * iCagenda Globalization es-ES (SPANISH) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22/04/1996'; $datevalue_1 = 'd / m / Y'; $dateglobalize_2 = '22 de Abril de 1996'; $datevalue_2 = 'd _ de _ F _ de _ Y'; $dateglobalize_3 = '22 de Abr de 1996'; $datevalue_3 = 'd _ de _ M _ de _ Y'; $dateglobalize_4 = '22 Abril'; $datevalue_4 = 'd _ F'; $dateglobalize_6 = 'Abril de 1996'; $datevalue_6 = 'F _ de _ Y'; $dateglobalize_7 = 'Lunes, 22 de Abril de 1996'; $datevalue_7 = 'l , _ d _ de _ F _ de _ Y'; $dateglobalize_8 = 'Lunes, 22 de Abril'; $datevalue_8 = 'l , _ d _ de _ F'; $dateglobalize_11 = 'Lun, 22 de Abr de 1996'; $datevalue_11 = 'D , _ d _ de _ M _ de _ Y'; $dateglobalize_12 = 'Lun, 22 de Abr'; $datevalue_12 = 'D , _ d _ de _ M'; $dmy_text_5 = '22␣Abril␣1996'; $dmy_text_6 = '22␣Abr␣1996'; $mdy_text_5 = 'Abril␣22␣1996'; $mdy_text_6 = 'Abr␣22␣1996'; $ymd_text_5 = '1996␣Abril␣22'; $ymd_text_6 = '1996␣Abr␣22'; globalize/culture/lv-LV.php 0000604 00000003040 15245530512 0011643 0 ustar 00 <?php /** * iCagenda Globalization lv-LV (LATVIAN) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '1996.04.22.'; $datevalue_1 = 'Y . m . d .'; $dateglobalize_2 = '1996. gada 22. Aprīlis'; $datevalue_2 = 'Y . _ gada _ j . _ F'; $dateglobalize_3 = '1996. gada 22. Apr'; $datevalue_3 = 'Y . _ gada _ j . _ M'; $dateglobalize_4 = '22. Aprīlis'; $datevalue_4 = 'j . _ F'; $dateglobalize_6 = '1996. Aprīlis'; $datevalue_6 = 'Y . _ F'; $dateglobalize_7 = 'Pirmdiena, 1996. gada 22. Aprīlis'; $datevalue_7 = 'l , _ Y . _ gada _ j . _ F'; $dateglobalize_8 = 'Pirmdiena, 22. Aprīlis'; $datevalue_8 = 'l , _ j . _ F'; $dateglobalize_11 = 'Pir, 1996. gada 22. Apr'; $datevalue_11 = 'D , _ Y . _ gada _ j . _ M'; $dateglobalize_12 = 'Pir, 22. Apr'; $datevalue_12 = 'D , _ j . _ M'; $dmy_text_5 = '22␣Aprīlis␣1996'; $dmy_text_6 = '22␣Apr␣1996'; $mdy_text_5 = 'Aprīlis␣22␣1996'; $mdy_text_6 = 'Apr␣22␣1996'; $ymd_text_5 = '1996␣Aprīlis␣22'; $ymd_text_6 = '1996␣Apr␣22'; globalize/culture/el-GR.php 0000604 00000003051 15245530512 0011613 0 ustar 00 <?php /** * iCagenda Globalization el-GR (GREEK) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22/04/1996'; $datevalue_1 = 'j / n / Y'; $dateglobalize_2 = '22 Απρίλιος 1996'; $datevalue_2 = 'j _ F _ Y'; $dateglobalize_3 = '22 Απρ 1996'; $datevalue_3 = 'j _ M _ Y'; $dateglobalize_4 = '22 Απρίλιος'; $datevalue_4 = 'j _ F'; $dateglobalize_6 = 'Απρίλιος 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'Δευτέρα, 22 Απρίλιος 1996'; $datevalue_7 = 'l , _ j _ F _ Y'; $dateglobalize_8 = 'Δευτέρα, 22 Απρίλιος'; $datevalue_8 = 'l , _ j _ F'; $dateglobalize_11 = 'Δευ, 22 Απρ 1996'; $datevalue_11 = 'D , _ j _ M _ Y'; $dateglobalize_12 = 'Δευ, 22 Απρ'; $datevalue_12 = 'D , _ j _ M'; $dmy_text_5 = '22␣Απρίλιος␣1996'; $dmy_text_6 = '22␣Απρ␣1996'; $mdy_text_5 = 'Απρίλιος␣22␣1996'; $mdy_text_6 = 'Απρ␣22␣1996'; $ymd_text_5 = '1996␣Απρίλιος␣22'; $ymd_text_6 = '1996␣Απρ␣22'; globalize/culture/cs-CZ.php 0000604 00000002671 15245530512 0011633 0 ustar 00 <?php /** * iCagenda Globalization cs-CZ (CZECH) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22.04.1996'; $datevalue_1 = 'j . n . Y'; $dateglobalize_2 = '22. duben 1996'; $datevalue_2 = 'j . _ F _ Y'; $dateglobalize_3 = '22. dub 1996'; $datevalue_3 = 'j . _ M _ Y'; $dateglobalize_4 = '22 duben'; $datevalue_4 = 'd _ F'; $dateglobalize_6 = 'duben 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'pondělí, 22. duben 1996'; $datevalue_7 = 'l , _ j . _ F _ Y'; $dateglobalize_8 = 'pondělí, 22 duben'; $datevalue_8 = 'l , _ d _ F'; $dateglobalize_11 = 'po, 22. dub 1996'; $datevalue_11 = 'D , _ j . _ M _ Y'; $dateglobalize_12 = 'po, 22 dub'; $datevalue_12 = 'D , _ d _ M'; $dmy_text_5 = '22␣duben␣1996'; $dmy_text_6 = '22␣dub␣1996'; $mdy_text_5 = 'duben␣22␣1996'; $mdy_text_6 = 'dub␣22␣1996'; $ymd_text_5 = '1996␣duben␣22'; $ymd_text_6 = '1996␣dub␣22'; globalize/culture/iso.php 0000604 00000002510 15245530512 0011476 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iCagenda Globalization - International Date Formats *------------------------------------------------------------------------------ * @package com_icagenda * @copyright Copyright (c)2012-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @version 3.3.6 2014-05-03 * @since 2.1.7 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); // International Date Format (ISO) $iso = 'Y - m - d'; // DMY Little-endian (day, month, year), e.g. 30.04.93 or 30/04/93 $dmy_1 = 'd * m * Y'; $dmy_2 = 'd * m * y'; $dmy_3 = 'd * m'; $dmy_4 = 'm * y'; $dmy_5 = 'd * F * Y'; $dmy_6 = 'd * M * Y'; // MDY Middle-endian (month, day, year), e.g. 04/30/93 $mdy_1 = 'm * d * Y'; $mdy_2 = 'm * d * y'; $mdy_3 = 'm * d'; $mdy_4 = 'm * y'; $mdy_5 = 'F * d * Y'; $mdy_6 = 'M * d * Y'; // YMD Big-endian (year, month, day), e.g. 1993-04-30 $ymd_1 = 'Y * m * d'; $ymd_2 = 'y * m * d'; $ymd_3 = 'm * d'; $ymd_4 = 'y * m'; $ymd_5 = 'Y * F * d'; $ymd_6 = 'Y * M * d'; globalize/culture/sv-SE.php 0000604 00000002725 15245530512 0011651 0 ustar 00 <?php /** * iCagenda Globalization sv-SE (SWEDISH) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '1996-04-22'; $datevalue_1 = 'Y - m - d'; $dateglobalize_2 = 'den 22 april 1996'; $datevalue_2 = 'den _ j _ F _ Y'; $dateglobalize_3 = '22 apr 1996'; $datevalue_3 = 'j _ M _ Y'; $dateglobalize_4 = 'den 22 april'; $datevalue_4 = 'den _ j _ F'; $dateglobalize_6 = 'april 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'måndag, den 22 april 1996'; $datevalue_7 = 'l , _ den _ j _ F _ Y'; $dateglobalize_8 = 'måndag, den 22 april'; $datevalue_8 = 'l , _ den _ j _ F'; $dateglobalize_11 = 'må, 22 apr 1996'; $datevalue_11 = 'D , _ j _ M _ Y'; $dateglobalize_12 = 'må, 22 apr'; $datevalue_12 = 'D , _ j _ M'; $dmy_text_5 = '22␣april␣1996'; $dmy_text_6 = '22␣apr␣1996'; $mdy_text_5 = 'april␣22␣1996'; $mdy_text_6 = 'apr␣22␣1996'; $ymd_text_5 = '1996␣april␣22'; $ymd_text_6 = '1996␣apr␣22'; globalize/culture/de-DE.php 0000604 00000002664 15245530512 0011574 0 ustar 00 <?php /** * iCagenda Globalization de-DE (GERMAN) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22.04.1996'; $datevalue_1 = 'd . m . Y'; $dateglobalize_2 = '22. April 1996'; $datevalue_2 = 'j . _ F _ Y'; $dateglobalize_3 = '22. Apr 1996'; $datevalue_3 = 'j . _ M _ Y'; $dateglobalize_4 = '22 April'; $datevalue_4 = 'j _ F'; $dateglobalize_6 = 'April 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'Montag, 22. April 1996'; $datevalue_7 = 'l , _ j . _ F _ Y'; $dateglobalize_8 = 'Montag, 22 April'; $datevalue_8 = 'l , _ j _ F'; $dateglobalize_11 = 'Mo, 22. Apr 1996'; $datevalue_11 = 'D , _ j . _ M _ Y'; $dateglobalize_12 = 'Mo, 22 Apr'; $datevalue_12 = 'D , _ j _ M'; $dmy_text_5 = '22␣April␣1996'; $dmy_text_6 = '22␣Apr␣1996'; $mdy_text_5 = 'April␣22␣1996'; $mdy_text_6 = 'Apr␣22␣1996'; $ymd_text_5 = '1996␣April␣22'; $ymd_text_6 = '1996␣Apr␣22'; globalize/culture/pt-BR.php 0000604 00000003031 15245530512 0011627 0 ustar 00 <?php /** * iCagenda Globalization pt-BR (PORTUGUESE [BRAZIL]) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22/04/1996'; $datevalue_1 = 'd / m / Y'; $dateglobalize_2 = '22 de Abril de 1996'; $datevalue_2 = 'j _ de _ F _ de _ Y'; $dateglobalize_3 = '22 de Abr de 1996'; $datevalue_3 = 'j _ de _ M _ de _ Y'; $dateglobalize_4 = '22 de Abril'; $datevalue_4 = 'j _ de _ F'; $dateglobalize_6 = 'Abril de 1996'; $datevalue_6 = 'F _ de _ Y'; $dateglobalize_7 = 'Segunda, 22 de Abril de 1996'; $datevalue_7 = 'l , _ j _ de _ F _ de _ Y'; $dateglobalize_8 = 'Segunda, 22 de Abril'; $datevalue_8 = 'l , _ j _ de _ F'; $dateglobalize_11 = 'Seg, 22 de Abr de 1996'; $datevalue_11 = 'D , _ j _ de _ M _ de _ Y'; $dateglobalize_12 = 'Seg, 22 de Abr'; $datevalue_12 = 'D , _ j _ de _ M'; $dmy_text_5 = '22␣Abril␣1996'; $dmy_text_6 = '22␣Abr␣1996'; $mdy_text_5 = 'Abril␣22␣1996'; $mdy_text_6 = 'Abr␣22␣1996'; $ymd_text_5 = '1996␣Abril␣22'; $ymd_text_6 = '1996␣Abr␣22'; globalize/culture/pl-PL.php 0000604 00000002726 15245530512 0011641 0 ustar 00 <?php /** * iCagenda Globalization pl-PL (POLISH) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '1996-04-22'; $datevalue_1 = 'Y - m - d'; $dateglobalize_2 = '22 kwiecień 1996'; $datevalue_2 = 'j _ F _ Y'; $dateglobalize_3 = '22 Kwi 1996'; $datevalue_3 = 'j _ M _ Y'; $dateglobalize_4 = '22 kwiecień'; $datevalue_4 = 'j _ F'; $dateglobalize_6 = 'kwiecień 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'poniedziałek, 22 kwiecień 1996'; $datevalue_7 = 'l , _ j _ F _ Y'; $dateglobalize_8 = 'poniedziałek, 22 kwiecień'; $datevalue_8 = 'l , _ j _ F'; $dateglobalize_11 = 'Pn, 22 Kwi 1996'; $datevalue_11 = 'D , _ j _ M _ Y'; $dateglobalize_12 = 'Pn, 22 Kwi'; $datevalue_12 = 'D , _ j _ M'; $dmy_text_5 = '22␣kwiecień␣1996'; $dmy_text_6 = '22␣Kwi␣1996'; $mdy_text_5 = 'kwiecień␣22␣1996'; $mdy_text_6 = 'Kwi␣22␣1996'; $ymd_text_5 = '1996␣kwiecień␣22'; $ymd_text_6 = '1996␣Kwi␣22'; globalize/culture/nb-NO.php 0000604 00000002702 15245530512 0011620 0 ustar 00 <?php /** * iCagenda Globalization nb-NO (NORWEGIAN) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-24 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22.04.1996'; $datevalue_1 = 'd . m . Y'; $dateglobalize_2 = '22. april 1996'; $datevalue_2 = 'j . _ F _ Y'; $dateglobalize_3 = '22. apr 1996'; $datevalue_3 = 'j . _ M _ Y'; $dateglobalize_4 = '22. april'; $datevalue_4 = 'j . _ F'; $dateglobalize_6 = 'april 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'mandag, 22. april 1996'; $datevalue_7 = 'l , _ j . _ F _ Y'; $dateglobalize_8 = 'mandag, 22. april'; $datevalue_8 = 'l , _ j . _ F'; $dateglobalize_11 = 'man, 22. apr 1996'; $datevalue_11 = 'D , _ j . _ M _ Y'; $dateglobalize_12 = 'man, 22. apr'; $datevalue_12 = 'D , _ j . _ M'; $dmy_text_5 = '22␣april␣1996'; $dmy_text_6 = '22␣apr␣1996'; $mdy_text_5 = 'april␣22␣1996'; $mdy_text_6 = 'apr␣22␣1996'; $ymd_text_5 = '1996␣april␣22'; $ymd_text_6 = '1996␣apr␣22'; globalize/culture/fa-IR.php 0000604 00000003177 15245530512 0011614 0 ustar 00 <?php /** * iCagenda Globalization :: fa-IR - Persian (Iran) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C)2012-2015 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2015-04-24 * @version 3.5.4 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); // TODO : Remove Short month (not available in Persian, and could return errors // Reference Date : 30 April 1993, the birth of the web $dateglobalize_1 = '1372/02/10'; $datevalue_1 = 'Y / m / d'; $dateglobalize_2 = JText::_('FEBRUARY') . ' 10, 1372'; $datevalue_2 = 'F _ d , _ Y'; $dateglobalize_4 = JText::_('FEBRUARY') . ' 10'; $datevalue_4 = 'F _ d'; $dateglobalize_6 = JText::_('FEBRUARY') . ' 1372'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = JText::_('FRIDAY') . ' , _ ' . JText::_('FEBRUARY'). ' 10, 1372'; $datevalue_7 = 'l , _ F _ d , _ Y'; $dateglobalize_8 = JText::_('FRIDAY') . ' , _ ' . JText::_('FEBRUARY'). ' 10'; $datevalue_8 = 'l , _ F _ d'; $dmy_text_5 = '10␣' . JText::_('FEBRUARY') . '␣1372'; $dmy_text_6 = '10␣' . JText::_('FEBRUARY_SHORT') . '␣1372'; $mdy_text_5 = JText::_('FEBRUARY') . '␣10␣1372'; $mdy_text_6 = JText::_('FEBRUARY_SHORT') . '␣10␣1372'; $ymd_text_5 = '1372␣' . JText::_('FEBRUARY') . '␣10'; $ymd_text_6 = '1372␣' . JText::_('FEBRUARY_SHORT') . '␣10'; globalize/culture/nl-NL.php 0000604 00000002635 15245530512 0011634 0 ustar 00 <?php /** * iCagenda Globalization nl-NL (DUTCH) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-24 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22-04-1996'; $datevalue_1 = 'j - m - Y'; $dateglobalize_2 = '22 april 1996'; $datevalue_2 = 'j _ F _ Y'; $dateglobalize_3 = '22 apr 1996'; $datevalue_3 = 'j _ M _ Y'; $dateglobalize_4 = '22 april'; $datevalue_4 = 'j _ F'; $dateglobalize_6 = 'april 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'maandag 22 april 1996'; $datevalue_7 = 'l _ j _ F _ Y'; $dateglobalize_8 = 'maandag 22 april'; $datevalue_8 = 'l _ j _ F'; $dateglobalize_11 = 'ma 22 apr 1996'; $datevalue_11 = 'D _ j _ M _ Y'; $dateglobalize_12 = 'ma 22 apr'; $datevalue_12 = 'D _ j _ M'; $dmy_text_5 = '22␣april␣1996'; $dmy_text_6 = '22␣apr␣1996'; $mdy_text_5 = 'april␣22␣1996'; $mdy_text_6 = 'apr␣22␣1996'; $ymd_text_5 = '1996␣april␣22'; $ymd_text_6 = '1996␣apr␣22'; globalize/culture/fi-FI.php 0000604 00000002747 15245530512 0011612 0 ustar 00 <?php /** * iCagenda Globalization fi-FI (FINNISH) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22.4.1996'; $datevalue_1 = 'j . n . Y'; $dateglobalize_2 = '22. huhtikuu 1996'; $datevalue_2 = 'j . _ F _ Y'; $dateglobalize_3 = '22. huhti 1996'; $datevalue_3 = 'j . _ M _ Y'; $dateglobalize_4 = '22. huhtikuu'; $datevalue_4 = 'j . _ F'; $dateglobalize_6 = 'huhtikuu 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'maanantai, 22. huhtikuu 1996'; $datevalue_7 = 'l , _ j . _ F _ Y'; $dateglobalize_8 = 'maanantai, 22. huhtikuu'; $datevalue_8 = 'l , _ j . _ F'; $dateglobalize_11 = 'ma, 22. huhti 1996'; $datevalue_11 = 'D , _ j . _ M _ Y'; $dateglobalize_12 = 'ma, 22. huhti'; $datevalue_12 = 'D , _ j . _ M'; $dmy_text_5 = '22␣huhtikuu␣1996'; $dmy_text_6 = '22␣huhti␣1996'; $mdy_text_5 = 'huhtikuu␣22␣1996'; $mdy_text_6 = 'huhti␣22␣1996'; $ymd_text_5 = '1996␣huhtikuu␣22'; $ymd_text_6 = '1996␣huhti␣22'; globalize/culture/uk-UA.php 0000604 00000003374 15245530512 0011637 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iC Library - Library by Jooml!C, for Joomla! *------------------------------------------------------------------------------ * @package iC Library * @subpackage globalization * @copyright Copyright (c)2014-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 3 or later; see LICENSE.txt * @author SLV * @link http://www.joomlic.com * * @version 3.4.1 2015-01-10 * @since 3.2.8 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); $dateglobalize_1 = '22.04.1996 р.'; $datevalue_1 = 'd . m . Y _ р.'; $dateglobalize_2 = '22 квітня 1996 р.'; $datevalue_2 = 'j _ F _ Y _ р.'; $dateglobalize_3 = '22 квіт. 1996 р.'; $datevalue_3 = 'j _ M _ Y _ р.'; $dateglobalize_4 = '22 Квітень'; $datevalue_4 = 'j _ F'; $dateglobalize_6 = 'Квітень 1996 р.'; $datevalue_6 = 'F _ Y _ р.'; $dateglobalize_7 = 'Понеділок, 22 квітня 1996 р.'; $datevalue_7 = 'l , _ j _ F _ Y _ р.'; $dateglobalize_8 = 'Понеділок, 22 квітня'; $datevalue_8 = 'l , _ j _ F'; $dateglobalize_11 = 'Пн, 22 Квіт. 1996 р.'; $datevalue_11 = 'D , _ j _ M _ Y _ р.'; $dateglobalize_12 = 'Пн, 22 Квіт.'; $datevalue_12 = 'D , _ j _ M'; $dmy_text_5 = '22␣Квітень␣1996'; $dmy_text_6 = '22␣Квіт␣1996'; $mdy_text_5 = 'Квітень␣22␣1996'; $mdy_text_6 = 'Квіт␣22␣1996'; $ymd_text_5 = '1996␣Квітень␣22'; $ymd_text_6 = '1996␣Квіт␣22'; globalize/culture/ru-RU.php 0000604 00000003077 15245530512 0011667 0 ustar 00 <?php /** * iCagenda Globalization ru-RU (RUSSIAN) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22.04.1996'; $datevalue_1 = 'd . m . Y'; $dateglobalize_2 = '22 Апрель 1996 г.'; $datevalue_2 = 'j _ F _ Y _ г.'; $dateglobalize_3 = '22 Апр 1996 г.'; $datevalue_3 = 'j _ M _ Y _ г.'; $dateglobalize_4 = '22 Апрель'; $datevalue_4 = 'j _ F'; $dateglobalize_6 = 'Апрель 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'Понедельник, 22 Апрель 1996 г.'; $datevalue_7 = 'l , _ j _ F _ Y _ г.'; $dateglobalize_8 = 'Понедельник, 22 Апрель'; $datevalue_8 = 'l , _ j _ F'; $dateglobalize_11 = 'Пн, 22 Апр 1996 г.'; $datevalue_11 = 'D , _ j _ M _ Y _ г.'; $dateglobalize_12 = 'Пн, 22 Апр'; $datevalue_12 = 'D , _ j _ M'; $dmy_text_5 = '22␣Апрель␣1996'; $dmy_text_6 = '22␣Апр␣1996'; $mdy_text_5 = 'Апрель␣22␣1996'; $mdy_text_6 = 'Апр␣22␣1996'; $ymd_text_5 = '1996␣Апрель␣22'; $ymd_text_6 = '1996␣Апр␣22'; globalize/culture/it-IT.php 0000604 00000002651 15245530512 0011640 0 ustar 00 <?php /** * iCagenda Globalization it-IT (ITALIAN) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-24 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22/04/1996'; $datevalue_1 = 'd / m / Y'; $dateglobalize_2 = '22 Aprile 1996'; $datevalue_2 = 'j _ F _ Y'; $dateglobalize_3 = '22 Apr 1996'; $datevalue_3 = 'j _ M _ Y'; $dateglobalize_4 = '22 Aprile'; $datevalue_4 = 'd _ F'; $dateglobalize_6 = 'Aprile 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'Lunedì 22 Aprile 1996'; $datevalue_7 = 'l _ j _ F _ Y'; $dateglobalize_8 = 'Lunedì 22 Aprile'; $datevalue_8 = 'l _ j _ F'; $dateglobalize_11 = 'Lun 22 Apr 1996'; $datevalue_11 = 'D _ j _ M _ Y'; $dateglobalize_12 = 'Lun 22 Apr'; $datevalue_12 = 'D _ j _ M'; $dmy_text_5 = '22␣Aprile␣1996'; $dmy_text_6 = '22␣Apr␣1996'; $mdy_text_5 = 'Aprile␣22␣1996'; $mdy_text_6 = 'Apr␣22␣1996'; $ymd_text_5 = '1996␣Aprile␣22'; $ymd_text_6 = '1996␣Apr␣22'; globalize/culture/fr-FR.php 0000604 00000002634 15245530512 0011627 0 ustar 00 <?php /** * iCagenda Globalization fr-FR (French) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-24 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22/04/1996'; $datevalue_1 = 'd / m / Y'; $dateglobalize_2 = '22 avril 1996'; $datevalue_2 = 'j _ F _ Y'; $dateglobalize_3 = '22 Avr 1996'; $datevalue_3 = 'j _ M _ Y'; $dateglobalize_4 = '22 avril'; $datevalue_4 = 'j _ F'; $dateglobalize_6 = 'avril 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'lundi 22 avril 1996'; $datevalue_7 = 'l _ j _ F _ Y'; $dateglobalize_8 = 'lundi 22 avril'; $datevalue_8 = 'l _ j _ F'; $dateglobalize_11 = 'Lun 22 Avr 1996'; $datevalue_11 = 'D _ j _ M _ Y'; $dateglobalize_12 = 'Lun 22 Avr'; $datevalue_12 = 'D _ j _ M'; $dmy_text_5 = '22␣avril␣1996'; $dmy_text_6 = '22␣Avr␣1996'; $mdy_text_5 = 'avril␣22␣1996'; $mdy_text_6 = 'Avr␣22␣1996'; $ymd_text_5 = '1996␣avril␣22'; $ymd_text_6 = '1996␣Avr␣22'; globalize/culture/sk-SK.php 0000604 00000002701 15245530512 0011636 0 ustar 00 <?php /** * iCagenda Globalization sk-SK (SLOVAK) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-25 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22.4.1996'; $datevalue_1 = 'j . n . Y'; $dateglobalize_2 = '22. apríl 1996'; $datevalue_2 = 'j . _ F _ Y'; $dateglobalize_3 = '22. apr 1996'; $datevalue_3 = 'j . _ M _ Y'; $dateglobalize_4 = '22 apríl'; $datevalue_4 = 'd _ F'; $dateglobalize_6 = 'apríl 1996'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'pondelok, 22. apríl 1996'; $datevalue_7 = 'l , _ j . _ F _ Y'; $dateglobalize_8 = 'pondelok, 22 apríl'; $datevalue_8 = 'l , _ j _ F'; $dateglobalize_11 = 'pon, 22. apr 1996'; $datevalue_11 = 'D , _ j . _ M _ Y'; $dateglobalize_12 = 'pon, 22 apr'; $datevalue_12 = 'D , _ j _ M'; $dmy_text_5 = '22␣apríl␣1996'; $dmy_text_6 = '22␣apr␣1996'; $mdy_text_5 = 'apríl␣22␣1996'; $mdy_text_6 = 'apr␣22␣1996'; $ymd_text_5 = '1996␣apríl␣22'; $ymd_text_6 = '1996␣apr␣22'; globalize/culture/en-GB.php 0000604 00000005024 15245530512 0011577 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iCagenda Globalization en-GB (English) *------------------------------------------------------------------------------ * @package com_icagenda * @copyright Copyright (c)2012-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @version 3.5.11 2015-09-03 * @since 2.1.7 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); // Reference Date : 30 April 1993, the birth of the web // CERN announced that the World Wide Web would be free to anyone, with no fees due. $dateglobalize_1 = '30/04/1993'; $datevalue_1 = 'd / m / Y'; $dateglobalize_2 = '30 April 1993'; $datevalue_2 = 'd _ F _ Y'; $dateglobalize_3 = '30 Apr 1993'; $datevalue_3 = 'd _ M _ Y'; $dateglobalize_4 = '30 April'; $datevalue_4 = 'd _ F'; // Optional English Language $dateglobalize_5 = '30th April'; $datevalue_5 = 'jS _ F'; $dateglobalize_6 = 'April 1993'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = 'Friday, 30 April 1993'; $datevalue_7 = 'l , _ d _ F _ Y'; $dateglobalize_8 = 'Friday, 30 April'; $datevalue_8 = 'l , _ d _ F'; // Optional English en-GB Language $dateglobalize_9 = 'Friday, 30th April 1993'; $datevalue_9 = 'l , _ jS _ F _ Y'; // Optional English en-GB Language $dateglobalize_10 = 'Friday, 30th April'; $datevalue_10 = 'l , _ jS _ F'; $dateglobalize_11 = 'Fri, 30 Apr 1993'; $datevalue_11 = 'D , _ d _ M _ Y'; $dateglobalize_12 = 'Fri, 30 Apr'; $datevalue_12 = 'D , _ d _ M'; $dmy_text_5 = '30␣April␣1993'; $dmy_text_6 = '30␣Apr␣1993'; $mdy_text_5 = 'April␣30␣1993'; $mdy_text_6 = 'Apr␣30␣1993'; $ymd_text_5 = '1993␣April␣30'; $ymd_text_6 = '1993␣Apr␣30'; // Extra en-US $extra_1 = 'April 30, 1993'; $extravalue_1 = 'F _ d , _ Y'; $extra_2 = 'April 30'; $extravalue_2 = 'F _ d'; $extra_3 = '1993 April'; $extravalue_3 = 'Y _ F'; $extra_4 = 'Friday, April 30, 1993'; $extravalue_4 = 'l , _ F _ d , _ Y'; $extra_5 = 'Friday, April 30'; $extravalue_5 = 'l , _ F _ d'; // Extra en-CA $extra_6 = 'April-30-93'; $extravalue_6 = 'F - d - y'; // Extra en-SG $extra_7 = 'Friday, 30 April, 1993'; $extravalue_7 = 'l , _ j _ F , _ Y'; globalize/culture/zh-TW.php 0000604 00000002100 15245530512 0011650 0 ustar 00 <?php /** * iCagenda Globalization zh-TW (CHINESE (Traditional)) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-24 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '1996/04/22'; $datevalue_1 = 'Y / m / j'; $dateglobalize_2 = '1996四22'; $datevalue_2 = 'Y F j'; $dateglobalize_4 = '四22'; $datevalue_4 = 'F j'; $dateglobalize_6 = '1996四'; $datevalue_6 = 'Y F'; $dateglobalize_7 = '一, 1996四22'; $datevalue_7 = 'l , Y F j'; $dateglobalize_8 = '一, 四22'; $datevalue_8 = 'l , _ F j'; $dmy_text_5 = '22␣四␣1996'; $mdy_text_5 = '四␣22␣1996'; $ymd_text_5 = '1996␣四␣22'; globalize/culture/hr-HR.php 0000604 00000002755 15245530512 0011637 0 ustar 00 <?php /** * iCagenda Globalization hr-HR (CROATIAN) *---------------------------------------------------------------------------- * @package com_icagenda * @copyright Copyright (C) 2013 JOOMLIC - All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Jooml!C - http://www.joomlic.com * * @update 2013-04-24 * @version 2.1.7 *---------------------------------------------------------------------------- */ // No direct access to this file defined( '_JEXEC' ) or die( 'Restricted access' ); $dateglobalize_1 = '22.04.1996.'; $datevalue_1 = 'j . m . Y .'; $dateglobalize_2 = '22. Travanj 1996.'; $datevalue_2 = 'j . _ F _ Y .'; $dateglobalize_3 = '22. Tra 1996.'; $datevalue_3 = 'j . _ M _ Y .'; $dateglobalize_4 = '22. Travanj'; $datevalue_4 = 'j . _ F'; $dateglobalize_6 = 'Travanj 1996.'; $datevalue_6 = 'F _ Y .'; $dateglobalize_7 = 'Ponedjeljak, 22. Travanj 1996.'; $datevalue_7 = 'l , _ j . _ F _ Y .'; $dateglobalize_8 = 'Ponedjeljak, 22. Travanj'; $datevalue_8 = 'l , _ j . _ F'; $dateglobalize_11 = 'Pon, 22. Tra 1996.'; $datevalue_11 = 'D , _ j . _ M _ Y .'; $dateglobalize_12 = 'Pon, 22. Tra'; $datevalue_12 = 'D , _ j . _ M'; $dmy_text_5 = '22␣Travanj␣1996'; $dmy_text_6 = '22␣Tra␣1996'; $mdy_text_5 = 'Travanj␣22␣1996'; $mdy_text_6 = 'Tra␣22␣1996'; $ymd_text_5 = '1996␣Travanj␣22'; $ymd_text_6 = '1996␣Tra␣22'; globalize/culture/tr-TR.php 0000604 00000003021 15245530512 0011652 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iCagenda Globalization tr-TR - Turkish (Turkey) *------------------------------------------------------------------------------ * @package com_icagenda * @copyright Copyright (c)2012-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 3 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @version 3.3.6 2014-05-03 * @since 3.3.6 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); $dateglobalize_1 = '30.04.1993'; $datevalue_1 = 'd . m . Y'; $dateglobalize_2 = '30 Nisan 1993'; $datevalue_2 = 'd _ F _ Y'; $dateglobalize_3 = '30 Nis 1993'; $datevalue_3 = 'd _ M _ Y'; $dateglobalize_4 = '30 Nisan'; $datevalue_4 = 'd _ F'; $dateglobalize_6 = 'Nisan 1993'; $datevalue_6 = 'F _ Y'; $dateglobalize_7 = '30 Nisan 1993 Cuma'; $datevalue_7 = 'd _ F _ Y _ l'; $dateglobalize_8 = '30 Nisan Cuma'; $datevalue_8 = 'd _ F _ l'; $dateglobalize_11 = '30 Nis 1993 Cu'; $datevalue_11 = 'd _ M _ Y _ D'; $dateglobalize_12 = '30 Nis Cu'; $datevalue_12 = 'd _ M _ D'; $dmy_text_5 = '30␣Nisan␣1993'; $dmy_text_6 = '30␣Nis␣1993'; $mdy_text_5 = 'Nisan␣30␣1993'; $mdy_text_6 = 'Nis␣30␣1993'; $ymd_text_5 = '1993␣Nisan␣30'; $ymd_text_6 = '1993␣Nis␣30'; globalize/culture/index.html 0000604 00000000032 15245530512 0012165 0 ustar 00 <html><body></body></html>