27 lines
1.4 KiB
PHP
27 lines
1.4 KiB
PHP
<?php use_helper('stBackend', 'stAdminGenerator') ?>
|
|
<?php $i18n_catalogue = $gadget->getConfigurationParameter('i18n', 'stBackend'); ?>
|
|
<a href="#" class="close"></a>
|
|
<h2><?php echo __('Konfiguracja widżetu', null, 'stBackend') ?></h2>
|
|
<div class="content">
|
|
<form class="admin_form" action="<?php echo st_url_for('@stDashboard?action=ajaxEditGadget') ?>?id=<?php echo $gadget->getId() ?>&dashboard_id=<?php echo $gadget->getDashboardId() ?>" method="post" data-admin-action-show-preloader="0">
|
|
<div class="row">
|
|
<label for="gadget_configuration_title"><?php echo __('Nazwa widżetu', null, 'stBackend') ?>:</label>
|
|
<div class="field">
|
|
<input type="text" value="<?php echo __($gadget->getTitle(), null, $i18n_catalogue) ?>" id="edit_gadget_title" name="gadget_configuration[title]" />
|
|
</div>
|
|
<div class="clr"></div>
|
|
</div>
|
|
<?php if ($gadget->getConfigurationParameter('refresh')): ?>
|
|
<div class="row">
|
|
<label for="gadget_configuration_color"><?php echo __('Odświeżaj', null, 'stBackend') ?>:</label>
|
|
<div class="field">
|
|
<?php echo gadget_refresh_rates_tag('gadget_configuration[refresh_by]', $gadget) ?>
|
|
</div>
|
|
<div class="clr"></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="text-right bs-mt-2">
|
|
<?php echo st_get_admin_button('save', __('Zapisz'), null, ['data-admin-action-show-preloader' => false]) ?>
|
|
</div>
|
|
</form>
|
|
</div>
|