dc-rest/inc/class.rest.DcNameSpace.php
2017-06-20 19:40:56 +02:00

12 lines
256 B
PHP
Executable File

<?php
class restDcNameSpace extends dcNamespace
{
//this function is private on the parent class
public function settingExists($id,$global=false)
{
$array = $global ? 'global' : 'local';
return isset($this->{$array.'_settings'}[$id]);
}
}