PHP Classes

Xamboo: Content management framework to serve Web sites

Recommend this page to a friend!
  Info   View files Example   View files View files (100)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 253 This week: 1All time: 7,883 This week: 560Up
Version License PHP version Categories
xamboo 3.0.2GNU Lesser Genera...7.0PHP 5, Libraries, Content management
Description 

Author

This package is a content management framework to serve Web sites.

It provides means to serve whole Web sites in HTML or other formats like XML, JavaScript, JSON, WAP, etc..

The framework does not require a database to serve the sites content.

It can serve whole pages, inner pages (blocks), outer pages (templates) or redirect to other URLs. Generated pages may be cached.

Picture of philippe thomassigny
  Performance   Level  
Name: philippe thomassigny <contact>
Classes: 6 packages by
Country: Mexico Mexico
Age: 55
All time rank: 120613 in Mexico Mexico
Week rank: 106 Up3 in Mexico Mexico Up
Innovation award
Innovation award
Nominee: 1x

Example

<?php

/* @DESCR -- Do not edit

index.php, Xamboo
Xamboo main wrapper, site index
(c) 2015 Philippe Thomassigny

This file is part of Xamboo

Xamboo is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Xamboo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Xamboo. If not, see <http://www.gnu.org/licenses/>.

Creation: 2012-03-01
Changes:
  2015-04-22: Phil, added $config variable and comments on parameters

@End_DESCR */

error_reporting(E_ALL);
ini_set('display_errors', true);

// implements __autoload
include_once "../include/__autoload.lib";

// we setup some variables we need
$URI = $QUERY = $BASE_P = $base = null;

$config = new \xconfig\XConfig(file_get_contents('../repository/xamboo.conf'));

// we create the base object with very basic config parameters
// Only 1 parameter is absolutly necesary: PAGESDIR.
include_once 'Base.lib';
$base = new Base($config);
\
core\WAMessage::setMessagesFile('../messages/message.'.$base->Language.'.xml');
 
if (isset(
$_SERVER['REQUEST_URI']))
 
$URI = strtolower($_SERVER['REQUEST_URI']);
if (
$URI)
{
 
// Remove query part (already managed by PHP)
 
if (strpos($URI, '?'))
  {
   
$QUERY = substr($URI, strpos($URI, '?'));
   
$URI = substr($URI, 0, strpos($URI, '?'));
  }
  if (
substr($URI, -1) == '/' && strlen($URI) > 1)
  {
   
// NO ACEPTAMOS URLS QUE TERMINAN CON /, REDIRECCIONAMOS !!
   
$URI = substr($URI, 0, -1);
   
header('HTTP/1.1 301 Moved Permanently');
   
header('Location: ' . $URI . $QUERY);
    return;
  }
  if (
strlen($URI) > 1)
   
$BASE_P = $URI;
}
if (!
$BASE_P)
 
$BASE_P = 'home';

// Call the engine with the page
$engine = new \xamboo\engine($URI);
// $engine->SKIN = 'myskin';
print $engine->run($BASE_P);

?>


Details

Xamboo v2 - Basic Manual

IMPORTANT NOTE: This manual has been translated with Google Translator so it can not be fully understandable for now.

Introduction:

Xamboo is the result of over 15 years of manufacturing engineering frameworks.

It is a very high quality framework for CMS, made in PHP 5.3 or higher, fully object-oriented and strong to distribute code into Web portals high reach or REST APIs optimization.

Xamboo is freeware, and turn uses several other freeware components (DomCore)

Xamboo is an engine to build applications that dispense code to the client. It is completely independent of checked code, ie you can send both HTML 3, 4, 5, XHTML, XML, SGML including any tailor, javascript, JSON, WAP, etc.

Armed examples are in HTML 5 and CSS3 Javascript.

Xamboo not need a database to manage the entire structure of the framework, which makes it extremely fast, easy to use and powerful.

Xamboo works on sites currently distributing more than 30 millions web pages monthly, serves regular sites, and GRAPH-APIs / REST APIs to APP-mobiles.

Requirements:

To operate Xamboo, you need: - A webserver (Apache, nginx, etc.) - PHP 5.3 minimum

Installation

Always download the latest version from http://www.webability.info/?P=xamboo or from github https://github.com/webability/xamboo

Gets a file format: xamboo-xx-yy-zz.tar.gz Where xx-yy-zz is the current version of the tool

  1. Installation on the web server on Linux You must unzip the file xamboo-xx-yy-zz.tar.gz where you want to install

