Subversion Repositories oidplus

Rev

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

Rev 1130 Rev 1131
Line 15... Line 15...
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
17
 * limitations under the License.
18
 */
18
 */
19
 
19
 
-
 
20
use ViaThinkSoft\OIDplus\INTF_OID_1_3_6_1_4_1_37476_2_5_2_3_1;
20
use ViaThinkSoft\OIDplus\OIDplus;
21
use ViaThinkSoft\OIDplus\OIDplus;
21
use ViaThinkSoft\OIDplus\OIDplusGui;
22
use ViaThinkSoft\OIDplus\OIDplusGui;
22
use ViaThinkSoft\OIDplus\OIDplusException;
23
use ViaThinkSoft\OIDplus\OIDplusException;
23
 
24
 
24
require_once __DIR__ . '/../../../../includes/oidplus.inc.php';
25
require_once __DIR__ . '/../../../../includes/oidplus.inc.php';
Line 157... Line 158...
157
step_system_title($step++, $do_edits, $errors_happened);
158
step_system_title($step++, $do_edits, $errors_happened);
158
 
159
 
159
# ---
160
# ---
160
 
161
 
161
foreach (OIDplus::getAllPlugins() as $plugin) {
162
foreach (OIDplus::getAllPlugins() as $plugin) {
162
        if ($plugin->implementsFeature('1.3.6.1.4.1.37476.2.5.2.3.1')) {
163
        if ($plugin instanceof INTF_OID_1_3_6_1_4_1_37476_2_5_2_3_1) {
163
                $plugin->oobeEntry($step++, $do_edits, $errors_happened); /** @phpstan-ignore-line */
164
                $plugin->oobeEntry($step++, $do_edits, $errors_happened);
164
        }
165
        }
165
}
166
}
166
 
167
 
167
# ---
168
# ---
168
 
169