News:

Happy New Year! Yes, the current one, not a previous one; this is a new post, we swear!

Main Menu

Digital Text CMS

Started by Warrior, December 04, 2005, 05:03:08 AM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

rabbit

Have a main template which is basically a simple smarty layout which dictates what goes where overall.

igimo1


Warrior

Well I started implementing my module manager, coming along fine
Here is some (untested) code since I'm a showoffy guy


<?php// Some constantsdefine('VW_MAIN', 0);define('VW_CREATE', 1);define('VW_EDIT', 2);define('VW_DELETE', 3);// Some errorsdefine ('VW_NOERR', 0);define ('VW_ERRACTN', 1);define ('VW_BADMOD', 2);class MMCore{	var $DB;	var $ModuleName;	var $View;	var $ManagerCanvas;		function HandlePage($view, $name = NULL)	{		if ($name != NULL)		{			if (!$this->Exists($name))				return VW_BADMOD;						$view = VW_EDIT;			$this->ModuleName = $name		}				$this->DB = new DatabaseSystem;		$this->View = $view;		$usingSys = true;		$this->ManagerCanvas = new DisplaySystem($usingSys);				switch ($this->View)		{			case VW_MAIN:				$this->HandleMain();				break;			case VW_CREATE:				$this->HandleCreate();				break;			case VW_EDIT:				break;			case VW_DELETE:				break;			default:				break;		}				return VW_NOERR;	}		function HandleMain()	{			if (!empty($this->ModuleName))		{			$this->ManagerCanvas->assign("SingleModule", true);			// Display information about the module			if (is_array($result))			{			} else {				// Log an error about failing to fetch here				// Display "Unable to Fetch"				$this->ManagerCanvas->assign("ModuleName", $this->ModuleName);				$this->ManagerCanvas->assign("ModuleVersion", "Unable to Fetch");				$this->ManagerCanvas->assign("ModuleAuthor", "Unable to Fetch");				$this->ManagerCanvas->assign("ModuleDescription", "Unable to Fetch");			}		} else {			$this->ManagerCanvas->assign("SingleModule", false);			// Done		}				return VW_NOERR;	}		function HandleCreate()	{		if ($_POST)		{			// Been posted, use sLayer to check it's integrity		} else {			if (!empty($this->ModuleName))			{				// Dont display			} else {				// Display			}		}				return VW_NOERR;	}	}?>

One must ask oneself: "do I will trolling to become a universal law?" And then when one realizes "yes, I do will it to be such," one feels completely justified.
-- from Groundwork for the Metaphysics of Trolling

rabbit

#93

Sidoh

Add error handling! :P

QuoteWarning:  opendir(): open_basedir restriction in effect. File(/) is not within the allowed path(s): (/home/warrior/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/warrior/public_html/demo/dev/SourceMonkeyv2.php on line 18



Warning:  opendir(/): failed to open dir: Operation not permitted in /home/warrior/public_html/demo/dev/SourceMonkeyv2.php on line 18

There are no files.

rabbit

That's Warrior's crappy derivation off of my original SourceMonkey, which is now v1.2.  If you find any errors, please tell me about them.

Sidoh

Warrior:

I would not recommend saying something like "you are not allowed to do that!" when you try to view config.php.  Instead, implement some sort of symbolic link that opens a blank config.php from elsewhere.  That or don't display it in the list.

rabbit

#97
SourceMonkey v1.2 is mine!  I'll work on that one :P

[update]
Changed.

[update]
Now displays images and I fixed a few minor bugs with the path strings.

Warrior

Crappy? Code owns your okay thanks.

Fixing v2 later today, reformatting and doing misc stuff. Plus I have a feature which will blow 1.2 out of the water. Start calling yourself CodeMonkey Legacy!
One must ask oneself: "do I will trolling to become a universal law?" And then when one realizes "yes, I do will it to be such," one feels completely justified.
-- from Groundwork for the Metaphysics of Trolling

Sidoh

When you're outputting a file, you should just send a header (obviously before you write anything else to the page) signifying the content type and then output the file.  Personally, I don't like how it leaves the navigation above the page.  That's probably just me though.

Quik

Question: Why are you calling it "codemonkey" and is this a necessary project to get sidetracked on?
Quote[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny

Warrior

Cool name, also this project is done it's just something me and rabbit do for some friendly competition.
Took me 40 mins tops to make a new v2 ver (Although it's buggy and I may just drop it and merge with Rabbit's solution) not going to sidetrack me :P
One must ask oneself: "do I will trolling to become a universal law?" And then when one realizes "yes, I do will it to be such," one feels completely justified.
-- from Groundwork for the Metaphysics of Trolling

Quik

Quote[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny

Warrior

Because we'd REALLY copy of off venox right?
One must ask oneself: "do I will trolling to become a universal law?" And then when one realizes "yes, I do will it to be such," one feels completely justified.
-- from Groundwork for the Metaphysics of Trolling

rabbit

I still don't know what this new feature will be, but it sucks.  1.2 is bett4hr than v2.  Mine's been updated a little since you were on earlier.