When decompressing, creates a 'xamboo' folder with all the code inside.

This folder should not be in a public directory accessible by Web, either internet or local

It is recommended to put the code xamboo is a directory one level above the same web site, or in a directory accessible by the web site.

Example:

Base directory website: / Var / www

Unzip xamboo in / var:

/ Var / xamboo / Var / html

Within xamboo, there is a folder called "site". You can link this folder to the root of the website, or use any other folder to your liking, and copy the files present here in the root folder of the website.

  1. Installing the wrapper

Copy 2 index.php and .htaccess files in the public folder on the web Are in xamboo / site

Edit the index.php file. At the beginning of the file, there are 3 directories that link Xamboo settings. Change directories to link the system xamboo folder where you have installed. By default, searches xamboo a previous directory to the root of the site.

Index.php is indicative and may be increased to what is required for the proper functioning of your site (eg user login, logs hits, configuration and directories from file to database connection, etc .)

The .htaccess file in the same way, defines the rules to make the wrap apache to the index. You can make a arhico equivalent for other web servers if you do not use apache.

Described later in the cap?culo "Reference - Wrapper" the minimum needed to run Xamboo and how to use it.

  1. Installing the maintenance file

Copy maintenance.html file in the public folder of the web This in xamboo / site

This file is used when the system switchea to "Care Instructions" from the configuration mode. You can specify any file, by default it is this.

  1. Install the base system

Within the xamboo / site directory, then comes a file Base.lib This file contains its own Base file, Base_engine derivative of Xamboo in which you can add all the functionality you need for your own site.

You can leave the library at the root of your site (where you copied index.php) or protect inside a folder includes its own classes. What is important is that the system has access to it.

  1. Example of installation

5.1 Very Basic Installation

/ Var / xamboo Base Installation / Var / xamboo / include PHP Libraries / Var / xamboo / site Root Web Site / Var / xamboo / repository data repository site

5.2 Advanced installation

The tool follows Installs in /home/sites/mi-sitio.com:

/home/sites/mi-sitio.com Base Installation Root /home/sites/mi-sitio.com/site website PHP Libraries generally /home/sites/mi-sitio.com/include Libraries /home/sites/mi-sitio.com/include/base own site, put here the Base.lib Libraries /home/sites/mi-sitio.com/include/core the core (comes with Xamboo) Libraries /home/sites/mi-sitio.com/include/datasources the engine Xamboo Libraries /home/sites/mi-sitio.com/include/entities Singletones (access to databases, utilities, etc.) /home/sites/mi-sitio.com/include/pages Pages website Libraries /home/sites/mi-sitio.com/include/patterns the engine Xamboo Libraries /home/sites/mi-sitio.com/include/throwables the engine Xamboo Libraries /home/sites/mi-sitio.com/include/xamboo the engine Xamboo /home/sites/mi-sitio.com/include/__autoload.inc Autoload of several directories include (Comes with Xamboo amended to add all necessary folders) /home/sites/mi-sitio.com/repository data repository acplicaci?n

You can locate pages within data repository or within the include, to suit the webmaster. The advantage of having them in the include is to backup all code beyond data that may be within the repository, which are usually bigger in size, but longer life cycle (images, caches, documents, etc)

Hello, World

Create repository / pages folder / hello-world Create new folder with one hello-world.page file with the following content:

> Type = Single status = published template = template

Create a file hello-world.instance Leave empty file

Create a file hello-world.code with the following contents:

> <Html> <Body> Hello, World! </ Body> </ Html>

You can view the page through your website: http://www.mi-sitio.com/hello-world assuming the URL of your site is www.mi-sitio.com linked to the root of your website.

Pages - Reference

A URI is normally comprised of a route, followed by a file and GET parameters. The wrapper web server makes an initial check to see if the URI physically corresponds to a stored public site path file. If the file exists, it dispatches (eg images, JS, CSS, multimedia files etc) and if not then calls the engine of Xamboo in all other cases. In other words, the web server never returns a 404, but passes the full URI to engine in all cases. The engine of Xamboo will be responsible for answering the 404 if necessary after placing the order for the library / product call based on the structure of the repository.

Resolution of pages:

Xamboo separates the path of the URI first. Leave the / at the beginning and removes the last /. The notion of file does not exist in the framework. For example, /mi-ruta/mi-archivo.html is something you do not understand the engine, unless there physically 'mi-file.html' folder within the 'my-route' folder in the root of the Web Site.

Xamboo routes are manufactured to comply with the rules of SEO and search engine indexing.

