mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-14 02:29:27 +00:00
68 lines
1.5 KiB
PHP
68 lines
1.5 KiB
PHP
<?php
|
|
$this->load->view(
|
|
'templates/FHC-Header',
|
|
array(
|
|
// Title
|
|
'title' => 'Extensions manager',
|
|
|
|
// JS & CSS includes
|
|
'jquery3' => true,
|
|
'jqueryui1' => true,
|
|
'jquerycheckboxes1' => true,
|
|
'bootstrap3' => true,
|
|
'tabulator4' => true,
|
|
|
|
// Styles includes
|
|
'fontawesome4' => true,
|
|
'sbadmintemplate3' => true,
|
|
|
|
// FHC JS & CSS includes
|
|
'ajaxlib' => true,
|
|
'dialoglib' => true,
|
|
'tablewidget' => true,
|
|
'phrases' => array(
|
|
'extensions',
|
|
'table',
|
|
'ui'
|
|
),
|
|
'customJSs' => array('public/js/ExtensionsManager.js')
|
|
)
|
|
);
|
|
?>
|
|
|
|
<body>
|
|
<div class="container-fluid">
|
|
<h3 class="page-header">
|
|
<?php echo $this->p->t('extensions', 'title'); ?>
|
|
</h3>
|
|
|
|
<div>
|
|
<?php $this->load->view('system/extensions/tableWidget.php'); ?>
|
|
</div>
|
|
|
|
<?php echo form_open_multipart(current_url().'/uploadExtension'); ?>
|
|
<div class="row">
|
|
<div class="col-xs-2">
|
|
<input type="file" name="extension" />
|
|
</div>
|
|
<div>
|
|
<input type="button" id="uploadExtension" value="<?php echo $this->p->t('extensions', 'uploadExtension'); ?>" />
|
|
</div>
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-2">
|
|
<label for="notPerformSql"><?php echo $this->p->t('extensions', 'performSql'); ?></label>
|
|
</div>
|
|
<div>
|
|
<input type="checkbox" checked="true" class="checkbox" id="performSql" name="performSql"/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer'); ?>
|