add numbers to the techlevel descriptions because that's what we will use to indicate a minimum level in documentation

This commit is contained in:
zotlabs 2017-06-11 18:52:00 -07:00
parent 1d96544c9d
commit 6f78183b74

View File

@ -7,12 +7,12 @@ class Techlevels {
static public function levels() { static public function levels() {
$techlevels = [ $techlevels = [
'0' => t('Beginner/Basic'), '0' => t('0. Beginner/Basic'),
'1' => t('Novice - not skilled but willing to learn'), '1' => t('1. Novice - not skilled but willing to learn'),
'2' => t('Intermediate - somewhat comfortable'), '2' => t('2. Intermediate - somewhat comfortable'),
'3' => t('Advanced - very comfortable'), '3' => t('3. Advanced - very comfortable'),
'4' => t('Expert - I can write computer code'), '4' => t('4. Expert - I can write computer code'),
'5' => t('Wizard - I probably know more than you do') '5' => t('5. Wizard - I probably know more than you do')
]; ];
return $techlevels; return $techlevels;
} }