Updates
This commit is contained in:
parent
aa052ee9dc
commit
114e22bbab
10 changed files with 115 additions and 99 deletions
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Project: astat - simple site engine
|
||||
* File: /inc/admin.class.php
|
||||
* Project: BeCast WebEngine - simple site engine
|
||||
* File: /inc/admin.class.php
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -17,16 +17,16 @@
|
|||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* @link http://www.astat.org SVN: $URL: http://svn.astat.org/astat/trunk/inc/admin.class.php $
|
||||
* @copyright 2009 becast.at
|
||||
* @link http://www.becast.at
|
||||
* @copyright 2009-2025 becast.at
|
||||
* @author Bernhard Jaud <bernhard at becast dot at>
|
||||
* @package astat core
|
||||
* @package BcWe core
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
* @version $Id: admin.class.php 57 2009-07-10 19:34:56Z genuineparts $
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
$module["admin"]["name"]="Admin Class";
|
||||
$module["admin"]["ver"]="0.2.4";
|
||||
$module["admin"]["ver"]="0.2.5";
|
||||
class admin {
|
||||
|
||||
var $module_=array();
|
||||
|
|
|
@ -30,7 +30,7 @@ $config["pass"] = "MyPassword";
|
|||
// your Database
|
||||
$config["db"] = "bcWe";
|
||||
// your Database Prefix
|
||||
$config["prefix"]="be_";
|
||||
$config["prefix"]="bcwe_";
|
||||
// your Database Sytem
|
||||
$config["db_class"]="mysqli";
|
||||
$config['MEMCACHE_SERVER'] = '127.0.0.1';
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Project: astat - simple site engine
|
||||
* File: /inc/core.class.php
|
||||
* Project: BeCast WebEngine - simple site engine
|
||||
* File: /inc/core.class.php
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -17,16 +17,16 @@
|
|||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* @link http://www.astat.org SVN: $URL: http://svn.becast.at/astat/trunk/inc/core.class.php $
|
||||
* @copyright 2025 becast.at
|
||||
* @link http://www.becast.at
|
||||
* @copyright 2009 - 2025 becast.at
|
||||
* @author Bernhard Jaud <bernhard at becast dot at>
|
||||
* @package astat core
|
||||
* @package BcWe core
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
* @version $Id: core.class.php 154 2012-03-27 21:50:46Z genuineparts $
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
$module['core']['name']='Core Class';
|
||||
$module['core']['ver']='0.9.81';
|
||||
$module['core']['ver']='0.9.9';
|
||||
|
||||
class Core{
|
||||
|
||||
|
@ -84,7 +84,7 @@ class Core{
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
var $ver_minor='0';
|
||||
var $ver_minor='1';
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -100,7 +100,7 @@ class Core{
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
var $ver_codename='Antiochos';
|
||||
var $ver_codename='Tim';
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -516,7 +516,7 @@ class Core{
|
|||
* Renders the Page
|
||||
*
|
||||
* @param string $content The content for the page
|
||||
* @param bool $minimal Render the Page in a minaml mode (e.g. for redirect)
|
||||
* @param bool $minimal Render the Page in a minmal mode (e.g. for redirect)
|
||||
* @param string $minimal_tpl Custom minimal template
|
||||
* @param string $header_tpl Custom header template
|
||||
* @param string $footer_tpl Custom footer template
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Project: BeCast Webengine - simple site engine
|
||||
* File: /inc/panel.class.php
|
||||
* File: /inc/panel.class.php
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -18,15 +18,15 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* @link http://www.becast.at
|
||||
* @copyright 2009 becast.at
|
||||
* @copyright 2009-2025 becast.at
|
||||
* @author Bernhard Jaud <bernhard at becast dot at>
|
||||
* @package BeCast Webengine core
|
||||
* @package BcWe core
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
* @version $Id: panel.class.php 128 2010-02-21 22:03:37Z genuineparts $
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
$module["panel"]["name"]="Panel Class";
|
||||
$module["panel"]["ver"]="0.3.4";
|
||||
$module["panel"]["ver"]="0.3.5";
|
||||
class panel {
|
||||
var $sidebar="";
|
||||
var $page="";
|
||||
|
@ -41,7 +41,7 @@ class panel {
|
|||
|
||||
function page($additional_title="",$meta=""){
|
||||
global $config,$db,$core;
|
||||
return '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
return '<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>'.$config['sitetitle'].'</title>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue