Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
55624f9b67 | |||
3dd054b298 | |||
46564f9450 | |||
dc7e2c80a4 | |||
53e5fadfc1 | |||
9dfb6a52c3 |
16
src/builders/EmailBuilder.php
Executable file
16
src/builders/EmailBuilder.php
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace itguild\forms\builders;
|
||||||
|
|
||||||
|
|
||||||
|
use itguild\forms\inputs\BaseInput;
|
||||||
|
use itguild\forms\inputs\EmailInput;
|
||||||
|
use itguild\forms\inputs\TextInput;
|
||||||
|
|
||||||
|
class EmailBuilder implements Builder
|
||||||
|
{
|
||||||
|
public static function build(string $name, array $params = []): BaseInput
|
||||||
|
{
|
||||||
|
return new EmailInput(name: $name, paramsArray: $params);
|
||||||
|
}
|
||||||
|
}
|
@ -8,11 +8,29 @@ use itguild\forms\inputs\Select;
|
|||||||
class SelectBuilder
|
class SelectBuilder
|
||||||
{
|
{
|
||||||
|
|
||||||
public static function build(string $name, array $params = [])
|
// public static function build(string $name, array $params = [])
|
||||||
|
// {
|
||||||
|
// $value = $params['value'] ?? null;
|
||||||
|
// unset($params['value']);
|
||||||
|
// $options = $params['options'] ?? [];
|
||||||
|
// unset($params['options']);
|
||||||
|
//
|
||||||
|
// return new Select(name: $name, options: $options, value: $value, paramsArray: $params);
|
||||||
|
// }
|
||||||
|
|
||||||
|
public static function build(string $name, array $params = []): Select
|
||||||
{
|
{
|
||||||
$value = $params['value'] ?? null;
|
$value = $params['value'] ?? null;
|
||||||
unset($params['value']);
|
unset($params['value']);
|
||||||
$options = $params['options'] ?? [];
|
if (isset($params['prompt'])) {
|
||||||
|
$options['prompt'] = $params['prompt'] ?? null;
|
||||||
|
foreach ($params['options'] as $key => $val) {
|
||||||
|
$options[$key] = $val;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$options = $params['options'] ?? [];
|
||||||
|
}
|
||||||
|
|
||||||
unset($params['options']);
|
unset($params['options']);
|
||||||
|
|
||||||
return new Select(name: $name, options: $options, value: $value, paramsArray: $params);
|
return new Select(name: $name, options: $options, value: $value, paramsArray: $params);
|
||||||
|
62
src/inputs/EmailInput.php
Executable file
62
src/inputs/EmailInput.php
Executable file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace itguild\forms\inputs;
|
||||||
|
|
||||||
|
use itguild\forms\debug\Debug;
|
||||||
|
use itguild\forms\inputs\BaseInput;
|
||||||
|
use itguild\forms\templates\bootstrap5\Bootstrap5Template;
|
||||||
|
use itguild\forms\templates\Simple\SimpleTemplate;
|
||||||
|
use itguild\forms\templates\Template;
|
||||||
|
use itguild\forms\traits\CreateParams;
|
||||||
|
|
||||||
|
class EmailInput extends BaseInput
|
||||||
|
{
|
||||||
|
|
||||||
|
use CreateParams;
|
||||||
|
private string $name;
|
||||||
|
private array $paramsArray;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $name
|
||||||
|
* @param array $paramsArray
|
||||||
|
*/
|
||||||
|
public function __construct(string $name, array $paramsArray = [])
|
||||||
|
{
|
||||||
|
$this->name = $name;
|
||||||
|
$this->paramsArray = $paramsArray;
|
||||||
|
$this->inputTemplate = new SimpleTemplate();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return self
|
||||||
|
*/
|
||||||
|
public function create(): self
|
||||||
|
{
|
||||||
|
$paramsString = $this->createParams($this->paramsArray);
|
||||||
|
$label = "";
|
||||||
|
$input = "<input name='$this->name' type='email' $paramsString >";
|
||||||
|
|
||||||
|
$this->createLabel();
|
||||||
|
|
||||||
|
$this->html = str_replace('{input}', $input, $this->inputTemplate->getInputTemplate());
|
||||||
|
$this->html = str_replace('{label}', $this->labelString, $this->html);
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $name
|
||||||
|
* @param array $paramsArray
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function build(string $name, array $paramsArray = []): void
|
||||||
|
{
|
||||||
|
$input = new self($name, $paramsArray);
|
||||||
|
$input->create()->render();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
namespace itguild\forms\traits;
|
namespace itguild\forms\traits;
|
||||||
|
|
||||||
|
use itguild\forms\debug\Debug;
|
||||||
|
|
||||||
trait CreateOption
|
trait CreateOption
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
@ -9,18 +11,62 @@ trait CreateOption
|
|||||||
* @param $value
|
* @param $value
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
// public function createOption(array $options, $value = null): string
|
||||||
|
// {
|
||||||
|
// $optionsString = "";
|
||||||
|
// if (is_array($value)) {
|
||||||
|
// foreach ($options as $val => $title) {
|
||||||
|
// $selected = in_array($title, $value) ? "selected" : "";
|
||||||
|
// $optionsString .= "<option $selected value='$val'>$title</option>";
|
||||||
|
// }
|
||||||
|
// } else {
|
||||||
|
// foreach ($options as $val => $title) {
|
||||||
|
// if (is_numeric($value)) {
|
||||||
|
// $selected = (int)$value === $val ? "selected" : "";
|
||||||
|
// } else {
|
||||||
|
// $selected = $value === $val ? "selected" : "";
|
||||||
|
// }
|
||||||
|
// $optionsString .= "<option $selected value='$val'>$title</option>";
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// return $optionsString;
|
||||||
|
// }
|
||||||
|
|
||||||
public function createOption(array $options, $value = null): string
|
public function createOption(array $options, $value = null): string
|
||||||
{
|
{
|
||||||
$optionsString = "";
|
$optionsString = "";
|
||||||
if (is_array($value)) {
|
if ($value) {
|
||||||
foreach ($options as $val => $title) {
|
if (isset($options['prompt'])) {
|
||||||
$selected = in_array($title, $value) ? "selected" : "";
|
$prompt = $options['prompt'];
|
||||||
$optionsString .= "<option $selected value='$val'>$title</option>";
|
$optionsString .= "<option value='''>$prompt</option>";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_array($value)) {
|
||||||
|
foreach ($options as $val => $title) {
|
||||||
|
if ($val === 'prompt') continue;
|
||||||
|
$selected = in_array($title, $value) ? "selected" : "";
|
||||||
|
$optionsString .= "<option $selected value='$val'>$title</option>";
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
foreach ($options as $val => $title) {
|
||||||
|
if ($val === 'prompt') continue;
|
||||||
|
if (is_numeric($value)) {
|
||||||
|
$selected = (int)$value === $val ? "selected" : "";
|
||||||
|
} else {
|
||||||
|
$selected = $value === $val ? "selected" : "";
|
||||||
|
}
|
||||||
|
$optionsString .= "<option $selected value='$val'>$title</option>";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if (isset($options['prompt'])) {
|
||||||
|
$prompt = $options['prompt'];
|
||||||
|
$optionsString .= "<option value='' selected='selected'>$prompt</option>";
|
||||||
|
}
|
||||||
foreach ($options as $val => $title) {
|
foreach ($options as $val => $title) {
|
||||||
$selected = (int)$value === $val ? "selected" : "";
|
if ($val === 'prompt') continue;
|
||||||
$optionsString .= "<option $selected value='$val'>$title</option>";
|
$optionsString .= "<option value='$val'>$title</option>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ trait CreateParams
|
|||||||
{
|
{
|
||||||
$paramsString = "";
|
$paramsString = "";
|
||||||
foreach($data as $key => $param){
|
foreach($data as $key => $param){
|
||||||
if(is_string($param)){
|
if(is_string($param) || is_numeric($param)){
|
||||||
$paramsString .= $key . "='" . $param . "'";
|
$paramsString .= $key . "='" . $param . "'";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user