dbms_init...1
This commit is contained in:
parent
5e705984c4
commit
d795aa4a9e
@ -15,7 +15,7 @@ abstract class AdminController extends CommonController
|
|||||||
$this->layout = "admin";
|
$this->layout = "admin";
|
||||||
$this->uri_path = "admin/";
|
$this->uri_path = "admin/";
|
||||||
$this->view_path = "admin" . DIRECTORY_SEPARATOR;
|
$this->view_path = "admin" . DIRECTORY_SEPARATOR;
|
||||||
$this->title = "관리자";
|
$this->content_title = "관리자";
|
||||||
$this->individualStylesheets = [];
|
$this->individualStylesheets = [];
|
||||||
$this->individualScripts = [];
|
$this->individualScripts = [];
|
||||||
$this->helper = $this->getHelper();
|
$this->helper = $this->getHelper();
|
||||||
|
|||||||
@ -16,7 +16,7 @@ class AccountController extends CustomerController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -15,7 +15,7 @@ class ClientController extends CustomerController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -16,7 +16,7 @@ class CouponController extends CustomerController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -16,7 +16,7 @@ class PointController extends CustomerController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -20,7 +20,7 @@ class ServiceController extends CustomerController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -18,7 +18,7 @@ class ServiceHistoryController extends CustomerController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -18,7 +18,7 @@ class ServiceItemController extends CustomerController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -14,7 +14,7 @@ class CodeController extends EquipmentController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -15,7 +15,7 @@ class DomainController extends EquipmentController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -14,7 +14,7 @@ class CpuController extends PartController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -14,7 +14,7 @@ class DefenceController extends PartController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -17,7 +17,7 @@ class IpController extends PartController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -18,7 +18,7 @@ class LineController extends PartController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -14,7 +14,7 @@ class RamController extends PartController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -15,7 +15,7 @@ class SoftwareController extends PartController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -14,7 +14,7 @@ class StorageController extends PartController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -14,7 +14,7 @@ class ServerController extends EquipmentController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -18,7 +18,7 @@ class MyLogController extends AdminController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -19,7 +19,7 @@ class UserController extends AdminController
|
|||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
$this->title = lang("{$this->getService()->getClassName()}.title");
|
$this->content_title = lang("{$this->getService()->getClassName()}.title");
|
||||||
$this->class_path .= $this->getService()->getClassName();
|
$this->class_path .= $this->getService()->getClassName();
|
||||||
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
|
||||||
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
|
||||||
|
|||||||
@ -22,9 +22,7 @@ abstract class AuthController extends CommonController
|
|||||||
$this->layout = "auth";
|
$this->layout = "auth";
|
||||||
$this->uri_path = "auth/";
|
$this->uri_path = "auth/";
|
||||||
$this->view_path = "auth" . DIRECTORY_SEPARATOR;
|
$this->view_path = "auth" . DIRECTORY_SEPARATOR;
|
||||||
$this->title = "사용자인증";
|
$this->content_title = "사용자인증";
|
||||||
$this->individualStylesheets = [];
|
|
||||||
$this->individualScripts = [];
|
|
||||||
}
|
}
|
||||||
abstract protected function getSNSButton(): string;
|
abstract protected function getSNSButton(): string;
|
||||||
final public function getHelper(): mixed
|
final public function getHelper(): mixed
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<ul class="nav nav-tabs">
|
<ul class="nav nav-tabs">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<span class="nav-item navbar-brand" aria-current="page">
|
<span class="nav-item navbar-brand" aria-current="page">
|
||||||
<h4> <?= ICONS['DESKTOP'] ?> <?= $viewDatas['title'] ?> </h4>
|
<h4> <?= ICONS['DESKTOP'] ?> <?= $viewDatas['content_title'] ?> </h4>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h5 class="modal-title" id="modal_label">
|
<h5 class="modal-title" id="modal_label">
|
||||||
<?= ICONS['DESKTOP'] ?> <?= $viewDatas['title'] ?>
|
<?= ICONS['DESKTOP'] ?> <?= $viewDatas['content_title'] ?>
|
||||||
</h5>
|
</h5>
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h5 class="modal-title" id="modal_label">
|
<h5 class="modal-title" id="modal_label">
|
||||||
<?= ICONS['DESKTOP'] ?> <?= $viewDatas['title'] ?>
|
<?= ICONS['DESKTOP'] ?> <?= $viewDatas['content_title'] ?>
|
||||||
</h5>
|
</h5>
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h5 class="modal-title" id="iframe_modal_label">
|
<h5 class="modal-title" id="iframe_modal_label">
|
||||||
<?= ICONS['DESKTOP'] ?> <?= $viewDatas['title'] ?>
|
<?= ICONS['DESKTOP'] ?> <?= $viewDatas['content_title'] ?>
|
||||||
</h5>
|
</h5>
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" onClick="window.location.reload()"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" onClick="window.location.reload()"></button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<ul class="nav nav-tabs">
|
<ul class="nav nav-tabs">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<span class="nav-item navbar-brand" aria-current="page">
|
<span class="nav-item navbar-brand" aria-current="page">
|
||||||
<h4> <?= ICONS['DESKTOP'] ?> <?= $viewDatas['title'] ?> </h4>
|
<h4> <?= ICONS['DESKTOP'] ?> <?= $viewDatas['content_title'] ?> </h4>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user