. * */ /** * This class provides an easy way for apps to store config values in the * database. */ class OC_OCSCLIENT{ /** * @brief Get all the categories from the OCS server * @returns array with category ids * * This function returns a list of all the application categories on the OCS server */ public static function getCategories(){ return true; } /** * @brief Get all the applications from the OCS server * @returns array with application data * * This function returns a list of all the applications on the OCS server */ public static function getApplications(){ return true; } } ?>