*/
function connect($server, $user, $password, $database, $pconnect)
{
- $this->registry->check_isso_fields(get_class($this));
-
if ($this->dblink == false)
{
$this->dblink = call_user_func(($pconnect ? $this->commands['pconnect'] : $this->commands['connect']), $server, $user, $password, $database);
*/
function command_pg_connect($server, $user, $password, $database)
{
- $this->registry->check_isso_fields(get_class($this));
return pg_connect("host='$server' port={$this->port} user='$user' password='$password' dbname='$database'");
}
*/
function command_pg_pconnect($server, $user, $password, $database)
{
- $this->registry->check_isso_fields(get_class($this));
return pg_pconnect("host='$server' port={$this->port} user='$user' password='$password' dbname='$database'");
}
*/
function &load($framework, $asobject, $globalize = false)
{
- $this->check_isso_fields(null);
-
// set the object interlock
if (!method_exists($GLOBALS['isso:callback'], 'load'))
{
*/
function page_start($actiontitle, $pageclass = null, $extra = '', $onload = false)
{
- $this->registry->check_isso_fields(get_class($this));
-
if ($this->registry->debug AND isset($_GET['query']))
{
ob_start();
return;
}
- $title = sprintf(_('%1$s - %2$s - %3$s'), $this->registry->application, $this->realm, $actiontitle);
+ $title = sprintf(_('%1$s - %2$s - %3$s'), $this->registry->getApplication(), $this->realm, $actiontitle);
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
echo "<html xml:lang=\"" . $this->language['langcode'] . "\" lang=\"" . $this->language['langcode'] . "\" dir=\"" . $this->language['direction'] . "\">\n<head>";
*/
function _parse($template)
{
- $this->registry->check_isso_fields(get_class($this));
-
$template = str_replace('"', '\"', $template);
if (function_exists($this->pre_parse_hook))