Login   Register  
Icontem

File: README

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Pavel Kukov  >  Local Data  >  README  >  Download  
File: README
Role: Documentation
Content type: text/plain
Description: README
Class: Local Data
Store multiple values in single cookies
Author: By
Last change: update
Date: 2012-07-03 03:38
Size: 1,849 bytes
 

Contents

Class file image Download
Sample usage for localdata.js 
=============

* Store - $.localdata("name", "value"); 
value can be integer, string, object, array 
$.localdata("name", [1,2,3,4,5]); 
$.localdata("name", {name: "John Dow", email: "john@company.com"}); 
 
* Read - $.localdata("name"); 
* Delete One Item By Key - $.localdata.remove("name"); or $.localdata("name",null,{expires:-1}); 
* Delete entire cookie - $.localdata.clear(); 
* Count Stored Items - $.localdata.count(); 
* Force Reload - $.localdata.reload(); 
* Get/Set cookie configuration - $.localdata.config() and $.localdata.config({expires: 'in days', path: 'your new path', domain: 'domain', 'secure': true or false}) defaults are expires: 365, path: '/', domain: '', 'secure': '' 
* Get/Set cookie prefix - $.localdata.prefix() and $.localdata.prefix("new_prefix_") default is "localdata_cookie_" 
 
PHP: Sample usage for localdata.php 
=============

* Include - include('localdata.php');  
* Create Object - $localdata = localdata::get();  
 
* Store - $localdata("name", "value"); or $localdata->name = "value"; 
 value can be integer, string, object, array  
$localdata("name", array(1,2,3,4,5));  
$localdata("name", array("name" => "John Dow", "email" => "john@company.com"));  
 
* Read - $localdata("name"); or $localdata->name 
* Delete One Item By Key - $localdata->remove("name");  
* Delete entire cookie - $localdata->clear();  
* Count Stored Items - $localdata->count(); 
* Get/Set cookie configuration - $localdata->config() and $localdata->config(Array('expires' => 'in days', 'path' => 'your new path', 'domain' => 'domain', 'secure' => true or false}) defaults are 'expires' => 365, 'path' => '/', 'domain' => NULL, 'secure' => NULL 
* Get/Set cookie prefix - $localdata->prefix() and $localdata->prefix("new_prefix_") default is "localdata_cookie_"