WIP: Backup upload

This commit is contained in:
Jose Gonzalez 2020-03-19 16:14:38 +01:00
parent 451cdf2ca1
commit cca11f2341
2 changed files with 268 additions and 90 deletions

View File

@ -13,9 +13,10 @@
// GNU General Public License for more details.
// Load global vars
// TESTING
/*
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
error_reporting(E_ALL); */
$cipotes = false;
// END
global $config;
@ -31,6 +32,7 @@ if (! check_acl($config['id_user'], 0, 'PM')) {
return;
}
// hd($_POST);
require_once $config['homedir'].'/include/class/ManageBlock.class.php';
$ajaxPage = ENTERPRISE_DIR.'/godmode/agentes/ManageBlock';
// Control call flow.
@ -73,13 +75,12 @@ if (is_ajax()) {
// Run.
$manageBlock->run();
if ($id_np == 0) {
// Create new id_np
$manageBlock->moduleTemplateForm();
} else if ($id_np > 0) {
// Show the id_np selected
} else {
if (empty($id_np)) {
// List all Module Block
$manageBlock->moduleBlockList();
} else {
// Create new o update Template
hd($id_np);
$manageBlock->moduleTemplateForm($id_np);
}
}

View File

@ -42,13 +42,6 @@ class ManageBlock extends HTML
*/
private $ajaxController;
/**
* Undocumented function
*
* @param array $ajax_controller
*/
private $countNetworkTemplates;
/**
* Undocumented variable
*
@ -56,13 +49,6 @@ class ManageBlock extends HTML
*/
private $offset;
/**
* Table with module blocks
*
* @var [type]
*/
private $resultModuleBlocksTable;
/**
* Base URL for internal purposes
*
@ -99,24 +85,10 @@ class ManageBlock extends HTML
$this->offset = (int) get_parameter('offset', 0);
$this->countNetworkTemplates = db_get_value(
'count(*)',
'tnetwork_profile'
);
$this->resultModuleBlocksTable = db_get_all_rows_filter(
'tnetwork_profile',
[
'order' => 'name',
'limit' => $config['block_size'],
'offset' => $this->offset,
]
);
$this->ajaxController = $ajax_controller;
// Set baseUrl for use it in several locations in this class
$this->baseUrl = 'index.php?sec=gmodules&sec2=godmode/modules/manage_block_templates';
$this->baseUrl = ui_get_full_url('index.php?sec=gmodules&sec2=godmode/modules/manage_block_templates');
return $this;
}
@ -129,6 +101,10 @@ class ManageBlock extends HTML
*/
public function run()
{
// Require specific CSS and JS.
ui_require_css_file('wizard');
ui_require_css_file('discovery');
// Header section.
// Breadcrums.
$this->setBreadcrum([]);
@ -163,27 +139,34 @@ class ManageBlock extends HTML
$this->printHeader(true)
);
ui_pagination($this->countNetworkTemplates, false, $this->offset);
// echo $this->moduleBlockList();
// $this->printForm(
// [
// 'form' => $form,
// 'inputs' => $inputs,
// ],
// true
// );
}
/**
* Create
* Create the table with the list of Blocks Templates
*
* @return html Formed table
*/
public function moduleBlockList()
{
global $config;
// Get the count of Blocks.
$countModuleBlocks = db_get_value(
'count(*)',
'tnetwork_profile'
);
// Get all the data.
$resultModuleBlocksTable = db_get_all_rows_filter(
'tnetwork_profile',
[
'order' => 'name',
'limit' => $config['block_size'],
'offset' => $this->offset,
]
);
ui_pagination($countModuleBlocks, false, $this->offset);
// Create the table with Module Block list.
$table = new StdClasS();
$table->class = 'databox data';
@ -199,7 +182,7 @@ class ManageBlock extends HTML
$table->head = [];
$table->head[0] = html_print_checkbox('all_delete', 0, false, true, false);
;
$table->head[1] = __('Name');
$table->head[2] = __('Description');
$table->head[3] = '<span style="margin-right:7%;">'.__('Action').'</span>';
@ -213,7 +196,7 @@ class ManageBlock extends HTML
$table->data = [];
foreach ($this->resultModuleBlocksTable as $row) {
foreach ($resultModuleBlocksTable as $row) {
$data = [];
$data[0] = html_print_checkbox_extended('delete_multiple[]', $row['id_np'], false, false, '', 'class="check_delete"', true);
$data[1] = '<a href="'.$this->baseUrl.'&amp;id_np='.$row['id_np'].'">'.io_safe_output($row['name']).'</a>';
@ -241,30 +224,40 @@ class ManageBlock extends HTML
array_push($table->data, $data);
}
// Sé que los echo son basurientos, pero de momento, me valen para ir montando
// LOS QUITARÉ, PROMESA DE CORONAVIRUS
echo html_print_table($table, true);
// Sé que los echo son basurientos, pero de momento, me valen para ir montando.
// LOS QUITARÉ, PROMESA DE CORONAVIRUS.
html_print_table($table);
echo '<div style="float:right;" class="">';
$form = [
'method' => 'POST',
'action' => $this->baseUrl,
];
$inputs[] = [
'arguments' => [
'name' => 'id_np',
'type' => 'hidden',
'value' => 0,
'return' => true,
],
];
$inputs[] = [
'arguments' => [
'label' => __('Create'),
'name' => 'crt',
'type' => 'submit',
'attributes' => 'class="sub wand"',
'return' => true,
],
];
$this->printForm(
[
'form' => [
'method' => 'POST',
'action' => $this->baseUrl,
],
'inputs' => [
[
'class' => 'w100p',
'arguments' => [
'name' => 'crt',
'label' => __('Create'),
'type' => 'submit',
'attributes' => 'class="sub next"',
'return' => true,
],
],
],
'form' => $form,
'inputs' => $inputs,
]
);
@ -272,43 +265,227 @@ class ManageBlock extends HTML
}
/**
* Get the data from DB
*
* @return void
*/
private function getData()
{
return null;
}
/**
* Undocumented function
*
* @param array $data Data to create the table
*
* @return void
*/
public function printModuleTemplateForm($data)
{
}
/**
* Prints Form for template
*
* @param integer $id_np If not carried
* @param integer $id_np
* @return void
*/
public function moduleTemplateForm(int $id_np=0)
{
if ($id_np == 0) {
$formButtonName = 'crt';
$output = [];
$createNewBlock = ($id_np === 0) ? true : false;
if ($createNewBlock) {
// Assignation for submit button.
$formButtonClass = 'sub wand';
$formButtonName = 'crtbutton';
$formButtonLabel = __('Create');
// Set of empty values.
$values = [
'name' => '',
'description' => '',
'pen' => '',
];
} else {
$formButtonName = 'upd';
// Assignation for submit button.
$formButtonClass = 'sub udp';
$formButtonName = 'updbutton';
$formButtonLabel = __('Update');
// Profile exists
$row = db_get_row('tnetwork_profile', 'id_np', $id_np);
$description = $row['description'];
$name = $row['name'];
$pen = '';
}
$this->printForm(
// Main form.
$form = [
'action' => $this->baseUrl,
'id' => 'module_block_form',
'onsubmit' => 'return false;',
'method' => 'POST',
'class' => 'databox filters',
'extra' => '',
];
// Inputs.
$inputs = [];
$inputs[] = [
'label' => __('Name'),
'id' => 'inp-name',
'arguments' => [
'name' => 'name',
'input_class' => 'flex-row',
'type' => 'text',
'value' => $name,
'return' => true,
],
];
$inputs[] = [
'label' => __('Description'),
'id' => 'inp-description',
'arguments' => [
'name' => 'description',
'input_class' => 'flex-row',
'type' => 'textarea',
'value' => $description,
'return' => true,
],
];
$inputs[] = [
'label' => __('PEN'),
'id' => 'inp-pen',
'arguments' => [
'name' => 'pen',
'input_class' => 'flex-row',
'type' => 'text',
'value' => $pen,
'return' => true,
],
];
$inputs[] = [
'arguments' => [
'name' => $formButtonName,
'label' => $formButtonLabel,
'type' => 'submit',
'attributes' => 'class="'.$formButtonClass.'"',
'return' => true,
],
];
$inputs[] = [
'arguments' => [
'name' => 'buttonGoBack',
'label' => __('Go back'),
'type' => 'button',
'attributes' => 'class="sub cancel"',
'return' => true,
],
];
$this->printFormAsList(
[
'form' => [
'method' => 'POST',
'action' => $this->baseUrl,
],
'inputs' => [
[
'class' => 'w100p',
'arguments' => [
'name' => $formButtonName,
'label' => $formButtonLabel,
'type' => 'submit',
'attributes' => 'class="sub next"',
'return' => true,
],
],
],
'form' => $form,
'inputs' => $inputs,
true
]
);
if ($createNewBlock === false) {
// Get the data.
$sql = sprintf(
'SELECT npc.id_nc AS component_id, nc.name, nc.type, nc.description, nc.id_group AS `group`, ncg.name AS `group_name`
FROM tnetwork_profile_component AS npc, tnetwork_component AS nc
INNER JOIN tnetwork_component_group AS ncg ON ncg.id_sg = nc.id_group
WHERE npc.id_nc = nc.id_nc AND npc.id_np = %d',
$id_np
);
$moduleBlocks = db_get_all_rows_sql($sql);
$blockTables = [];
// Build the information of the blocks
foreach ($moduleBlocks as $block) {
if (key_exists($block['group'], $blockTables) === false) {
$blockTables[$block['group']] = [
'name' => $block['group_name'],
'data' => [],
];
} else {
$blockTables[$block['group']]['data'][] = [
'component_id' => $block['component_id'],
'name' => $block['name'],
'type' => $block['type'],
'description' => $block['description'],
];
}
}
foreach ($blockTables as $blockTable) {
$blockTitle = $blockTable['name'];
$blockData = $blockTable['data'];
$table = new StdClasS();
$table->class = 'databox data';
$table->width = '75%';
$table->styleTable = 'margin: 2em auto 0;border: 1px solid #ddd;background: white;';
$table->rowid = [];
$table->data = [];
$table->cellpadding = 0;
$table->cellspacing = 0;
$table->width = '100%';
$table->class = 'info_table';
$table->head = [];
// $table->head[0] = html_print_checkbox('all_delete', 0, false, true, false);
$table->head[0] = __('Module Name');
$table->head[1] = __('Type');
$table->head[2] = __('Description');
$table->head[3] = '<span style="float:right;margin-right:2em;">'.__('Add').'</span>';
$table->size = [];
$table->size[0] = '20%';
$table->size[2] = '65%';
$table->size[3] = '15%';
$table->align = [];
$table->align[3] = 'left';
$table->data = [];
foreach ($blockData as $module) {
hd($module);
$data[0] = $module['name'];
$data[1] = ui_print_moduletype_icon($module['type'], true);
$data[2] = mb_strimwidth(io_safe_output($module['description']), 0, 150, '...');
$data[3] = html_print_checkbox_switch_extended('active_'.$module['component_id'], 1, 0, false, '', '', true);
array_push($table->data, $data);
}
$content = html_print_table($table, true);
$output[] = ui_toggle($content, $blockTitle, '', '', false);
}
}
}
}
/*
ui_require_jquery_file('tag-editor');
ui_require_css_file('jquery.tag-editor');
$(\'#text-community\').tagEditor();
*/