AbstractView::region_render PHP Метод

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

When "cut"-ing using cut_region we need to output only a specified tag. This method of cutting is mostly un-used now, and should be considered obsolete.
Устаревший: 4.3.1
public region_render ( )
    public function region_render()
    {
        throw $this->exception('cut_region is now obsolete');
        /*
        if ($this->template_flush) {
            if ($this->app->jquery) {
                $this->app->jquery->getJS($this);
            }
            throw new Exception_StopRender(
                $this->template->cloneRegion($this->template_flush)->render()
            );
        }
        $this->render();
        if ($this->spot == $_GET['cut_region']) {
            $this->owner->template_flush = $_GET['cut_region'];
        }
        */
    }