当前位置: 首页>>代码示例>>PHP>>正文


PHP FormField::Link方法代码示例

本文整理汇总了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);
 }
开发者ID:helpfulrobot,项目名称:silverstripers-silverstripe-postmarked,代码行数:7,代码来源:ObjectSelectorField.php

示例2: Link

 public function Link($action = null, $id = null)
 {
     $link = parent::Link($action);
     if ($id) {
         $link = Controller::join_links($link, $id);
     }
     return $link;
 }
开发者ID:helpfulrobot,项目名称:burnbright-silverstripe-listeditor,代码行数:8,代码来源:ListEditField.php

示例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;
 }
开发者ID:webtorque7,项目名称:inpage-modules,代码行数:18,代码来源:ContentModuleRelationshipEditor.php

示例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;
     }
 }
开发者ID:SustainableCoastlines,项目名称:loveyourwater,代码行数:24,代码来源:TableListField.php


注:本文中的FormField::Link方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。