Hello,
I was looking to see if someone here recoginizes the framework based on what i have describe below.
I have an application that appears to be written using some form of application framework that provides for editing, adding, deleted and viewing data based ondata in mysql and templates and xml files to descibe how to render the various pages.
It uses templates and xml files to build forms, displays, lists, add, edits etc and passes them all through the engine.
Some of the main pages in /lib/ are:
-- pb_events.php
-- sqladmin.php
-- forms.php
-- html.php
-- site.php
here is the text used to create a page based on the template and xml files that describe the data elements:
<?php
require "config.php";
$PAGE = "index";
$GET["sub"] = "details";
$site = new CSite("admin/site.xml");
$site->Run();
?>
and some of the main classes in the app are:
--CDatabase
--class CForm extends CLibrary{
--class CSQLAdmin extends CLibrary {
The whole things just says 'i am a great tool for building web sites' but i am not a regular php programmer and dont recognize the framework. I want to get info on it so i know how to extend the application i have here.
Thanks,
davlun