36 lines
720 B
PHP
36 lines
720 B
PHP
<?php
|
|
class OC_PREFERENCES{
|
|
static public $forms=array();
|
|
/**
|
|
* Get the available keys for an application
|
|
* @param string application
|
|
*/
|
|
public static function getKeys( $user, $application ){
|
|
// OC_DB::query( $query);
|
|
return array();
|
|
}
|
|
|
|
/**
|
|
* Get the config value
|
|
* @param string application
|
|
* @param string key
|
|
* @param string default
|
|
*/
|
|
public static function getValue( $user, $application, $key, $default ){
|
|
// OC_DB::query( $query);
|
|
return $default;
|
|
}
|
|
|
|
/**
|
|
* Set the config value
|
|
* @param string application
|
|
* @param string key
|
|
* @param string value
|
|
*/
|
|
public static function setValue( $user, $application, $name, $url ){
|
|
// OC_DB::query( $query);
|
|
return true;
|
|
}
|
|
}
|
|
?>
|