dolibarr 21.0.0-alpha
|
Public Member Functions | |
initController () | |
Init controller. | |
addControllerDefinition ($controller, $path, $className) | |
Add controller definition. | |
setControllerFound () | |
Set controller found. | |
getRootUrl ($controller='', $moreParams='', $addToken=true) | |
Get root url. | |
getControllerUrl ($controller='', $moreParams='', $addToken=true) | |
Get controller url according to context. | |
userIsLog () | |
Check if user is logged. | |
menuIsActive ($menuName) | |
Is menu enabled ? | |
setError ($errors) | |
Set errors. | |
getErrors () | |
Get errors. | |
clearErrors () | |
Clear errors. | |
setEventMessage ($mesgs, $style='mesgs') | |
Set event messages in dol_events session object. | |
setEventMessages ($mesg, $mesgs, $style='mesgs') | |
Set event messages in dol_events session object. | |
loadEventMessages () | |
Load event messages. | |
clearEventMessages () | |
Clear event messages. | |
newToken () | |
Return the value of token currently saved into session with name 'newToken'. | |
getUrlToken () | |
Get token url. | |
getFormToken () | |
Get token input for form. | |
getThirdPartyAccountFromLogin ($login, $pass) | |
Try to find the third-party account id from. | |
Static Public Member Functions | |
static | getInstance () |
Singleton method to create one instance of this object. | |
static | getRootConfigUrl () |
Get WebPortal root url. | |
static | getPublicControllerUrl ($controller='', $moreParams='', $Tparams=array()) |
Generate public controller URL Used for external link (like email or web page) so remove token and contextual behavior associate with current user. | |
static | urlOrigin ($withRequestUri=true, $use_forwarded_host=false) |
Url origin. | |
Public Attributes | |
$appliName | |
The application name. | |
$object | |
Current object of page. | |
Protected Member Functions | |
generateNewToken () | |
Generate new token. | |
Private Member Functions | |
__construct () | |
Constructor. | |
Class Context.
Definition at line 32 of file context.class.php.
|
private |
Constructor.
Definition at line 180 of file context.class.php.
References getControllerUrl(), getDolGlobalString(), GETPOST(), getRootConfigUrl(), and initController().
Context::addControllerDefinition | ( | $controller, | |
$path, | |||
$className ) |
Add controller definition.
string | $controller | Name |
string | $path | Path |
string | $className | Class name |
Definition at line 274 of file context.class.php.
References setError().
Referenced by initController().
Context::clearErrors | ( | ) |
Context::clearEventMessages | ( | ) |
|
protected |
Generate new token.
Definition at line 627 of file context.class.php.
References dol_hash(), and newToken().
Context::getControllerUrl | ( | $controller = '', | |
$moreParams = '', | |||
$addToken = true ) |
Get controller url according to context.
string | $controller | Controller name |
string | array | $moreParams | More parameters |
bool | $addToken | Add token hash only if controller is set |
Definition at line 346 of file context.class.php.
References getPublicControllerUrl(), and newToken().
Referenced by __construct(), and getRootUrl().
Context::getErrors | ( | ) |
Context::getFormToken | ( | ) |
Get token input for form.
Definition at line 667 of file context.class.php.
References newToken().
|
static |
Singleton method to create one instance of this object.
Definition at line 219 of file context.class.php.
Referenced by DefaultController\action(), DocumentController\action(), InvoiceListController\action(), LoginController\action(), MemberCardController\action(), OrderListController\action(), PartnershipCardController\action(), PropalListController\action(), Controller\checkAccess(), LoginController\checkAccess(), MemberCardController\checkAccess(), PartnershipCardController\checkAccess(), Controller\display(), DefaultController\display(), DocumentController\display(), InvoiceListController\display(), LoginController\display(), MemberCardController\display(), OrderListController\display(), PartnershipCardController\display(), PropalListController\display(), FormCardWebPortal\doActions(), FormWebPortal\getDocumentsLink(), getNavItem(), Controller\hookDoAction(), Controller\hookPrintPageView(), DocumentController\init(), and Controller\loadTemplate().
|
static |
Generate public controller URL Used for external link (like email or web page) so remove token and contextual behavior associate with current user.
string | $controller | Controller |
string | array | $moreParams | More parameters |
array | $Tparams | Parameters |
Definition at line 377 of file context.class.php.
References getRootConfigUrl().
Referenced by getControllerUrl().
|
static |
Get WebPortal root url.
Definition at line 307 of file context.class.php.
References dol_buildpath(), and getDolGlobalString().
Referenced by __construct(), and getPublicControllerUrl().
Context::getRootUrl | ( | $controller = '', | |
$moreParams = '', | |||
$addToken = true ) |
Get root url.
string | $controller | Controller name |
string | array | $moreParams | More parameters |
bool | $addToken | Add token hash only if $controller is set |
Definition at line 333 of file context.class.php.
References getControllerUrl().
Context::getThirdPartyAccountFromLogin | ( | $login, | |
$pass ) |
Try to find the third-party account id from.
string | $login | Login |
string | $pass | Password |
Definition at line 684 of file context.class.php.
References $id, dol_syslog(), dol_verifyHash(), getDolGlobalString(), and getEntity().
Context::getUrlToken | ( | ) |
Get token url.
Definition at line 652 of file context.class.php.
References newToken().
Context::initController | ( | ) |
Init controller.
Definition at line 233 of file context.class.php.
References addControllerDefinition(), and setControllerFound().
Referenced by __construct().
Context::loadEventMessages | ( | ) |
Context::menuIsActive | ( | $menuName | ) |
Is menu enabled ?
string | $menuName | Menu name |
Definition at line 472 of file context.class.php.
Context::newToken | ( | ) |
Return the value of token currently saved into session with name 'newToken'.
This token must be sent by any POST as it will be used by next page for comparison with value in session. This token depends on controller
Definition at line 617 of file context.class.php.
References newToken().
Referenced by generateNewToken(), getControllerUrl(), getFormToken(), getUrlToken(), and newToken().
Context::setControllerFound | ( | ) |
Set controller found.
Definition at line 297 of file context.class.php.
Referenced by initController().
Context::setError | ( | $errors | ) |
Set errors.
string | string[] | $errors | Errors |
Definition at line 483 of file context.class.php.
Referenced by addControllerDefinition().
Context::setEventMessage | ( | $mesgs, | |
$style = 'mesgs' ) |
Set event messages in dol_events session object.
Will be output by calling dol_htmloutput_events. Note: Calling dol_htmloutput_events is done into pages by standard llxFooter() function.
string | string[] | $mesgs | Message string or array |
string | $style | Which style to use ('mesgs' by default, 'warnings', 'errors') |
Definition at line 532 of file context.class.php.
Referenced by setEventMessages().
Context::setEventMessages | ( | $mesg, | |
$mesgs, | |||
$style = 'mesgs' ) |
Set event messages in dol_events session object.
Will be output by calling dol_htmloutput_events. Note: Calling dol_htmloutput_events is done into pages by standard llxFooter() function.
string | $mesg | Message string |
string[] | null | $mesgs | Message array |
string | $style | Which style to use ('mesgs' by default, 'warnings', 'errors') |
Definition at line 565 of file context.class.php.
References dol_print_error(), dol_syslog(), and setEventMessage().
|
static |
Url origin.
bool | $withRequestUri | With request URI |
bool | $use_forwarded_host | Use formatted host |
Definition at line 431 of file context.class.php.
Context::userIsLog | ( | ) |