| Current Path : /home/giteleslfp/www/administrator/components/com_templateck/interfaces/ |
| Current File : /home/giteleslfp/www/administrator/components/com_templateck/interfaces/ajaxcolorspalette.php |
<?php
/**
* @name Template Creator CK
* @package com_templateck
* @copyright Copyright (C) 2013. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Cedric Keiflin - http://www.template-creator.com - http://www.joomlack.fr
*/
// No direct access to this file
defined('TCK_LOADED') or die('Restricted access');
?>
<div id="ckcolorspalette">
<h3><?php echo TCK_Text::_('CK_COLOR_PALETTE') ?></h3>
<p><?php echo TCK_Text::_('CK_COLOR_PALETTE_DESC') ?></p>
<table style="width: 100%;vertical-align: middle;" class="ckedition cktable cktable-striped cktable-bordered cktable-hover">
<?php
for ($i=1;$i<=5;$i++) {
?>
<tr>
<td style="width:5%"><span class="label"><?php echo $i ?></span></td>
<td><input class="inputbox colorPicker" type="text" value="" name="palettecolor<?php echo $i ?>" id="palettecolor<?php echo $i ?>" size="6" style="width:70px;padding:5px;"/></td>
</tr>
<?php
}
?>
</table>
</div>
<script>
ckInitColorPickers();
</script>