Routes Xamboo accept only the following characters:

Az letters, letters with accents and ?, numbers 0-9, hyphen, underscore You can not include /, \, punctuation marks, spots, etc. within routes (although the OS supports it). Capitalization is always converted to lowercase for compatibility with operating systems insensitive to uppercase / lowercase is Windows.

For example if you capture the URI path: /Mi-PaginA/Mi-Ruta-con.un-punto: Automatically return an error by point / Mi-page / Mi-route: look at pages repository folder / my-page / my-route

The pages of the framework are all in the repository pages. This repository is a folder called / pages / repository located within the default application.

Each page is a folder, which contains a number of files that make up the definition and code of the page. Xamboo accepts a hierarchical structure of pages, namely that supports have pages within other pages ie folders within folders.

The route of the pages is the same route used in the URI to access this page.

The search is performed as follows:

  1. Locate the folder path directly as it comes from the URI. ????a. If there is no folder, follow in section 2 ????b. If the folder exists, check there inside the .page file. ??????i. If not, continues in point 2 ??????ii. If the file exists, verify this with status 'pulished' ????????1. If not 'published', follows in section 2 ????????2. If published, calculates and returns page.
  2. Not Found page. Removes the last folder URI ????a. There folders still continues in point 1 ????b. No more folders, terminate with an error ???? In short, it is the first folder found on the route from the end to be executed. In other words, you can add whatever after the official route will be ignored and taken to the page found as a number of parameters.

Examples: Repository Structure: / Section ????=> Real page with the file secci?n.page published / Section / subsection ????=> Real page with the file subsecci?n.page published / Section / subsection / sub-subsection ????=> Actual page with sub-subsecci?n.page file, unpublished

URI path to solve: / section / subsection / sub-sub / other-thing / one-way-extra

The resolution first searches the / section / subsection / sub-sub / other-thing / one-way-extra, that does not exist. Then, the resolution looks / section / subsection / sub-sub / other-thing that does not exist Then, the resolution looks / section / subsection / sub-subsection, which exists but is not published Finally, the resolution looks / section / subsection exists and is published Executes and returns the actual page / section / subsection

The complement of the path is passed to the page and can be used as an array of parameters In general, these parameters are words used for SEO, variables, names of items, etc.

Structure of pages:

For a folder in the repository of pages to be considered as a valid page, you must meet a series of standards. Otherwise, it will be considered a page and the engine will ignore the folder.

All pages needing a binding definition file page, named like the page (folder) and extension .page

Example: Page 'page-master': Folder: [repository] / page / page-master / Definition file: [repository] /page/pagina-principal/pagina-principal.page

The file contains a number of parameters described in the next chapter.

Each page can have from one to an unlimited number of instances. There are two parameters governing bodies: - The version - Language

IMPORTANT NOTE: The set [version.idioma] is optional, that is, if you work with one version / default language for a page, you can omit these parameters.

The version is an identifier that allows separating the same page with different code as needed The version accepts lowercase letters, accented letters, numbers, middle dash, underscore. For example, you can have multiple versions of the homepage: - Version default - Print - Version for visually impaired - Version for mobile It could also save the history of the main page: - Revision of 2010 - Revision of 2011 - Revision of the Christmas season - Current version

In the same way you can have the page in several languages. The language is the official representation of two letter language governed by ISO-339 2-letter language standard. Obviously the notion of languages ??is important only if the page contains translatable texts physically, and / or need a site with multiple languages.

Important note: It is recommended that an explosion of blocks of the page to ever have more than one dimension on the number of instances. For example, if you have your site in 5 languages ??and 4 basic versions are 20 input code files for each page which immediately becomes unmanageable. In this case, you have to separate the language tables on a page, and the code on another page, to have only 2 pages with 5 and 4 code files each. Then make sure that the versions can be solved a few different blocks between versions and everything else can be resolved in a single page with a single instance.

Examples: / Homepage /paginaprincipal/paginaprincipal.page definition of page /paginaprincipal/paginaprincipal.instance single instance of the page /paginaprincipal/paginaprincipal.code page code

/ Template /plantilla/plantilla.page definition of page Spanish /plantilla/plantilla.base.es.instance instance of the page, basic version /plantilla/plantilla.base.es.code code instance in Spanish of the page, basic version /plantilla/plantilla.base.en.instance instance in English of the page, basic version /plantilla/plantilla.base.en.code code instance in English of the page, basic version

