work until 08.03.17
This commit is contained in:
parent
792f05c0c7
commit
2a0869c016
7 changed files with 621 additions and 540 deletions
31
conlite/classes/cApi/class.nav.main.php
Normal file
31
conlite/classes/cApi/class.nav.main.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* @package Core
|
||||
* @subpackage cApiClasses
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
// security check
|
||||
if (!defined('CON_FRAMEWORK')) {
|
||||
die('Illegal call');
|
||||
}
|
||||
|
||||
class cApiNavMainCollection extends ItemCollection {
|
||||
public function __construct() {
|
||||
global $cfg;
|
||||
parent::__construct(cRegistry::getConfigValue('tab', 'nav_main'), 'idnavm');
|
||||
$this->_setItemClass("cApiNavMain");
|
||||
}
|
||||
}
|
||||
|
||||
class cApiNavMain extends Item {
|
||||
public function __construct($mId = false) {
|
||||
global $cfg;
|
||||
parent::__construct(cRegistry::getConfigValue('tab', 'nav_main'), 'idnavm');
|
||||
if ($mId !== false) {
|
||||
$this->loadByPrimaryKey($mId);
|
||||
}
|
||||
}
|
||||
}
|
31
conlite/classes/cApi/class.nav.sub.php
Normal file
31
conlite/classes/cApi/class.nav.sub.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* @package Core
|
||||
* @subpackage cApiClasses
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
// security check
|
||||
if (!defined('CON_FRAMEWORK')) {
|
||||
die('Illegal call');
|
||||
}
|
||||
|
||||
class cApiNavSubCollection extends ItemCollection {
|
||||
public function __construct() {
|
||||
global $cfg;
|
||||
parent::__construct(cRegistry::getConfigValue('tab', 'nav_sub'), 'idnavs');
|
||||
$this->_setItemClass("cApiNavSub");
|
||||
}
|
||||
}
|
||||
|
||||
class cApiNavSub extends Item {
|
||||
public function __construct($mId = false) {
|
||||
global $cfg;
|
||||
parent::__construct(cRegistry::getConfigValue('tab', 'nav_sub'), 'idnavs');
|
||||
if ($mId !== false) {
|
||||
$this->loadByPrimaryKey($mId);
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -61,6 +61,25 @@ and open the template in the editor.
|
|||
|
||||
select#lang {
|
||||
width: 180px;
|
||||
height: 17px;
|
||||
line-height: 17px;
|
||||
margin-left: 4px;
|
||||
margin-top: 0;
|
||||
margin-top: 3px;
|
||||
border: 1px solid #999;
|
||||
}
|
||||
|
||||
#cl_beuser, #cl_passwd {
|
||||
font-family: verdana,arial,helvetica,sans-serif;
|
||||
height: 17px;
|
||||
line-height: 17px;
|
||||
margin-left: 13px;
|
||||
margin-top: 3px;
|
||||
padding: 0 2px;
|
||||
border: 1px solid #999;
|
||||
}
|
||||
|
||||
#cLanguageSelect {
|
||||
color: #000;
|
||||
font-family: verdana,arial,helvetica,sans-serif;
|
||||
font-size: 11px;
|
||||
}
|
|
@ -54,8 +54,8 @@ form, h1, h2, h3, h4{
|
|||
padding-left: 10px;
|
||||
}
|
||||
#head_info{
|
||||
height: 25px;
|
||||
line-height: 25px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
background-color: #F1F1F1;
|
||||
}
|
||||
.head_nav{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<title>test</title>
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<meta http-equiv="pragma" content="no-cache">
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<title>test</title>
|
||||
<meta http-equiv="expires" content="0">
|
||||
<meta http-equiv="cache-control" content="no-cache">
|
||||
<meta http-equiv="pragma" content="no-cache">
|
||||
|
|
Loading…
Reference in a new issue