abstract class Presenter extends Control implements IPresenter

Presenter component represents a webpage instance. It converts Request to IResponse.

Constants

INVALID_LINK_SILENT

bad link handling Presenter::$invalidLinkMode

INVALID_LINK_WARNING

bad link handling Presenter::$invalidLinkMode

INVALID_LINK_EXCEPTION

bad link handling Presenter::$invalidLinkMode

internal SIGNAL_KEY

internal ACTION_KEY

internal FLASH_KEY

internal DEFAULT_ACTION

Properties

int $invalidLinkMode
array $onShutdown
bool $autoCanonicalize
bool $absoluteUrls
string $view
string $layout
Request read-only $request
array|null read-only $signal
string read-only $action
stdClass read-only $payload
bool read-only $ajax
Request read-only $lastCreatedRequest
SessionSection read-only $flashSession
SystemContainer|Container read-only $context
Application read-only $application
Session read-only $session
User read-only $user

Methods

__construct(Container $context = NULL)

No description

getRequest()

No description

Presenter|null
getPresenter($need = TRUE)

Returns self.

string
getUniqueId()

Returns a name that uniquely identifies component.

run(Request $request)

No description

void
startup()

No description

void
beforeRender()

Common render method.

void
afterRender()

Common render method.

void
shutdown($response)

No description

void
checkRequirements($element)

Checks authorization.

void
processSignal()

No description

array|null
getSignal()

Returns pair signal receiver and name.

bool
isSignalReceiver($component, $signal = NULL)

Checks if the signal receiver is the given one.

string
getAction($fullyQualified = FALSE)

Returns current action name.

void
changeAction($action)

Changes current action. Only alphanumeric characters are allowed.

string
getView()

Returns current view.

setView($view)

Changes current view. Any name is allowed.

string|false
getLayout()

Returns current layout name.

setLayout($layout)

Changes or disables layout.

void
sendTemplate()

No description

string
findLayoutTemplateFile()

Finds layout template file name.

array
formatLayoutTemplateFiles()

Formats layout template file names.

array
formatTemplateFiles()

Formats view template file names.

static string
formatActionMethod($action)

Formats action method name.

static string
formatRenderMethod($view)

Formats render view method name.

getPayload()

No description

bool
isAjax()

Is AJAX request?

void
sendPayload()

Sends AJAX payload to the output.

void
sendResponse(IResponse $response)

Sends response and terminates presenter.

void
terminate()

Correctly terminates presenter.

void
forward($destination, $args = array())

Forward to another presenter or action.

void
redirectUrl($url, $code = NULL)

Redirect to another URL and ends presenter execution.

redirectUri($url, $code = NULL) deprecated

No description

void
error($message = NULL, $code = Http\IResponse::S404_NOT_FOUND)

Throws HTTP error.

string
backlink()

Link to myself.

getLastCreatedRequest()

Returns the last created Request.

bool
getLastCreatedRequestFlag($flag)

Returns the last created Request flag.

void
canonicalize()

Conditional redirect to canonicalized URI.

void
lastModified($lastModified, $etag = NULL, $expire = NULL) deprecated

Attempts to cache the sent entity by its last modification date.

string
createRequest($component, $destination, array $args, $mode)

Request/URL factory.

string
handleInvalidLink(InvalidLinkException $e)

Invalid link handler. Descendant can override this method to change default behaviour.

string
storeRequest($expiration = '+ 10 minutes')

Stores current request to session.

void
restoreRequest($key)

Restores request from session.

static array
getPersistentComponents()

Returns array of persistent components.

void
saveGlobalState()

Permanently saves state information for all subcomponents to $this->globalState.

array
popGlobalParameters($id)

Pops parameters for specified component.

bool
hasFlashSession()

Checks if a flash session namespace exists.

SessionSection
getFlashSession()

Returns session namespace provided to pass temporary data between redirects.

void
injectPrimary(Container $context)

No description

SystemContainer|Container
getContext()

Gets the context.

getService($name) deprecated

No description

Request
getHttpRequest()

No description

Response
getHttpResponse()

No description

Context
getHttpContext()

No description

getApplication()

No description

Session|SessionSection
getSession($namespace = NULL)

No description

User
getUser()

No description

Details

at line 110
__construct(Container $context = NULL)

No description

Parameters

Container $context

at line 122
Request getRequest()

No description

Return Value

Request

at line 132
Presenter|null getPresenter($need = TRUE)

Returns self.

Parameters

$need

Return Value

Presenter|null

at line 142
string getUniqueId()

Returns a name that uniquely identifies component.

Return Value

string

at line 154
IResponse run(Request $request)

No description

Parameters

Request $request

Return Value

IResponse

at line 237
protected void startup()

No description

Return Value

void

at line 247
protected void beforeRender()

Common render method.

Return Value

void

at line 256
protected void afterRender()

Common render method.

Return Value

void

at line 265
protected void shutdown($response)

No description

Parameters

$response

Return Value

void

at line 274
void checkRequirements($element)

Checks authorization.

Parameters

$element

Return Value

void

at line 290
void processSignal()

No description

Return Value

void

Exceptions

BadSignalException

at line 316
array|null getSignal()

Returns pair signal receiver and name.

