You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/lib/appconfig.php

45 lines
866 B

<?php
class OC_APPCONFIG{
static public $forms=array();
/**
* add a form to the settings page
* @param string name
* @param string url
*/
public static function addForm($name,$url){
self::$forms[$name]=$url;
}
/**
* Get the available keys for an application
* @param string application
*/
public static function getKeys( $application ){
// OC_DB::query( $query);
return array();
}
/**
* Get the config value
* @param string application
* @param string key
* @param string default
*/
public static function getValue( $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( $application, $name, $url ){
// OC_DB::query( $query);
return true;
}
}
?>