Ejemplo n.º 1
0
 /**
  * Get interface details.
  *
  * @return array
  *
  * @throws Engine_Exception
  */
 public function get_interface_details()
 {
     clearos_profile(__METHOD__, __LINE__);
     if (!$this->is_loaded) {
         $this->_load_config();
     }
     $iface_manager = new Iface_Manager();
     $ifaces = $iface_manager->get_interface_details();
     return $ifaces;
 }