Added the SILK icon set, also added the affiliate admin stuff.

git-svn-id: http://svn.cleancode.org/svn/pickles@110 4d10bc64-7434-11dc-a737-d2d0f8310089
This commit is contained in:
Josh Sherman 2009-03-24 04:26:36 +00:00
parent 466c35a6bb
commit fab27b3332
1013 changed files with 2099 additions and 111 deletions

View file

@ -34,12 +34,6 @@
*/
class Module extends Object {
/**
* Data array used by the display
*/
// @todo REMOVE THIS
//protected $data = array();
/**
* Array of public variables to be available by the display
*/
@ -202,25 +196,6 @@ class Module extends Object {
return null;
}
/**
* Sets the variable in the data array
*
* Overrides the built-in functionality to set an object's property with
* logic to place that data inside the data array for easier interaction
* later on.
*
* @param string $variable Name of the variable to be set
* @param mixed $value Data to be set
* @todo REMOVE ME!
*/
/*
public function __set($variable, $value) {
if ($variable != 'cache_id') {
$this->data[$variable] = $value;
}
}
*/
public function setPublic($variable, $value) {
$this->public[$variable] = $value;
return true;