/ Data /datos/datos.page definition of page /datos/datos.imprimir.es.instance instance of the page print version /datos/datos.imprimir.es.code instance code page, print version /datos/datos.ver.es.instance instance page version see /datos/datos.ver.es.code instance code page version see

.page Definition file

The .page file is a collection of parameters, one per line with the following syntax: Parameter = value

The system recognizes five default parameters in this file: - Type: the type of page. Required. You can have the following values: or simple: it is a simple page, based on a code to dispatch added the meta-language of Xamboo or library: is a PHP class that will dispatch the calculated code. The library must be called like the page and spread XBLibrary or template: is a template based on the template system WATemplate of DomCore or language: a language table based system WALanguage internationalization of DomCore or box: is an XML definition of Box Model with their respective libraries or redirect: redirect To page with the specified code (301 0302) format: 301 or 302 league, league

  • Status: the status of the page. Required. You can have the following values: or hidden: whatever happens, the code contained in this page is ignored as if there or published: the content on this page code is directly visible from the outside, that is accessible by direct request from the URI or block: the code is accessible, but only for internal calls Xamboo from another page or from code
  • Template: the template to use around here. Optional. Use the relative path of the template in the repository pages, without the leading /. The template should contain the keyword [[CONTENT]] where this page will be included.
  • Defaultversion: the default version of the instance of the page. Optional. The version instance must exist.
  • DefaultLanguage: the default language for the instance of the page. Optional. The instance in this language must exist.

In addition to these 5 parameters recognized by the framework, the developer can add as many extra parameters as needed, they will be stored and distributed to the page code for any need, and even consulted by other code pages and / or meta-language.

Note: It is not advisable to put parameters containing texts to send to the client in this file, since the definition of the site is language independent. For texts is recommended to add the parameters in the definition file for the instance, which itself is sensitive to language.

Resolution of instances:

Once the system finds the specified page, it will search the instance of this page more convenient. PROGRAMMER NOTE: You need to spend version and forced by URI for debugging language; CHECK HOW AND WHERE Look for the version requested by the URI and / or cookies and system parameters and system customer first

If the definition file contains the defaultversion page parameter, the engine looks for this version. If the definition file does not have the parameter, or the parameter is empty, then it will search the default version of the system called 'base'

The language searching is based on the language of the client cookie. If this cookie is not set, then solves the language of the client requesting the code first. If the language is not recognized, then it will use the default language of the system.

You can change the default language of this page DefaultLanguage parameter in the definition file of the page. If the cookie is set, then look for the language of value. If the instance of this page does not exist for the language, then it will search the instance with the default system language, or DefaultLanguage parameter

The instance with the default language and the default version has to be always. The system knows that the instance exists if and only if a file called [Name-of-the-page]. [Version]. [Language] .instance

The language are the two official letter ISO 339 standard - languages, for example is for Spanish, en for English and fr for French

.instance Definition file

The .instance file has the following format: [Name-of-the-page]. [Version]. [Language] .instance name-of-the-page must be the same as the folder which is version is the version name of this instance language is the language identifier format ISO-339 The set [version.idioma] is optional.

The .instance file is a collection of parameters, one per line with the following syntax: Parameter = value The framework expects the use of cache parameters in this file. The programmer can add as many parameters as desired. These parameters are usable directly by the code of the page and even from other pages.

  • Cache: full, yes or no. Optional. It is the indicator of whether the page is cached. The default is no. 'Full' indicates that the system will do a full cache of the page with his staff, while 'yes' only will cache the page but will not cached template drawing.
  • Cacheexclude: all URLs except for not using the cache if the cache is set to 'yes' or 'full'.
  • Cachevariables: list of variables (the HTTP query ...?) That make single page to fuck each calculable version of the page (eg a page). The list is separated by commas.

File .code container code

The .code file has the following format: [Name-of-the-page]. [Version]. [Language] .code name-of-the-page must be the same as the folder which is version is the version name of this instance language is the language identifier format ISO-339 The set [version.idioma] is optional.

The .code file is a mixture of code to dispatch with the keywords meta-language. Please refer to the meta-language manual on how to use it

.lib File

.template Archive

.language Archive

Compilation and caches

The whole framework code is compiled and cached at various levels, automatically, the user does not need to manage these caches.

Base Object

Class Reference

XBLibrary XBCode XBPage XBInstance XBRESTLibrary

Etc


  Files folder image Files  
