Registry Class

by Sitebase

Description

This script is meant to store and retrieve variables in a central place. The values can be stored in three ways.

  1. Temp: Variables are accessible withing one script execution (like normal variables).
  2. Session: Variables that are accessible from all the pages for one user (saved in session).
  3. Application: Variables are accesible for all users from all pages (saved in file).

This way you have all your variables in one place and have a central place the get and set your different type of variables.

Freatures

  • Set and retrieve variables with the same method.
  • Static methods so easy to use
  • Binding variables in the registry to keep a reference 
  • Set and get to/from sessions/file/variables with the same method
  • Auto serializing of arrays and objects before saved to file

How to use

The class is very easy to use because it uses static methods and uses the singleton pattern so there’s always only one instance from the class.

For example we want to save the username in a session so it’s accessible from every page in your website.

Registry::Set("username", "Sitebase", Registry::VAR_SESSION);

If I now want to access the username of the current user. You do this:

echo Registry::Get("username");

A second example is setting a variable that is accessible on every page and for every visitor on the website. The variables are stored in a ini file (in upcoming release it will also be possible to save to database). First we need to add a driver for the Ini file to the registry. This you do once in your index.php file.

$Driver = new Registry_Drivers_Ini();
$Driver->SetFile("data.ini");
Registry::SetDriver($Driver);

To save a variable to the ini file you do this:

Registry::Set("localhost", "host", Registry::VAR_APPLICATION);

If I now want to access the the host variable you do this:

echo Registry::Get("host");

If you use an array or object as variable then these will automaticly be serialized before saving to the ini file. This way you can save whatever type of variable you want in the ini file.

$7

Prepaid customers
pay just $5 - how? Prepay Your Account With our deposit system not only will purchasing be much faster, but we’ll also take $2 off the price! Click Here to Deposit Price

You must sign in or sign up to purchase this item.

Purchase 14 purchases

Sitebase

Sitebase

Exclusive Author Item was Featured Author was Featured Author had a Free File of the Month Referred at least one person Sold between 10 000 and 50 000 dollars Bought between 1 and 9 items Belgium
File Types Included
PHP
Item Attributes
Created 27 November 09
PHP Version 5.x
MySQL Version N/A
Compatible Browsers FireFox 2, FireFox 3, IE6, IE7, IE8, Safari
ThemeForest Files Included N/A
PHP Files Included PHP
PHP Framework N/A
Collections that include this item