first commit
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Convert Forms
|
||||
* @version 3.2.12 Free
|
||||
*
|
||||
* @author Tassos Marinos <info@tassos.gr>
|
||||
* @link http://www.tassos.gr
|
||||
* @copyright Copyright © 2020 Tassos Marinos All Rights Reserved
|
||||
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
extract($displayData);
|
||||
|
||||
?>
|
||||
|
||||
<textarea name="<?php echo $field->input_name ?>" id="<?php echo $field->input_id; ?>"
|
||||
<?php if (isset($field->required) && $field->required) { ?>
|
||||
required
|
||||
<?php } ?>
|
||||
|
||||
<?php if (isset($field->placeholder)) { ?>
|
||||
placeholder="<?php echo htmlspecialchars($field->placeholder, ENT_COMPAT, 'UTF-8'); ?>"
|
||||
<?php } ?>
|
||||
|
||||
<?php if (isset($field->readonly) && $field->readonly == '1') { ?>
|
||||
readonly
|
||||
<?php } ?>
|
||||
|
||||
<?php if (isset($field->minchars) && $field->minchars > 0) { ?>
|
||||
minlength="<?php echo $field->minchars; ?>"
|
||||
<?php } ?>
|
||||
|
||||
<?php if (isset($field->maxchars) && $field->maxchars > 0) { ?>
|
||||
maxlength="<?php echo $field->maxchars; ?>"
|
||||
<?php } ?>
|
||||
|
||||
class="<?php echo $field->class ?>"
|
||||
rows="<?php echo $field->textareaheight ?>"><?php
|
||||
if (isset($field->value))
|
||||
{
|
||||
echo $field->value;
|
||||
}
|
||||
?></textarea>
|
||||
Reference in New Issue
Block a user