Also split all queries into multi line ones Fixes in Form\Generate for TableArray Interface location move Update EditBase to new and old edit schema (scheme) file name
64 lines
1.3 KiB
PHP
64 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CoreLibs\Output\Form\TableArrays;
|
|
|
|
class EditVisibleGroup implements Interface\TableArraysInterface
|
|
{
|
|
/** @var \CoreLibs\Output\Form\Generate */
|
|
private $form;
|
|
|
|
/**
|
|
* constructor
|
|
* @param \CoreLibs\Output\Form\Generate $form base form class
|
|
*/
|
|
public function __construct(\CoreLibs\Output\Form\Generate $form)
|
|
{
|
|
$this->form = $form;
|
|
$this->form->log->debug('CLASS LOAD', __NAMESPACE__ . __CLASS__);
|
|
}
|
|
|
|
/**
|
|
* return the table array
|
|
*
|
|
* @return array<mixed>
|
|
*/
|
|
public function setTableArray(): array
|
|
{
|
|
return [
|
|
'table_array' => [
|
|
'edit_visible_group_id' => [
|
|
'value' => $_POST['edit_visible_group_id'] ?? '',
|
|
'type' => 'hidden',
|
|
'pk' => 1
|
|
],
|
|
'name' => [
|
|
'value' => $_POST['name'] ?? '',
|
|
'output_name' => 'Group name',
|
|
'mandatory' => 1,
|
|
'type' => 'text'
|
|
],
|
|
'flag' => [
|
|
'value' => $_POST['flag'] ?? '',
|
|
'output_name' => 'Flag',
|
|
'mandatory' => 1,
|
|
'type' => 'text',
|
|
'error_check' => 'alphanumeric|unique'
|
|
],
|
|
],
|
|
'table_name' => 'edit_visible_group',
|
|
'load_query' => "SELECT edit_visible_group_id, name "
|
|
. "FROM edit_visible_group "
|
|
. "ORDER BY name",
|
|
'show_fields' => [
|
|
[
|
|
'name' => 'name'
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|
|
|
|
// __END__
|