Your IP : 216.73.216.55


Current Path : /home/g/i/t/giteleslfp/www/administrator/components/com_templateck/interfaces/
Upload File :
Current File : /home/g/i/t/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>