Backend\Modules\Profiles\Actions\Block::execute PHP Метод

execute() публичный Метод

Execute the action.
public execute ( )
    public function execute()
    {
        // get parameters
        $this->id = $this->getParameter('id', 'int');
        // does the item exist
        if ($this->id !== null && BackendProfilesModel::exists($this->id)) {
            // call parent, this will probably add some general CSS/JS or other required files
            parent::execute();
            // get item
            $profile = BackendProfilesModel::get($this->id);
            // already blocked? Prolly want to unblock then
            if ($profile['status'] === 'blocked') {
                // set profile status to active
                BackendProfilesModel::update($this->id, array('status' => 'active'));
                // trigger event
                BackendModel::triggerEvent($this->getModule(), 'after_unblock', array('id' => $this->id));
                // redirect
                $this->redirect(BackendModel::createURLForAction('Index') . '&report=profile-unblocked&var=' . rawurlencode($profile['email']) . '&highlight=row-' . $this->id);
            } else {
                // delete profile session that may be active
                BackendProfilesModel::deleteSession($this->id);
                // set profile status to blocked
                BackendProfilesModel::update($this->id, array('status' => 'blocked'));
                // trigger event
                BackendModel::triggerEvent($this->getModule(), 'after_block', array('id' => $this->id));
                // redirect
                $this->redirect(BackendModel::createURLForAction('Index') . '&report=profile-blocked&var=' . rawurlencode($profile['email']) . '&highlight=row-' . $this->id);
            }
        } else {
            $this->redirect(BackendModel::createURLForAction('Index') . '&error=non-existing');
        }
    }
Block