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


PHP Converter::buildUrl方法代码示例

本文整理汇总了PHP中XLite\Core\Converter::buildUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP Converter::buildUrl方法的具体用法?PHP Converter::buildUrl怎么用?PHP Converter::buildUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在XLite\Core\Converter的用法示例。


在下文中一共展示了Converter::buildUrl方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: addBaseLocation

 /**
  * Add part to the location nodes list
  *
  * @return void
  */
 protected function addBaseLocation()
 {
     $this->addLocationNode('Roles', \XLite\Core\Converter::buildUrl('roles'));
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:9,代码来源:Role.php

示例2: getCreateURL

 /**
  * Get create entity URL
  *
  * @return string
  */
 protected function getCreateURL()
 {
     return \XLite\Core\Converter::buildUrl('product', '', array('page' => 'tabs', 'tab_id' => 0, 'product_id' => \XLite\Core\Request::getInstance()->product_id));
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:9,代码来源:Tab.php

示例3: getCreateURL

 /**
  * Get create entity URL
  *
  * @return string
  */
 protected function getCreateURL()
 {
     return \XLite\Core\Converter::buildUrl('category', null, array('parent' => $this->getCategory()->getCategoryId()));
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:9,代码来源:Category.php

示例4: getCreateURL

 /**
  * Get create entity URL
  *
  * @return string
  */
 protected function getCreateURL()
 {
     return \XLite\Core\Converter::buildUrl('page');
 }
开发者ID:kingsj,项目名称:core,代码行数:9,代码来源:Page.php

示例5: getCreateURL

 /**
  * Get create entity URL
  *
  * @return string
  */
 protected function getCreateURL()
 {
     return \XLite\Core\Converter::buildUrl('profile', null, array('mode' => 'register'));
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:9,代码来源:Profile.php

示例6: getCallbackUrl

 /**
  * Get callback URL
  *
  * @param string $xpcBackReference Reference between X-Payments payment and X-Cart transaction
  * @param bool $forZeroAuth Call back for zero auth or regular order
  *
  * @return string
  */
 public static function getCallbackUrl($xpcBackReference)
 {
     if (!$forZeroAuth) {
         // Order callback
         $url = \XLite\Core\Converter::buildUrl('callback', 'callback', array('xpcBackReference' => $xpcBackReference), \XLite::getCustomerScript());
     } else {
         // Add new card callback
         $url = \XLite\Core\Converter::buildUrl('callback', 'callback', array('xpcBackReference' => $xpcBackReference, 'for_zero_auth' => '1'), \XLite::getCustomerScript());
     }
     return \XLite::getInstance()->getShopUrl($url);
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:19,代码来源:XPaymentsClient.php

示例7: addBaseLocation

 /**
  * Add part to the location nodes list
  *
  * @return void
  */
 protected function addBaseLocation()
 {
     $this->addLocationNode('Promotions', \XLite\Core\Converter::buildUrl('promotions'));
     $this->addLocationNode('Coupons', \XLite\Core\Converter::buildUrl('promotions', '', array('page' => \XLite\Controller\Admin\Promotions::PAGE_COUPONS)));
 }
开发者ID:kewaunited,项目名称:xcart,代码行数:10,代码来源:Coupon.php

示例8: getRediectCode

 /**
  * JS code to redirect back to saved cards page
  *
  * @return string 
  */
 protected function getRediectCode(\XLite\Model\Profile $profile)
 {
     $url = \XLite::getInstance()->getShopUrl(\XLite\Core\Converter::buildUrl('saved_cards', '', array('profile_id' => $profile->getProfileId()), $profile->getPendingZeroAuthInterface()));
     return '<script type="text/javascript">' . 'window.parent.location = "' . $url . '";' . '</script>';
 }
开发者ID:kewaunited,项目名称:xcart,代码行数:10,代码来源:ZeroAuth.php


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