| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/components/com_jce/editor/plugins/table/tmpl/ |
Upload File : |
<?php
/**
* @copyright Copyright (c) 2009-2022 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
\defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
?>
<div class="uk-form-row uk-grid">
<label class="uk-form-label uk-width-2-10" for="cols">
<?php echo Text::_('WF_TABLE_COLS'); ?></label>
<div class="uk-form-controls uk-width-3-10">
<input id="cols" type="number" min="1" value="" required />
</div>
<label class="uk-form-label uk-width-2-10" for="rows">
<?php echo Text::_('WF_TABLE_ROWS'); ?></label>
<div class="uk-form-controls uk-width-3-10">
<input id="rows" type="number" value="" required />
</div>
</div>
<div class="uk-form-row uk-grid">
<label class="uk-form-label uk-width-2-10" for="cellpadding">
<?php echo Text::_('WF_TABLE_CELLPADDING'); ?></label>
<div class="uk-form-controls uk-width-3-10">
<input id="cellpadding" type="number" value="" />
</div>
<label class="uk-form-label uk-width-2-10" for="cellspacing">
<?php echo Text::_('WF_TABLE_CELLSPACING'); ?></label>
<div class="uk-form-controls uk-width-3-10">
<input id="cellspacing" type="number" value="" />
</div>
</div>
<div class="uk-form-row uk-grid">
<label class="uk-form-label uk-width-2-10" for="align">
<?php echo Text::_('WF_TABLE_ALIGN'); ?></label>
<div class="uk-form-controls uk-width-3-10">
<select id="align">
<option value=""><?php echo Text::_('WF_OPTION_NOT_SET'); ?></option>
<option value="center"><?php echo Text::_('WF_TABLE_ALIGN_MIDDLE'); ?></option>
<option value="left"><?php echo Text::_('WF_TABLE_ALIGN_LEFT'); ?></option>
<option value="right"><?php echo Text::_('WF_TABLE_ALIGN_RIGHT'); ?></option>
</select>
</div>
<label class="uk-form-label uk-width-2-10" for="table_border">
<?php echo Text::_('WF_TABLE_BORDER'); ?></label>
<div class="uk-form-controls uk-width-3-10">
<input id="table_border" type="number" value="" />
</div>
</div>
<div class="uk-form-row uk-grid">
<label class="uk-form-label uk-width-2-10" for="width">
<?php echo Text::_('WF_TABLE_WIDTH'); ?></label>
<div class="uk-form-controls uk-width-3-10">
<input type="text" id="width" value="" />
</div>
<label class="uk-form-label uk-width-2-10" for="height">
<?php echo Text::_('WF_TABLE_HEIGHT'); ?></label>
<div class="uk-form-controls uk-width-3-10">
<input type="text" id="height" value="" />
</div>
</div>
<div class="uk-form-row">
<input id="caption" type="checkbox" />
<label for="caption">
<?php echo Text::_('WF_TABLE_CAPTION'); ?></label>
</div>