Subversion Repositories oidplus

Rev

Rev 1124 | Rev 1127 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1124 Rev 1125
Line 1264... Line 1264...
1264
                return OIDplus::config()->getValue('oobe_objects_done') == '0';
1264
                return OIDplus::config()->getValue('oobe_objects_done') == '0';
1265
        }
1265
        }
1266
 
1266
 
1267
        /**
1267
        /**
1268
         * Implements interface 1.3.6.1.4.1.37476.2.5.2.3.1
1268
         * Implements interface 1.3.6.1.4.1.37476.2.5.2.3.1
1269
         * @param $step
1269
         * @param int $step
1270
         * @param $do_edits
1270
         * @param bool $do_edits
1271
         * @param $errors_happened
1271
         * @param bool $errors_happened
1272
         * @return void
1272
         * @return void
1273
         */
1273
         */
1274
        public function oobeEntry($step, $do_edits, &$errors_happened)/*: void*/ {
1274
        public function oobeEntry(int $step, bool $do_edits, bool &$errors_happened)/*: void*/ {
1275
                echo '<h2>'._L('Step %1: Enable/Disable object type plugins',$step).'</h2>';
1275
                echo '<h2>'._L('Step %1: Enable/Disable object type plugins',$step).'</h2>';
1276
                echo '<p>'._L('Which object types do you want to manage using OIDplus?').'</p>';
1276
                echo '<p>'._L('Which object types do you want to manage using OIDplus?').'</p>';
1277
 
1277
 
1278
                $enabled_ary = array();
1278
                $enabled_ary = array();
1279
 
1279