本文整理汇总了PHP中FormField::Link方法的典型用法代码示例。如果您正苦于以下问题:PHP FormField::Link方法的具体用法?PHP FormField::Link怎么用?PHP FormField::Link使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormField
的用法示例。
在下文中一共展示了FormField::Link方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Link
function Link($action = null)
{
if ($this->customLink) {
return Director::baseURL() . 'ObjectSelectorField_Controller/find/?sourceObject=' . $this->sourceObject . '&displayField=' . $this->getDisplayFieldOptions() . '&multi=' . $this->hasMultiSortOptions();
}
return parent::Link($action);
}
示例2: Link
public function Link($action = null, $id = null)
{
$link = parent::Link($action);
if ($id) {
$link = Controller::join_links($link, $id);
}
return $link;
}
示例3: Link
public function Link($action = null, $id = null)
{
$cModField = ContentModuleField::curr();
$link = '';
if ($cModField) {
$link = $cModField->Link('modulefield');
$query = '';
if (stripos($link, '?') !== false) {
$parts = explode('?', $link);
$link = $parts[0];
$query = '?' . $parts[1];
}
$link = Controller::join_links($link, $this->getName(), $action, $id, $query);
} else {
$link = parent::Link($action);
}
return $link;
}
示例4: Link
/**
* Overloaded to automatically add security token.
*
* @param String $action
* @return String
*/
function Link($action = null)
{
$form = $this->getForm();
if ($form) {
$token = $form->getSecurityToken();
$parentUrlParts = parse_url(parent::Link($action));
$queryPart = isset($parentUrlParts['query']) ? '?' . $parentUrlParts['query'] : null;
// Ensure that URL actions not routed through Form->httpSubmission() are protected against CSRF attacks.
if ($form->securityTokenEnabled()) {
$queryPart = $token->addtoUrl($queryPart);
}
return Controller::join_links($parentUrlParts['path'], $action, $queryPart);
} else {
// allow for instanciation of this FormField outside of a controller/form
// context (e.g. for unit tests)
return false;
}
}