File Role Description
Files folder imageinclude (1 file, 7 directories)
Files folder imagemessages (4 files)
Files folder imagerepository (1 file, 1 directory)
Files folder imagerestsite (3 files)
Files folder imagesite (3 files)
Accessible without login Plain text file index.html Data Documentation
Accessible without login Plain text file README.en.md Doc. Auxiliary data
Accessible without login Plain text file README.es.md Doc. Auxiliary data
Accessible without login Plain text file README.md Data Auxiliary data

  Files folder image Files  /  include  
File Role Description
Files folder imagecore (16 files)
Files folder imagedatasources (11 files)
Files folder imagemodules (1 file)
Files folder imagepatterns (4 files)
Files folder imagethrowables (7 files)
Files folder imagexamboo (18 files)
Files folder imagexconfig (1 file)
  Accessible without login Plain text file __autoload.lib Aux. Auxiliary data

  Files folder image Files  /  include  /  core  
File Role Description
  Accessible without login Plain text file WABase.lib Data patch 2.0.3
  Plain text file WAClass.lib Class Auxiliary data
  Plain text file WADebug.lib Class Auxiliary data
  Plain text file WAError.lib Class Auxiliary data
  Accessible without login Plain text file WAErrorNT.lib Data Auxiliary data
  Plain text file WAException.lib Class Auxiliary data
  Accessible without login Plain text file WAExceptionNT.lib Data Auxiliary data
  Plain text file WAFile.lib Class Auxiliary data
  Plain text file WALanguage.lib Class Auxiliary data
  Plain text file WALanguageCompiler.lib Class Auxiliary data
  Plain text file WAMessage.lib Class Auxiliary data
  Plain text file WAObject.lib Class Auxiliary data
  Plain text file WASHM.lib Class Auxiliary data
  Plain text file WASimpleXML.lib Class Auxiliary data
  Plain text file WATemplate.lib Class Auxiliary data
  Plain text file WAThrowable.lib Class Auxiliary data

  Files folder image Files  /  include  /  datasources  
File Role Description
  Plain text file DataSource.lib Class Auxiliary data
  Plain text file FastObjectSource.lib Class Auxiliary data
  Plain text file FileSource.lib Class Auxiliary data
  Plain text file LanguageSource.lib Class Auxiliary data
  Plain text file SHMSource.lib Class Auxiliary data
  Plain text file TemplateSource.lib Class Auxiliary data
  Plain text file XBCodeSource.lib Class Auxiliary data
  Plain text file XBInstanceSource.lib Class Auxiliary data
  Plain text file XBLanguageSource.lib Class Auxiliary data
  Plain text file XBPageSource.lib Class Auxiliary data
  Plain text file XBTemplateSource.lib Class Auxiliary data

  Files folder image Files  /  include  /  modules  
File Role Description
  Accessible without login Plain text file ModuleXamboo.lib Data Auxiliary data

  Files folder image Files  /  include  /  patterns  
File Role Description
  Accessible without login Plain text file Dispatcher.lib Data Auxiliary data
  Plain text file Factory.lib Class Auxiliary data
  Plain text file Multiton.lib Class Auxiliary data
  Plain text file Singleton.lib Class Auxiliary data

  Files folder image Files  /  include  /  throwables  
File Role Description
  Plain text file CoreError.lib Class Auxiliary data
  Plain text file DataSourceError.lib Class Auxiliary data
  Plain text file FileException.lib Class Auxiliary data
  Plain text file PatternError.lib Class Auxiliary data
  Plain text file SHMError.lib Class Auxiliary data
  Plain text file XambooError.lib Class Auxiliary data
  Plain text file XambooException.lib Class Auxiliary data

  Files folder image Files  /  include  /  xamboo  
File Role Description
  Plain text file Base_Engine.lib Class Auxiliary data
  Plain text file engine.lib Class Auxiliary data
  Plain text file HTTPRequest.lib Class Auxiliary data
  Plain text file HTTPResponse.lib Class Auxiliary data
  Plain text file PHPExec.lib Class Auxiliary data
  Plain text file Validator.lib Class Auxiliary data
  Plain text file XBCacheServer.lib Class Auxiliary data
  Plain text file XBCode.lib Class Auxiliary data
  Plain text file XBCodeServer.lib Class Auxiliary data
  Plain text file XBCompiler.lib Class Auxiliary data
  Plain text file XBInstance.lib Class Auxiliary data
  Plain text file XBInstanceServer.lib Class Auxiliary data
  Plain text file XBLanguageServer.lib Class Auxiliary data
  Plain text file XBLibrary.lib Class Auxiliary data
  Plain text file XBPage.lib Class Auxiliary data
  Plain text file XBPageServer.lib Class Auxiliary data
  Plain text file XBRESTLibrary.lib Class Auxiliary data
  Plain text file XBTemplateServer.lib Class Auxiliary data

  Files folder image Files  /  include  /  xconfig  
