Unificazione pulsanti su unica riga
This commit is contained in:
parent
b53704f00f
commit
852236eb01
52
editor.php
52
editor.php
|
@ -172,7 +172,16 @@ if (empty($record) || !$has_access) {
|
||||||
<i class="fa fa-chevron-left"></i> '.tr("Torna all'elenco").'
|
<i class="fa fa-chevron-left"></i> '.tr("Torna all'elenco").'
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<div class="float-right d-none d-sm-inline">
|
<div class="float-right d-none d-sm-inline">';
|
||||||
|
|
||||||
|
// Pulsanti personalizzati
|
||||||
|
$buttons = $structure->filepath('buttons.php');
|
||||||
|
|
||||||
|
if (!empty($buttons)) {
|
||||||
|
include $buttons;
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '
|
||||||
{( "name": "button", "type": "print", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}
|
{( "name": "button", "type": "print", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}
|
||||||
|
|
||||||
{( "name": "button", "type": "email", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}';
|
{( "name": "button", "type": "email", "id_module": "'.$id_module.'", "id_plugin": "'.$id_plugin.'", "id_record": "'.$id_record.'" )}';
|
||||||
|
@ -225,36 +234,21 @@ if (empty($record) || !$has_access) {
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
<br>';
|
<br>';
|
||||||
|
|
||||||
// Pulsanti personalizzati
|
// Eventuale header personalizzato
|
||||||
$buttons = $structure->filepath('buttons.php');
|
$module_header = $structure->filepath('header.php');
|
||||||
if (!empty($buttons)) {
|
$module_header_html = '';
|
||||||
|
|
||||||
|
if (!empty($module_header)) {
|
||||||
ob_start();
|
ob_start();
|
||||||
include $buttons;
|
include $module_header;
|
||||||
$buttons = ob_get_clean();
|
$module_header_html = ob_get_clean();
|
||||||
|
}
|
||||||
|
|
||||||
echo '
|
// Eventuale header personalizzato
|
||||||
<div class="float-right d-none d-sm-inline" id="pulsanti-modulo">
|
if ($module_header_html) {
|
||||||
'.$buttons.'
|
echo '<div class="module-header">';
|
||||||
</div>
|
echo $module_header_html;
|
||||||
|
echo '</div>';
|
||||||
<div class="clearfix"></div>
|
|
||||||
<br>';
|
|
||||||
// Eventuale header personalizzato
|
|
||||||
$module_header = $structure->filepath('header.php');
|
|
||||||
$module_header_html = '';
|
|
||||||
|
|
||||||
if (!empty($module_header)) {
|
|
||||||
ob_start();
|
|
||||||
include $module_header;
|
|
||||||
$module_header_html = ob_get_clean();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Eventuale header personalizzato
|
|
||||||
if ($module_header_html) {
|
|
||||||
echo '<div class="module-header">';
|
|
||||||
echo $module_header_html;
|
|
||||||
echo '</div>';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Contenuti del modulo
|
// Contenuti del modulo
|
||||||
|
|
|
@ -39,15 +39,18 @@ echo '
|
||||||
|
|
||||||
<button type="button" class="btn btn-primary '.(!empty($info_firma) ? 'tip' : '').'" title="'.$info_firma.'" onclick="anteprimaFirma()" '.($record['flag_completato'] ? 'disabled' : '').'>
|
<button type="button" class="btn btn-primary '.(!empty($info_firma) ? 'tip' : '').'" title="'.$info_firma.'" onclick="anteprimaFirma()" '.($record['flag_completato'] ? 'disabled' : '').'>
|
||||||
<i class="fa fa-'.(!empty($info_firma) ? 'refresh' : 'desktop').'"></i> '.$frase.'...
|
<i class="fa fa-'.(!empty($info_firma) ? 'refresh' : 'desktop').'"></i> '.$frase.'...
|
||||||
</button>
|
</button>';
|
||||||
|
|
||||||
<a class="btn btn-info'.($prev ? '' : ' disabled').'" href="'.base_path().'/editor.php?id_module=3&id_record='.$prev.'">
|
|
||||||
|
// TODO: da standardizzare in struttura per tutti i moduli di tipo table
|
||||||
|
/*<a class="btn btn-info'.($prev ? '' : ' disabled').'" href="'.base_path().'/editor.php?id_module=3&id_record='.$prev.'">
|
||||||
<i class="fa fa-arrow-circle-left"></i> '.tr('Precedente').'
|
<i class="fa fa-arrow-circle-left"></i> '.tr('Precedente').'
|
||||||
</a>
|
</a>
|
||||||
<a class="btn btn-info'.($next ? '' : ' disabled').'" href="'.base_path().'/editor.php?id_module=3&id_record='.$next.'">
|
<a class="btn btn-info'.($next ? '' : ' disabled').'" href="'.base_path().'/editor.php?id_module=3&id_record='.$next.'">
|
||||||
'.tr('Successivo').' <i class="fa fa-arrow-circle-right"></i>
|
'.tr('Successivo').' <i class="fa fa-arrow-circle-right"></i>
|
||||||
</a>
|
</a>*/
|
||||||
|
|
||||||
|
echo '
|
||||||
<script>
|
<script>
|
||||||
function duplicaIntervento() {
|
function duplicaIntervento() {
|
||||||
openModal("'.tr('Duplica attività').'", "'.$module->fileurl('modals/duplicazione.php').'?id_module='.$id_module.'&id_record='.$id_record.'");
|
openModal("'.tr('Duplica attività').'", "'.$module->fileurl('modals/duplicazione.php').'?id_module='.$id_module.'&id_record='.$id_record.'");
|
||||||
|
|
Loading…
Reference in New Issue