aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Techlevels.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Lib/Techlevels.php')
-rw-r--r--Zotlabs/Lib/Techlevels.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Techlevels.php b/Zotlabs/Lib/Techlevels.php
new file mode 100644
index 000000000..6a8c36fb3
--- /dev/null
+++ b/Zotlabs/Lib/Techlevels.php
@@ -0,0 +1,21 @@
+<?php
+
+namespace Zotlabs\Lib;
+
+
+class Techlevels {
+
+ static public function levels() {
+ $techlevels = [
+ '0' => t('Beginner/Basic'),
+ '1' => t('Novice - not skilled but willing to learn'),
+ '2' => t('Intermediate - somewhat comfortable'),
+ '3' => t('Advanced - very comfortable'),
+ '4' => t('Expert - I can write computer code'),
+ '5' => t('Wizard - I probably know more than you do')
+ ];
+ return $techlevels;
+ }
+
+}
+