*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
use CodeIgniter\Validation\Exceptions\ValidationException;
use Config\App;
use Config\Services;
use Config\Validation;
// CodeIgniter Form Helpers
if (! function_exists('form_open')) {
/**
* Form Declaration
*
* Creates the opening portion of the form.
*
* @param string $action the URI segments of the form destination
* @param array|string $attributes a key/value pair of attributes, or string representation
* @param array $hidden a key/value pair hidden data
*/
function form_open(string $action = '', $attributes = [], array $hidden = []): string
{
// If no action is provided then set to the current url
if ($action === '') {
$action = current_url(true);
} // If an action is not a full URL then turn it into one
elseif (strpos($action, '://') === false) {
// If an action has {locale}
if (strpos($action, '{locale}') !== false) {
$action = str_replace('{locale}', Services::request()->getLocale(), $action);
}
$action = site_url($action);
}
if (is_array($attributes) && array_key_exists('csrf_id', $attributes)) {
$csrfId = $attributes['csrf_id'];
unset($attributes['csrf_id']);
}
$attributes = stringify_attributes($attributes);
if (stripos($attributes, 'method=') === false) {
$attributes .= ' method="post"';
}
if (stripos($attributes, 'accept-charset=') === false) {
$config = config(App::class);
$attributes .= ' accept-charset="' . strtolower($config->charset) . '"';
}
$form = '
' . $extra;
}
}
if (! function_exists('set_value')) {
/**
* Form Value
*
* Grabs a value from the POST array for the specified field so you can
* re-populate an input field or textarea
*
* @param string $field Field name
* @param list|string $default Default value
* @param bool $htmlEscape Whether to escape HTML special characters or not
*
* @return list|string
*/
function set_value(string $field, $default = '', bool $htmlEscape = true)
{
$request = Services::request();
// Try any old input data we may have first
$value = $request->getOldInput($field);
if ($value === null) {
$value = $request->getPost($field) ?? $default;
}
return ($htmlEscape) ? esc($value) : $value;
}
}
if (! function_exists('set_select')) {
/**
* Set Select
*
* Let's you set the selected value of a