shoppingmallv2 init...
This commit is contained in:
parent
bd31620b83
commit
53c604b9b1
@ -1,21 +0,0 @@
|
||||
<link href="/css/admin/member_link.css" media="screen" rel="stylesheet" type="text/css" />
|
||||
<ul class="member-link navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item dropdown">
|
||||
<?php if ($isLogin) : ?>
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<i class="fa fa-id-card"></i> <?= $auth[AUTH_FIELDS['TITLE']] ?>
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
<li><a href="/admin/user/update/<?= $$auth[AUTH_FIELDS['ID']] ?>"><i class="fa fa-cog"></i>내정보수정</a></li>
|
||||
<li>
|
||||
<hr class="dropdown-divider">
|
||||
</li>
|
||||
<li><a href="/logout"><i class="fa fa-sign-out" aria-hidden="true"></i>Logout</a></li>
|
||||
</ul>
|
||||
<?php else : ?>
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<i class="fa fa-id-card"></i> <a href="/login/">LOGIN</a>
|
||||
</a>
|
||||
<?php endif ?>
|
||||
</li>
|
||||
</ul>
|
||||
@ -1,15 +0,0 @@
|
||||
<link href="/css/admin/quick_btn.css" media="screen" rel="stylesheet" type="text/css" />
|
||||
<?= form_open("/" . $layout['id'] . "/authquickbutton/delete", array("method" => "post")) ?>
|
||||
<div class="dropdown quick1" style="position:relative; padding-left:45px; padding-top:7px; text-align:left;">
|
||||
<button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">퀵버튼 추가 <i class="fa fa-caret-down"></i></button>
|
||||
<?php foreach ($layout['authQuickButtons'] as $authQuickButton) : ?>
|
||||
<a href="<?= $authQuickButton->url ?>" class="btn btn-default" value="<?= $authQuickButton->uid ?>"><?= form_checkbox(array("name" => "batchjob_uids[]", "value" => $authQuickButton->uid)) ?><?= $authQuickButton->title ?></a>
|
||||
<?php endforeach; ?>
|
||||
<?= form_submit('', '삭제', 'class="btn btn-outline btn-danger" type="button"') ?>
|
||||
<ul class="dropdown-menu dropdown-menu-right" style="position:absolute; left:45px;">
|
||||
<?php foreach ($layout['quickButtons'] as $quickButton) : ?>
|
||||
<li><a href="/admin/authquickbutton/insert?quickbutton=<?= $quickButton->uid ?>" class="btn btn-default addQuickBtn"><?= $quickButton->title ?></a></li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
</div>
|
||||
<?= form_close() ?>
|
||||
@ -1,14 +1,20 @@
|
||||
<nav class="navbar navbar-expand-lg bg-light" style="border-bottom:1px solid silver;">
|
||||
<div class="container-fluid">
|
||||
<a href="/admin" class="navbar-brand">BaseProject 관리 Site</a>
|
||||
<div class="input-group custom-search-form" style="width:270px;">
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/top_menu/search'); ?>
|
||||
</div>
|
||||
<div class="input-group custom-search-form" style="width:270px;">
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/top_menu/make_password'); ?>
|
||||
</div>
|
||||
<div style="float: right;">
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/top_menu/member_link'); ?>
|
||||
</div>
|
||||
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: #e3f2fd;">
|
||||
<div id="head" class="container-fluid">
|
||||
<nav class="nav">
|
||||
<a class="navbar-brand" href="#">관리페이지</a>
|
||||
</nav>
|
||||
<ul class="nav justify-content-center">
|
||||
<li class="nav-item">
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/top_menu/make_password'); ?>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/top_menu/search'); ?>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="nav justify-content-end">
|
||||
<li class="nav-item">
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/top_menu/member_link'); ?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
@ -1,3 +1,5 @@
|
||||
<span><?= ICONS['LOCK'] ?></span>
|
||||
<input type="text" class="form-control" value="<?= getPasswordString_CommonHelper() ?>" id="makePassword">
|
||||
<span class="input-group-btn" id="mkbutton"><button class="btn btn-default border border-dark" type="button" id="totSearchBtn" onClick="window.location.reload();"><?= ICONS['SEARCH'] ?></button></span>
|
||||
<ul class="navbar-nav me-auto my-2 my-lg-0 navbar-nav-scroll" style="--bs-scroll-height: 100px;">
|
||||
<li class="nav-item"><?= ICONS['LOCK'] ?></li>
|
||||
<li class="nav-item"><input type="text" class="form-control" value="<?= getPasswordString_CommonHelper() ?>" id="makePassword"></li>
|
||||
<li class="nav-item"><button class="btn btn-default border border-dark" type="button" id="totSearchBtn" onClick="window.location.reload();"><?= ICONS['SEARCH'] ?></button></li>
|
||||
</ul>
|
||||
@ -1,16 +1,14 @@
|
||||
<ul class="navbar-nav me-auto my-2 my-lg-0 navbar-nav-scroll" style="--bs-scroll-height: 100px;">
|
||||
<li class="nav-item dropdown">
|
||||
<?php if ($viewDatas['session']->get(SESSION_NAMES['ISLOGIN'])) : ?>
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<?= ICONS['LOGIN'] ?><?= $viewDatas['session']->get(SESSION_NAMES['AUTH'])[AUTH_FIELDS['TITLE']] ?>
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
<li><a class="dropdown-item" href="/admin/user/update/<?= $viewDatas['session']->get(SESSION_NAMES['AUTH'])[AUTH_FIELDS['ID']] ?>"><?= ICONS['SETUP'] ?>수정</a></li>
|
||||
<li>
|
||||
<hr class="dropdown-divider">
|
||||
</li>
|
||||
<li><a class="dropdown-item" href="/logout"><?= ICONS['LOGOUT'] ?>Logout</a></li>
|
||||
</ul>
|
||||
<?php else : ?><a class="nav-link dropdown-toggle" href="/login" role="button"><?= ICONS['LOGIN'] ?>Login</a><?php endif ?>
|
||||
</li>
|
||||
</ul>
|
||||
<li class="nav-item dropdown">
|
||||
<?php if ($viewDatas[SESSION_NAMES['ISLOGIN']]) : ?>
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<?= ICONS['LOGIN'] ?><?= $viewDatas['session']->get(SESSION_NAMES['AUTH'])[AUTH_FIELDS['TITLE']] ?>
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
<li><a class="dropdown-item" href="/front/user/update/<?= $viewDatas['session']->get(SESSION_NAMES['AUTH'])[AUTH_FIELDS['ID']] ?>"><?= ICONS['SETUP'] ?>수정</a></li>
|
||||
<li>
|
||||
<hr class="dropdown-divider">
|
||||
</li>
|
||||
<li><a class="dropdown-item" href="/logout"><?= ICONS['LOGOUT'] ?>Logout</a></li>
|
||||
</ul>
|
||||
<?php else : ?><a class="nav-link dropdown-toggle" href="/login" role="button"><?= ICONS['LOGIN'] ?>Login</a><?php endif ?>
|
||||
</li>
|
||||
@ -1,4 +1,4 @@
|
||||
<form class="d-flex me-20" role="search">
|
||||
<input class="form-control" type="search" placeholder="Search" aria-label="Search">
|
||||
<button class="btn btn-outline-success" type="submit">Search</button>
|
||||
</form>
|
||||
<form class="d-flex me-20" role="search">
|
||||
<input class="form-control" type="search" placeholder="Search" aria-label="Search">
|
||||
<button class="btn btn-outline-success" type="submit">Search</button>
|
||||
</form>
|
||||
@ -31,18 +31,18 @@
|
||||
|
||||
<body>
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/top_menu'); ?>
|
||||
<div id="layout" class="container container-fluid">
|
||||
<div class="row">
|
||||
<div id="left" class="col">
|
||||
<table id="layout">
|
||||
<tr>
|
||||
<td id="left" valign="top" width="160">
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/left_menu'); ?>
|
||||
</div>
|
||||
<div id="body" class="col-auto">
|
||||
<?= $this->include('templates/front/header'); ?>
|
||||
</td>
|
||||
<td id="body" valign="top" width="*">
|
||||
<?= $this->include('templates/admin/header'); ?>
|
||||
<?= $this->renderSection('content') ?>
|
||||
<?= $this->include('templates/front/footer'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?= $this->include('templates/admin/footer'); ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<?= $this->include($viewDatas['layout']['path'] . '/copyright'); ?> </li>
|
||||
</body>
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<nav id="head" class="navbar navbar-expand-lg navbar-light bg-light">
|
||||
<div class="container-fluid">
|
||||
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: #e3f2fd;">
|
||||
<div id="head" class="container-fluid">
|
||||
<nav class="nav">
|
||||
<a class="navbar-brand" href="#">Logo</a>
|
||||
</nav>
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
<li class="nav-item dropdown">
|
||||
<?php if ($viewDatas['session']->get(SESSION_NAMES['ISLOGIN'])) : ?>
|
||||
<?php if ($viewDatas[SESSION_NAMES['ISLOGIN']]) : ?>
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<?= ICONS['LOGIN'] ?><?= $viewDatas['session']->get(SESSION_NAMES['AUTH'])[AUTH_FIELDS['TITLE']] ?>
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
<li><a class="dropdown-item" href="/admin/user/update/<?= $viewDatas['session']->get(SESSION_NAMES['AUTH'])[AUTH_FIELDS['ID']] ?>"><?= ICONS['SETUP'] ?>수정</a></li>
|
||||
<li><a class="dropdown-item" href="/front/user/update/<?= $viewDatas['session']->get(SESSION_NAMES['AUTH'])[AUTH_FIELDS['ID']] ?>"><?= ICONS['SETUP'] ?>수정</a></li>
|
||||
<li>
|
||||
<hr class="dropdown-divider">
|
||||
</li>
|
||||
|
||||
@ -12,17 +12,15 @@
|
||||
} */
|
||||
#layout{
|
||||
width:100%;
|
||||
background-color:white;
|
||||
border:1px solid blue;
|
||||
}
|
||||
#layout #left {
|
||||
border:1px solid silver;
|
||||
background-color:#efefef
|
||||
}
|
||||
/* #layout #left {
|
||||
} */
|
||||
#layout #body{
|
||||
padding-left:10px;
|
||||
padding-right:10px;
|
||||
background-color:white;
|
||||
border:1px solid red;
|
||||
/* border:1px solid red; */
|
||||
}
|
||||
|
||||
#layout #body div.header{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user