adding the processes pagging toolbar

This commit is contained in:
Erik Amaru Ortiz
2011-02-07 16:04:51 +00:00
parent 9d3cd25bf4
commit 73cdf51d10
5 changed files with 83 additions and 13 deletions

View File

@@ -443,5 +443,18 @@ class Configurations // extends Configuration
return $dateTime;
}
function getEnvSetting($key=null)
{
$this->loadConfig($obj, 'ENVIRONMENT_SETTINGS','');
if( isset($key) ) {
if( isset($this->aConfig[$key]) ) {
return $this->aConfig[$key];
} else
return '';
} else
return $this->aConfig;
}
}
?>