index.php 493 B

1234567891011121314151617181920
  1. <?php
  2. if (cfr('REPORTSWPORT')) {
  3. $switchPortAssignReport = new SwitchPortReport();
  4. //getting polls data
  5. if (ubRouting::checkGet('ajaxswitchassign')) {
  6. $switchPortAssignReport->loadUsersData();
  7. $switchPortAssignReport->ajaxAvaibleSwitchPortAssign();
  8. }
  9. /*
  10. * controller and view section
  11. */
  12. show_window(__('Switch port assign'), $switchPortAssignReport->renderSwitchPortAssign());
  13. } else {
  14. show_error(__('You cant control this module'));
  15. }