File Role Description
  Accessible without login Plain text file XConfig.lib Data Auxiliary data

  Files folder image Files  /  messages  
File Role Description
  Accessible without login Plain text file message.es.xml Data Auxiliary data
  Accessible without login Plain text file message.fr.xml Data Auxiliary data
  Accessible without login Plain text file message.nl.xml Data Auxiliary data
  Accessible without login Plain text file readme.txt Doc. Documentation

  Files folder image Files  /  repository  
File Role Description
Files folder imagepages (5 directories)
  Accessible without login Plain text file xamboo.conf Data Auxiliary data

  Files folder image Files  /  repository  /  pages  
File Role Description
Files folder imageblocks (4 directories)
Files folder imageerror (3 files)
Files folder imageerrorblock (3 files)
Files folder imagehome (3 files)
Files folder imagetemplate (3 files)

  Files folder image Files  /  repository  /  pages  /  blocks  
File Role Description
Files folder imagelanguage-demo (3 files)
Files folder imagelibrary-demo (5 files)
Files folder imagesimple-demo (3 files)
Files folder imagetemplate-demo (3 files)

  Files folder image Files  /  repository  /  pages  /  blocks  /  language-demo  
File Role Description
  Accessible without login Plain text file language-demo.instance Data Auxiliary data
  Accessible without login Plain text file language-demo.language Data Auxiliary data
  Accessible without login Plain text file language-demo.page Data Auxiliary data

  Files folder image Files  /  repository  /  pages  /  blocks  /  library-demo  
File Role Description
  Accessible without login Plain text file library-demo.instance Data Auxiliary data
  Accessible without login Plain text file library-demo.language Data Auxiliary data
  Plain text file library-demo.lib Class Auxiliary data
  Accessible without login Plain text file library-demo.page Data Auxiliary data
  Accessible without login Plain text file library-demo.template Data Auxiliary data

  Files folder image Files  /  repository  /  pages  /  blocks  /  simple-demo  
File Role Description
  Accessible without login Plain text file simple-demo.code Data Auxiliary data
  Accessible without login Plain text file simple-demo.instance Data Auxiliary data
  Accessible without login Plain text file simple-demo.page Data Auxiliary data

  Files folder image Files  /  repository  /  pages  /  blocks  /  template-demo  
File Role Description
  Accessible without login Plain text file template-demo.instance Data Auxiliary data
  Accessible without login Plain text file template-demo.page Data Auxiliary data
  Accessible without login Plain text file template-demo.template Data Auxiliary data

  Files folder image Files  /  repository  /  pages  /  error  
File Role Description
  Accessible without login Plain text file error.code Data Auxiliary data
  Accessible without login Plain text file error.instance Data Auxiliary data
  Accessible without login Plain text file error.page Data Auxiliary data

  Files folder image Files  /  repository  /  pages  /  errorblock  
File Role Description
  Accessible without login Plain text file errorblock.code Data Auxiliary data
  Accessible without login Plain text file errorblock.instance Data Auxiliary data
  Accessible without login Plain text file errorblock.page Data Auxiliary data

  Files folder image Files  /  repository  /  pages  /  home  
File Role Description
  Accessible without login Plain text file home.code Data Auxiliary data
  Accessible without login Plain text file home.instance Data Auxiliary data
  Accessible without login Plain text file home.page Data Auxiliary data

  Files folder image Files  /  repository  /  pages  /  template  
File Role Description
  Accessible without login Plain text file template.code Data Auxiliary data
  Accessible without login Plain text file template.instance Data Auxiliary data
  Accessible without login Plain text file template.page Data Auxiliary data

  Files folder image Files  /  restsite  
File Role Description
  Accessible without login Plain text file .htaccess Data Auxiliary data
  Plain text file Base.lib Class Auxiliary data
  Accessible without login Plain text file index.php Example Example script

  Files folder image Files  /  site  
File Role Description
  Accessible without login Plain text file .htaccess Data Auxiliary data
  Plain text file Base.lib Class Auxiliary data
  Accessible without login Plain text file index.php Example Example script

 Version Control Unique User Downloads Download Rankings  
 100%
Total:253
This week:1
All time:7,883
This week:560Up