WIP: Backup upload
This commit is contained in:
parent
72b6e7f81a
commit
29dcc8bc78
|
@ -80,6 +80,16 @@ if (is_ajax()) {
|
||||||
$manageBlock->moduleBlockList();
|
$manageBlock->moduleBlockList();
|
||||||
} else {
|
} else {
|
||||||
// Create new o update Template.
|
// Create new o update Template.
|
||||||
$manageBlock->moduleTemplateForm($id_np);
|
$manageBlock->moduleTemplateForm();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
<script>
|
||||||
|
$(document).ready (function () {
|
||||||
|
//Close button
|
||||||
|
$("[id*=checkbox-active]").click (function () {
|
||||||
|
$("[id*=checkbox-block_id]").toggleClass('alpha50');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
|
@ -63,6 +63,27 @@ class ManageBlock extends HTML
|
||||||
*/
|
*/
|
||||||
private $id_np;
|
private $id_np;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Name of Block Template
|
||||||
|
*
|
||||||
|
* @var [type]
|
||||||
|
*/
|
||||||
|
private $name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Description of Block Template
|
||||||
|
*
|
||||||
|
* @var [type]
|
||||||
|
*/
|
||||||
|
private $description;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Private Enterprise Numbers of Block Templates
|
||||||
|
*
|
||||||
|
* @var [type]
|
||||||
|
*/
|
||||||
|
private $pen;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
|
@ -90,14 +111,15 @@ class ManageBlock extends HTML
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->id_np = get_parameter('id_np', -1);
|
// Set baseUrl for use it in several locations in this class.
|
||||||
|
|
||||||
$this->offset = get_parameter('offset', 0);
|
|
||||||
|
|
||||||
$this->ajaxController = $ajax_controller;
|
|
||||||
|
|
||||||
// Set baseUrl for use it in several locations in this class
|
|
||||||
$this->baseUrl = ui_get_full_url('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');
|
||||||
|
// Capture all parameters before start.
|
||||||
|
$this->id_np = get_parameter('id_np', -1);
|
||||||
|
$this->name = get_parameter('name', '');
|
||||||
|
$this->description = get_parameter('description', '');
|
||||||
|
$this->pen = get_parameter('pen', '');
|
||||||
|
$this->offset = get_parameter('offset', 0);
|
||||||
|
$this->ajaxController = $ajax_controller;
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
@ -162,6 +184,34 @@ class ManageBlock extends HTML
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Undocumented function
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
private function manageData()
|
||||||
|
{
|
||||||
|
// if ($)
|
||||||
|
$name = get_parameter('name', '');
|
||||||
|
$description = get_parameter('description', '');
|
||||||
|
$pen = get_parameter('pen', '');
|
||||||
|
hd($name);
|
||||||
|
hd($description);
|
||||||
|
hd($pen);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private function setNetworkProfile()
|
||||||
|
{
|
||||||
|
if ($this->id_np !== 0) {
|
||||||
|
$output = db_get_row('tnetwork_profile', 'id_np', $this->id_np);
|
||||||
|
$this->name = $output['name'];
|
||||||
|
$this->description = $output['description'];
|
||||||
|
$this->pen = $output['pen'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create the table with the list of Blocks Templates
|
* Create the table with the list of Blocks Templates
|
||||||
*
|
*
|
||||||
|
@ -288,41 +338,29 @@ class ManageBlock extends HTML
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prints Form for template management
|
* Prints Form for template management
|
||||||
*
|
|
||||||
* @param integer $id_np
|
|
||||||
*/
|
*/
|
||||||
public function moduleTemplateForm(int $id_np=0)
|
public function moduleTemplateForm()
|
||||||
{
|
{
|
||||||
$output = [];
|
$createNewBlock = ($this->id_np === 0) ? true : false;
|
||||||
$createNewBlock = ($id_np === 0) ? true : false;
|
|
||||||
|
|
||||||
if ($createNewBlock) {
|
if ($createNewBlock) {
|
||||||
// Assignation for submit button.
|
// Assignation for submit button.
|
||||||
$formButtonClass = 'sub wand';
|
$formButtonClass = 'sub wand';
|
||||||
$formButtonName = 'crtbutton';
|
$formButtonName = 'crtbutton';
|
||||||
$formButtonLabel = __('Create');
|
$formButtonLabel = __('Create');
|
||||||
// Set of empty values.
|
|
||||||
$description = '';
|
|
||||||
$name = '';
|
|
||||||
$pen = '';
|
|
||||||
} else {
|
} else {
|
||||||
// Assignation for submit button.
|
// Assignation for submit button.
|
||||||
$formButtonClass = 'sub upd';
|
$formButtonClass = 'sub upd';
|
||||||
$formButtonName = 'updbutton';
|
$formButtonName = 'updbutton';
|
||||||
$formButtonLabel = __('Update');
|
$formButtonLabel = __('Update');
|
||||||
// Profile exists.
|
// Profile exists. Set the attributes with the info.
|
||||||
$row = db_get_row('tnetwork_profile', 'id_np', $id_np);
|
$this->setNetworkProfile();
|
||||||
// Fill the inputs with the obtained data.
|
|
||||||
$description = $row['description'];
|
|
||||||
$name = $row['name'];
|
|
||||||
$pen = '';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Main form.
|
// Main form.
|
||||||
$form = [
|
$form = [
|
||||||
'action' => $this->baseUrl,
|
'action' => $this->baseUrl,
|
||||||
'id' => 'module_block_form',
|
'id' => 'module_block_form',
|
||||||
'onsubmit' => 'return false;',
|
|
||||||
'method' => 'POST',
|
'method' => 'POST',
|
||||||
'class' => 'databox filters',
|
'class' => 'databox filters',
|
||||||
'extra' => '',
|
'extra' => '',
|
||||||
|
@ -338,7 +376,7 @@ class ManageBlock extends HTML
|
||||||
'name' => 'name',
|
'name' => 'name',
|
||||||
'input_class' => 'flex-row',
|
'input_class' => 'flex-row',
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'value' => $name,
|
'value' => $this->name,
|
||||||
'return' => true,
|
'return' => true,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
@ -350,7 +388,7 @@ class ManageBlock extends HTML
|
||||||
'name' => 'description',
|
'name' => 'description',
|
||||||
'input_class' => 'flex-row',
|
'input_class' => 'flex-row',
|
||||||
'type' => 'textarea',
|
'type' => 'textarea',
|
||||||
'value' => $description,
|
'value' => $this->description,
|
||||||
'return' => true,
|
'return' => true,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
@ -362,7 +400,7 @@ class ManageBlock extends HTML
|
||||||
'name' => 'pen',
|
'name' => 'pen',
|
||||||
'input_class' => 'flex-row',
|
'input_class' => 'flex-row',
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'value' => $pen,
|
'value' => $this->pen,
|
||||||
'return' => true,
|
'return' => true,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
@ -371,26 +409,22 @@ class ManageBlock extends HTML
|
||||||
'arguments' => [
|
'arguments' => [
|
||||||
'name' => $formButtonName,
|
'name' => $formButtonName,
|
||||||
'label' => $formButtonLabel,
|
'label' => $formButtonLabel,
|
||||||
'type' => 'button',
|
'type' => 'submit',
|
||||||
'attributes' => 'class="'.$formButtonClass.'"',
|
'attributes' => 'class="'.$formButtonClass.'"',
|
||||||
'return' => true,
|
'return' => true,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
$inputs[] = [
|
ui_require_jquery_file('tag-editor');
|
||||||
'arguments' => [
|
ui_require_css_file('jquery.tag-editor');
|
||||||
'name' => 'buttonGoBack',
|
|
||||||
'label' => __('Go back'),
|
$js = '$(\'#text-pen\').tagEditor();';
|
||||||
'type' => 'button',
|
|
||||||
'attributes' => 'class="sub cancel"',
|
|
||||||
'return' => true,
|
|
||||||
],
|
|
||||||
];
|
|
||||||
|
|
||||||
$this->printFormAsList(
|
$this->printFormAsList(
|
||||||
[
|
[
|
||||||
'form' => $form,
|
'form' => $form,
|
||||||
'inputs' => $inputs,
|
'inputs' => $inputs,
|
||||||
|
'js' => $js,
|
||||||
true
|
true
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
@ -402,10 +436,11 @@ class ManageBlock extends HTML
|
||||||
FROM tnetwork_profile_component AS npc, tnetwork_component AS nc
|
FROM tnetwork_profile_component AS npc, tnetwork_component AS nc
|
||||||
INNER JOIN tnetwork_component_group AS ncg ON ncg.id_sg = nc.id_group
|
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',
|
WHERE npc.id_nc = nc.id_nc AND npc.id_np = %d',
|
||||||
$id_np
|
$this->id_np
|
||||||
);
|
);
|
||||||
$moduleBlocks = db_get_all_rows_sql($sql);
|
$moduleBlocks = db_get_all_rows_sql($sql);
|
||||||
|
|
||||||
|
if ($moduleBlocks) {
|
||||||
$blockTables = [];
|
$blockTables = [];
|
||||||
// Build the information of the blocks
|
// Build the information of the blocks
|
||||||
foreach ($moduleBlocks as $block) {
|
foreach ($moduleBlocks as $block) {
|
||||||
|
@ -467,18 +502,42 @@ class ManageBlock extends HTML
|
||||||
$data[0] = $module['name'];
|
$data[0] = $module['name'];
|
||||||
$data[1] = ui_print_moduletype_icon($module['type'], true);
|
$data[1] = ui_print_moduletype_icon($module['type'], true);
|
||||||
$data[2] = mb_strimwidth(io_safe_output($module['description']), 0, 150, '...');
|
$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);
|
$data[3] = html_print_checkbox_switch_extended('switch_'.$id_group.'_'.$module['component_id'], 1, 0, false, 'switchBlockControl(event)', '', true);
|
||||||
|
// $data[3] .= html_print_input_hidden();
|
||||||
array_push($table->data, $data);
|
array_push($table->data, $data);
|
||||||
}
|
}
|
||||||
|
|
||||||
$content = html_print_table($table, true);
|
$content = html_print_table($table, true);
|
||||||
|
|
||||||
$output[] = ui_toggle($content, $blockTitle, '', '', false);
|
ui_toggle($content, $blockTitle, '', '', false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
ui_print_info_message(__('No module blocks for this profile'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$javascript = "
|
||||||
|
<script>
|
||||||
|
function switchBlockControl(e){
|
||||||
|
var switchId = e.target.id.split('_');
|
||||||
|
var blockNumber = switchId[1];
|
||||||
|
var switchNumber = switchId[2];
|
||||||
|
|
||||||
|
$('[id*=checkbox-switch_'+blockNumber+']').each(function(){
|
||||||
|
console.log($(this).val());
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(blockNumber);
|
||||||
|
console.log(switchNumber);
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
";
|
||||||
|
|
||||||
|
echo $javascript;
|
||||||
|
|
||||||
|
$this->printGoBackButton($this->baseUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue