2019-02-14 10:56:25 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interfaz tope gama que obliga a implementar metodos.
|
|
|
|
*/
|
|
|
|
class Wizard
|
|
|
|
{
|
|
|
|
|
2019-02-14 11:32:07 +01:00
|
|
|
/**
|
|
|
|
* Breadcrum
|
|
|
|
*
|
|
|
|
* @var array.
|
|
|
|
*/
|
|
|
|
public $breadcrum;
|
|
|
|
|
2019-02-14 17:56:10 +01:00
|
|
|
/**
|
|
|
|
* Undocumented variable
|
|
|
|
*
|
|
|
|
* @var [type]
|
|
|
|
*/
|
|
|
|
public $page;
|
|
|
|
|
2019-02-14 11:32:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setter for breadcrum
|
|
|
|
*
|
|
|
|
* @param array $str Breadcrum.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setBreadcrum(array $str)
|
|
|
|
{
|
|
|
|
$this->breadcrum = $str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Getter for breadcrum
|
|
|
|
*
|
|
|
|
* @return array Breadcrum.
|
|
|
|
*/
|
|
|
|
public function getBreadcrum()
|
|
|
|
{
|
|
|
|
return $this->breadcrum;
|
|
|
|
}
|
|
|
|
|
2019-02-14 10:56:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To be overwritten.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
2019-02-14 13:27:49 +01:00
|
|
|
ui_require_css_file('wizard');
|
2019-02-14 10:56:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* To be overwritten.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function load()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-14 11:32:07 +01:00
|
|
|
/**
|
|
|
|
* Print breadcrum to follow flow.
|
|
|
|
*
|
|
|
|
* @return string Breadcrum HTML code.
|
|
|
|
*/
|
|
|
|
public function printBreadcrum()
|
|
|
|
{
|
|
|
|
return '<h1>'.implode(' > ', $this->breadcrum).'</h1>';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints a header for current wizard.
|
|
|
|
*
|
|
|
|
* @param boolean $return Return HTML or print it.
|
|
|
|
*
|
|
|
|
* @return string HTML code for header.
|
|
|
|
*/
|
|
|
|
public function printHeader(bool $return=false)
|
|
|
|
{
|
|
|
|
$output = $this->printBreadcrum();
|
|
|
|
if ($return === false) {
|
|
|
|
echo $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-14 10:56:25 +01:00
|
|
|
/**
|
|
|
|
* Print input using functions html lib.
|
|
|
|
*
|
|
|
|
* @param array $data Input definition.
|
|
|
|
*
|
|
|
|
* @return string HTML code for desired input.
|
|
|
|
*/
|
2019-02-14 17:14:01 +01:00
|
|
|
public function printInput($data)
|
2019-02-14 10:56:25 +01:00
|
|
|
{
|
|
|
|
if (is_array($data) === false) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ($data['type']) {
|
|
|
|
case 'text':
|
|
|
|
return html_print_input_text(
|
|
|
|
$data['name'],
|
|
|
|
$data['value'],
|
2019-02-14 11:53:06 +01:00
|
|
|
((isset($data['alt']) === true) ? $data['alt'] : ''),
|
|
|
|
((isset($data['size']) === true) ? $data['size'] : 50),
|
|
|
|
((isset($data['maxlength']) === true) ? $data['maxlength'] : 255),
|
2019-02-14 10:56:25 +01:00
|
|
|
((isset($data['return']) === true) ? $data['return'] : true),
|
|
|
|
((isset($data['disabled']) === true) ? $data['disabled'] : false),
|
|
|
|
((isset($data['required']) === true) ? $data['required'] : false),
|
|
|
|
((isset($data['function']) === true) ? $data['function'] : ''),
|
|
|
|
((isset($data['class']) === true) ? $data['class'] : ''),
|
|
|
|
((isset($data['onChange']) === true) ? $data['onChange'] : ''),
|
|
|
|
((isset($data['autocomplete']) === true) ? $data['autocomplete'] : '')
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'image':
|
|
|
|
return html_print_input_image(
|
|
|
|
$data['name'],
|
|
|
|
$data['src'],
|
|
|
|
$data['value'],
|
|
|
|
((isset($data['style']) === true) ? $data['style'] : ''),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['options']) === true) ? $data['options'] : false)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'text_extended':
|
|
|
|
return html_print_input_text_extended(
|
|
|
|
$data['name'],
|
|
|
|
$data['value'],
|
|
|
|
$data['id'],
|
|
|
|
$data['alt'],
|
|
|
|
$data['size'],
|
|
|
|
$data['maxlength'],
|
|
|
|
$data['disabled'],
|
|
|
|
$data['script'],
|
|
|
|
$data['attributes'],
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['password']) === true) ? $data['password'] : false),
|
|
|
|
((isset($data['function']) === true) ? $data['function'] : '')
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'password':
|
|
|
|
return html_print_input_password(
|
|
|
|
$data['name'],
|
|
|
|
$data['value'],
|
|
|
|
((isset($data['alt']) === true) ? $data['alt'] : ''),
|
|
|
|
((isset($data['size']) === true) ? $data['size'] : 50),
|
|
|
|
((isset($data['maxlength']) === true) ? $data['maxlength'] : 255),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['disabled']) === true) ? $data['disabled'] : false),
|
|
|
|
((isset($data['required']) === true) ? $data['required'] : false),
|
|
|
|
((isset($data['class']) === true) ? $data['class'] : '')
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'text':
|
|
|
|
return html_print_input_text(
|
|
|
|
$data['name'],
|
|
|
|
$data['value'],
|
|
|
|
((isset($data['alt']) === true) ? $data['alt'] : ''),
|
|
|
|
((isset($data['size']) === true) ? $data['size'] : 50),
|
|
|
|
((isset($data['maxlength']) === true) ? $data['maxlength'] : 255),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['disabled']) === true) ? $data['disabled'] : false),
|
|
|
|
((isset($data['required']) === true) ? $data['required'] : false),
|
|
|
|
((isset($data['function']) === true) ? $data['function'] : ''),
|
|
|
|
((isset($data['class']) === true) ? $data['class'] : ''),
|
|
|
|
((isset($data['onChange']) === true) ? $data['onChange'] : ''),
|
|
|
|
((isset($data['autocomplete']) === true) ? $data['autocomplete'] : '')
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'image':
|
|
|
|
return html_print_input_image(
|
|
|
|
$data['name'],
|
|
|
|
$data['src'],
|
|
|
|
$data['value'],
|
|
|
|
((isset($data['style']) === true) ? $data['style'] : ''),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['options']) === true) ? $data['options'] : false)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'hidden':
|
|
|
|
return html_print_input_hidden(
|
|
|
|
$data['name'],
|
|
|
|
$data['value'],
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['class']) === true) ? $data['class'] : false)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'hidden_extended':
|
|
|
|
return html_print_input_hidden_extended(
|
|
|
|
$data['name'],
|
|
|
|
$data['value'],
|
|
|
|
$data['id'],
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['class']) === true) ? $data['class'] : false)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'color':
|
|
|
|
return html_print_input_color(
|
|
|
|
$data['name'],
|
|
|
|
$data['value'],
|
|
|
|
((isset($data['class']) === true) ? $data['class'] : false),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'file':
|
|
|
|
return html_print_input_file(
|
|
|
|
$data['name'],
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['options']) === true) ? $data['options'] : false)
|
|
|
|
);
|
|
|
|
|
2019-02-14 13:27:49 +01:00
|
|
|
case 'select':
|
|
|
|
return html_print_select(
|
|
|
|
$data['fields'],
|
|
|
|
$data['name'],
|
|
|
|
((isset($data['selected']) === true) ? $data['selected'] : ''),
|
|
|
|
((isset($data['script']) === true) ? $data['script'] : ''),
|
|
|
|
((isset($data['nothing']) === true) ? $data['nothing'] : ''),
|
|
|
|
((isset($data['nothing_value']) === true) ? $data['nothing_value'] : 0),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['multiple']) === true) ? $data['multiple'] : false),
|
|
|
|
((isset($data['sort']) === true) ? $data['sort'] : true),
|
|
|
|
((isset($data['class']) === true) ? $data['class'] : ''),
|
|
|
|
((isset($data['disabled']) === true) ? $data['disabled'] : false),
|
|
|
|
((isset($data['style']) === true) ? $data['style'] : false),
|
|
|
|
((isset($data['option_style']) === true) ? $data['option_style'] : false),
|
|
|
|
((isset($data['size']) === true) ? $data['size'] : false),
|
|
|
|
((isset($data['modal']) === true) ? $data['modal'] : false),
|
|
|
|
((isset($data['message']) === true) ? $data['message'] : ''),
|
|
|
|
((isset($data['select_all']) === true) ? $data['select_all'] : false)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'select_from_sql':
|
|
|
|
return html_print_select_from_sql(
|
|
|
|
$data['sql'],
|
|
|
|
$data['name'],
|
|
|
|
((isset($data['selected']) === true) ? $data['selected'] : ''),
|
|
|
|
((isset($data['script']) === true) ? $data['script'] : ''),
|
|
|
|
((isset($data['nothing']) === true) ? $data['nothing'] : ''),
|
|
|
|
((isset($data['nothing_value']) === true) ? $data['nothing_value'] : '0'),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['multiple']) === true) ? $data['multiple'] : false),
|
|
|
|
((isset($data['sort']) === true) ? $data['sort'] : true),
|
|
|
|
((isset($data['disabled']) === true) ? $data['disabled'] : false),
|
|
|
|
((isset($data['style']) === true) ? $data['style'] : false),
|
|
|
|
((isset($data['size']) === true) ? $data['size'] : false),
|
|
|
|
((isset($data['trucate_size']) === true) ? $data['trucate_size'] : GENERIC_SIZE_TEXT)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'select_groups':
|
|
|
|
return html_print_select_groups(
|
|
|
|
((isset($data['id_user']) === true) ? $data['id_user'] : false),
|
|
|
|
((isset($data['privilege']) === true) ? $data['privilege'] : 'AR'),
|
|
|
|
((isset($data['returnAllGroup']) === true) ? $data['returnAllGroup'] : true),
|
|
|
|
$data['name'],
|
|
|
|
((isset($data['selected']) === true) ? $data['selected'] : ''),
|
|
|
|
((isset($data['script']) === true) ? $data['script'] : ''),
|
|
|
|
((isset($data['nothing']) === true) ? $data['nothing'] : ''),
|
|
|
|
((isset($data['nothing_value']) === true) ? $data['nothing_value'] : 0),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['multiple']) === true) ? $data['multiple'] : false),
|
|
|
|
((isset($data['sort']) === true) ? $data['sort'] : true),
|
|
|
|
((isset($data['class']) === true) ? $data['class'] : ''),
|
|
|
|
((isset($data['disabled']) === true) ? $data['disabled'] : false),
|
|
|
|
((isset($data['style']) === true) ? $data['style'] : false),
|
|
|
|
((isset($data['option_style']) === true) ? $data['option_style'] : false),
|
|
|
|
((isset($data['id_group']) === true) ? $data['id_group'] : false),
|
|
|
|
((isset($data['keys_field']) === true) ? $data['keys_field'] : 'id_grupo'),
|
|
|
|
((isset($data['strict_user']) === true) ? $data['strict_user'] : false),
|
|
|
|
((isset($data['delete_groups']) === true) ? $data['delete_groups'] : false),
|
|
|
|
((isset($data['include_groups']) === true) ? $data['include_groups'] : false)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'submit':
|
|
|
|
return html_print_submit_button(
|
|
|
|
((isset($data['label']) === true) ? $data['label'] : 'OK'),
|
|
|
|
((isset($data['name']) === true) ? $data['name'] : ''),
|
|
|
|
((isset($data['disabled']) === true) ? $data['disabled'] : false),
|
|
|
|
((isset($data['attributes']) === true) ? $data['attributes'] : ''),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false)
|
|
|
|
);
|
|
|
|
|
2019-02-14 17:14:01 +01:00
|
|
|
case 'checkbox':
|
|
|
|
return html_print_checkbox(
|
|
|
|
$data['name'],
|
|
|
|
$data['value'],
|
|
|
|
((isset($data['checked']) === true) ? $data['checked'] : false),
|
|
|
|
((isset($data['return']) === true) ? $data['return'] : false),
|
|
|
|
((isset($data['disabled']) === true) ? $data['disabled'] : false),
|
|
|
|
((isset($data['script']) === true) ? $data['script'] : ''),
|
|
|
|
((isset($data['disabled_hidden']) === true) ? $data['disabled_hidden'] : false)
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'switch':
|
|
|
|
return html_print_switch($data);
|
|
|
|
|
2019-02-14 10:56:25 +01:00
|
|
|
default:
|
|
|
|
// Ignore.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-14 17:14:01 +01:00
|
|
|
/**
|
|
|
|
* Print a block of inputs.
|
|
|
|
*
|
|
|
|
* @param array $input Definition of target block to be printed.
|
|
|
|
* @param boolean $return Return as string or direct output.
|
|
|
|
*
|
|
|
|
* @return string HTML content.
|
|
|
|
*/
|
|
|
|
public function printBlock(array $input, bool $return=false)
|
|
|
|
{
|
|
|
|
$output = '';
|
|
|
|
if ($input['hidden'] == 1) {
|
|
|
|
$class = ' class="hidden"';
|
|
|
|
} else {
|
|
|
|
$class = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_array($input['block_content']) === true) {
|
|
|
|
// Print independent block of inputs.
|
|
|
|
$output .= '<li id="'.$input['block_id'].'" '.$class.'>';
|
|
|
|
$output .= '<ul class="wizard">';
|
|
|
|
foreach ($input['block_content'] as $input) {
|
|
|
|
$output .= $this->printBlock($input, $return);
|
|
|
|
}
|
|
|
|
|
|
|
|
$output .= '</ul></li>';
|
|
|
|
} else {
|
|
|
|
if ($input['arguments']['type'] != 'hidden') {
|
|
|
|
$output .= '<li id="'.$input['id'].'" '.$class.'>';
|
|
|
|
$output .= '<label>'.$input['label'].'</label>';
|
|
|
|
$output .= $this->printInput($input['arguments']);
|
|
|
|
// Allow dynamic content.
|
|
|
|
$output .= $input['extra'];
|
|
|
|
$output .= '</li>';
|
|
|
|
} else {
|
|
|
|
$output .= $this->printInput($input['arguments']);
|
|
|
|
// Allow dynamic content.
|
|
|
|
$output .= $input['extra'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($return === false) {
|
|
|
|
echo $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-14 10:56:25 +01:00
|
|
|
/**
|
|
|
|
* Print a form.
|
|
|
|
*
|
2019-02-14 17:14:01 +01:00
|
|
|
* @param array $data Definition of target form to be printed.
|
|
|
|
* @param boolean $return Return as string or direct output.
|
2019-02-14 10:56:25 +01:00
|
|
|
*
|
2019-02-14 11:32:07 +01:00
|
|
|
* @return string HTML code.
|
2019-02-14 10:56:25 +01:00
|
|
|
*/
|
2019-02-14 11:53:06 +01:00
|
|
|
public function printForm(array $data, bool $return=false)
|
2019-02-14 10:56:25 +01:00
|
|
|
{
|
|
|
|
$form = $data['form'];
|
|
|
|
$inputs = $data['inputs'];
|
|
|
|
$js = $data['js'];
|
|
|
|
|
2019-02-14 16:56:03 +01:00
|
|
|
$output = '<form enctype="'.$form['enctype'].'" action="'.$form['action'].'" method="'.$form['method'];
|
2019-02-14 10:56:25 +01:00
|
|
|
$output .= '" '.$form['extra'].'>';
|
|
|
|
|
2019-02-14 13:27:49 +01:00
|
|
|
$output .= '<ul class="wizard">';
|
2019-02-14 10:56:25 +01:00
|
|
|
|
|
|
|
foreach ($inputs as $input) {
|
2019-02-14 17:14:01 +01:00
|
|
|
$output .= $this->printBlock($input, true);
|
2019-02-14 10:56:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$output .= '</ul>';
|
|
|
|
$output .= '</form>';
|
2019-02-14 13:27:49 +01:00
|
|
|
$output .= '<script>'.$js.'</script>';
|
2019-02-14 10:56:25 +01:00
|
|
|
|
2019-02-14 11:53:06 +01:00
|
|
|
if ($return === false) {
|
|
|
|
echo $output;
|
|
|
|
}
|
|
|
|
|
2019-02-14 10:56:25 +01:00
|
|
|
return $output;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|