Friday, September 7, 2012

Registry Class

PHP Scripts - Registry Class - CodeCanyon

Registry Class his title this type of PHPScripts/Miscellaneous This time I will review,made by Sitebase, PHPScripts/Miscellaneous is sold at a price of $4 in CodeCanyon. Registry Class - CodeCanyon Item for Sale class // data // global // ini // registry // sessions // store // variables //
Created 27 November 09
Last Update 27 November 09
Compatible Browsers Firefox, IE6, IE7, IE8, Safari
Software Version PHP 5.x, jQuery
Software Framework N/A
Files Included PHP
More Info...Registry Class ..

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.

Download LinkRegistry Class - ..

Related produck This user:Sitebase

Google Maps for Mobile Site PRO - CodeCanyon Item for Sale Twitter Wall for Mobile Site PRO - CodeCanyon Item for Sale Mobile Site PRO - CodeCanyon Item for Sale News Widget for WordPress - CodeCanyon Item for Sale Testimonials for WordPress - CodeCanyon Item for Sale API Client - CodeCanyon Item for Sale Html Helper Class - CodeCanyon Item for Sale

More items by Sitebase

No comments:

Post a Comment