first guess vue vertragsbestandteil und gehaltsbestandteil components

This commit is contained in:
Harald Bamberger
2023-02-15 15:55:37 +01:00
parent f7d315d4cc
commit facee3076d
11 changed files with 543 additions and 0 deletions
@@ -0,0 +1,32 @@
<?php
if (! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Test VBform Vue Component
*/
class TestVBform extends Auth_Controller
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct(
array(
'index' => 'system/developer:r'
)
);
}
// -----------------------------------------------------------------------------------------------------------------
// Public methods
/**
* Everything has a beginning
*/
public function index()
{
$this->load->view('system/logs/testVBform.php');
}
}
@@ -0,0 +1,16 @@
<?php
$includesArray = array(
'title' => 'Test VBform',
'bootstrap5' => true,
'fontawesome6' => true,
'vue3' => true,
'customJSModules' => array('public/js/apps/vbform/vbform.js')
);
$this->load->view('templates/FHC-Header', $includesArray);
?>
<div id="main"></div>
<?php $this->load->view('templates/FHC-Footer', $includesArray); ?>