Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-01-30 17:25:39 +0400
committerLukas Reschke <lukas@statuscode.ch>2013-01-30 17:25:39 +0400
commit99ad8a1191736faae03f25e7894f715f98b9cdee (patch)
tree354907d7729620db1de87e2bf9bcc831f3ebddf8 /lib
removed all data but folder to move
Diffstat (limited to 'lib')
-rwxr-xr-xlib/firstrunwizard.php60
1 files changed, 60 insertions, 0 deletions
diff --git a/lib/firstrunwizard.php b/lib/firstrunwizard.php
new file mode 100755
index 00000000..420b0626
--- /dev/null
+++ b/lib/firstrunwizard.php
@@ -0,0 +1,60 @@
+<?php
+
+/**
+ * ownCloud - firstrunwizard App
+ *
+ * @author Frank Karlitschek
+ * @copyright 2012 Frank Karlitschek frank@owncloud.org
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+
+namespace OCA_FirstRunWizard;
+
+class Config {
+
+ /**
+ * @brief Disable the FirstRunWizard
+ */
+ public static function enable() {
+ \OCP\Config::setUserValue( \OCP\User::getUser(), 'firstrunwizard', 'show', 1 );
+ }
+
+ /**
+ * @brief Enable the FirstRunWizard
+ */
+ public static function disable() {
+ \OCP\Config::setUserValue( \OCP\User::getUser(), 'firstrunwizard', 'show', 0 );
+ }
+
+ /**
+ * @brief Check if the FirstRunWizard is enabled or not
+ * @return bool
+ */
+ public static function isenabled() {
+ $conf=\OCP\CONFIG::getUserValue( \OCP\User::getUser() , 'firstrunwizard' , 'show' , 1 );
+ if($conf==1) {
+ return(true);
+ }else{
+ return(false);
+ }
+ }
+
+
+
+}
+
+?>