Return Value

array|null

at line 328
bool isSignalReceiver($component, $signal = NULL)

Checks if the signal receiver is the given one.

Parameters

$component
$signal

Return Value

bool

at line 357
string getAction($fullyQualified = FALSE)

Returns current action name.

Parameters

$fullyQualified

Return Value

string

at line 368
void changeAction($action)

Changes current action. Only alphanumeric characters are allowed.

Parameters

$action

Return Value

void

at line 384
string getView()

Returns current view.

Return Value

string

at line 395
Presenter setView($view)

Changes current view. Any name is allowed.

Parameters

$view

Return Value

Presenter

at line 406
string|false getLayout()

Returns current layout name.

Return Value

string|false

at line 417
Presenter setLayout($layout)

Changes or disables layout.

Parameters

$layout

Return Value

Presenter

at line 429
void sendTemplate()

No description

Return Value

void

Exceptions

BadRequestException
AbortException

at line 460
string findLayoutTemplateFile()

Finds layout template file name.

Return Value

string

at line 484
array formatLayoutTemplateFiles()

Formats layout template file names.

Return Value

array

at line 510
array formatTemplateFiles()

Formats view template file names.

Return Value

array

at line 530
static protected string formatActionMethod($action)

Formats action method name.

Parameters

$action

Return Value

string

at line 541
static protected string formatRenderMethod($view)

Formats render view method name.

Parameters

$view

Return Value

string

at line 553
stdClass getPayload()

No description

Return Value

stdClass

at line 563
bool isAjax()

Is AJAX request?

Return Value

bool

at line 577
void sendPayload()

Sends AJAX payload to the output.

Return Value

void

Exceptions

AbortException

at line 591
void sendResponse(IResponse $response)

Sends response and terminates presenter.

Parameters

IResponse $response

Return Value

void

Exceptions

AbortException

at line 603
void terminate()

Correctly terminates presenter.

Return Value

void

Exceptions

AbortException

at line 620
void forward($destination, $args = array())

Forward to another presenter or action.

Parameters

$destination
$args

Return Value

void

Exceptions

AbortException

at line 638
void redirectUrl($url, $code = NULL)

Redirect to another URL and ends presenter execution.

Parameters

$url
$code

Return Value

void

Exceptions

AbortException

at line 653
redirectUri($url, $code = NULL) deprecated

deprecated

No description

Parameters

$url
$code

at line 667
void error($message = NULL, $code = Http\IResponse::S404_NOT_FOUND)

Throws HTTP error.

Parameters

$message
$code

Return Value

void

Exceptions

BadRequestException

Link to myself.

Return Value

string

at line 687
Request getLastCreatedRequest()

Returns the last created Request.

Return Value

Request

at line 698
bool getLastCreatedRequestFlag($flag)

Returns the last created Request flag.

Parameters

$flag

Return Value

bool

at line 709
void canonicalize()

Conditional redirect to canonicalized URI.

Return Value

void

Exceptions

AbortException

at line 731
void lastModified($lastModified, $etag = NULL, $expire = NULL) deprecated

deprecated

Attempts to cache the sent entity by its last modification date.

Parameters

$lastModified
$etag
$expire

Return Value

void

Exceptions

AbortException

at line 753
protected string createRequest($component, $destination, array $args, $mode)

internal  
 

Request/URL factory.

Parameters

$component
$destination
array $args
$mode

Return Value

string URL

Exceptions

InvalidLinkException

Invalid link handler. Descendant can override this method to change default behaviour.

Parameters

InvalidLinkException $e

Return Value

string

Exceptions

InvalidLinkException

at line 1057
string storeRequest($expiration = '+ 10 minutes')

Stores current request to session.

Parameters

$expiration

Return Value

string key

at line 1075
void restoreRequest($key)

Restores request from session.

Parameters

$key

Return Value

void

at line 1099
static array getPersistentComponents()

Returns array of persistent components.

This default implementation detects components by class-level annotation @persistent(cmp1, cmp2).

Return Value

array

at line 1178
protected void saveGlobalState()

Permanently saves state information for all subcomponents to $this->globalState.

Return Value

void

at line 1243
array popGlobalParameters($id)

Pops parameters for specified component.

Parameters

$id

Return Value

array

at line 1263
bool hasFlashSession()

Checks if a flash session namespace exists.

Return Value

bool

at line 1274
SessionSection getFlashSession()

Returns session namespace provided to pass temporary data between redirects.

Return Value

SessionSection

at line 1289
void injectPrimary(Container $context)

No description

Parameters

Container $context

Return Value

void

at line 1299
SystemContainer|Container getContext()

Gets the context.

Return Value

SystemContainer|Container

at line 1308
getService($name) deprecated

deprecated

No description

Parameters

$name

at line 1317
protected Request getHttpRequest()

No description

Return Value

Request

at line 1326
protected Response getHttpResponse()

No description

Return Value

Response

at line 1335
protected Context getHttpContext()

No description

Return Value

Context

at line 1344
Application getApplication()

No description

Return Value

Application

at line 1354
Session|SessionSection getSession($namespace = NULL)

No description

Parameters

$namespace

Return Value

Session|SessionSection

at line 1364
User getUser()

No description

Return Value

User