<?php
    
    if( !$this->network->id ) {
        $this->redirect('home');
    }
    if( !$this->user->is_logged ) {
        $this->redirect('home');
    }
    
    $db2->query('SELECT 1 FROM users WHERE iduser="'.$this->user->id.'" AND is_network_admin=1 LIMIT 1');
    if( 0 == $db2->num_rows() ) {
        $this->redirect('dashboard');
    }
    
    $this->redirect('admin/general');
?>