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


PHP Social::wp39_create_nonce方法代码示例

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


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

示例1: action_authorize

 /**
  * Sets the nonce cookie then redirects to Sopresto.
  *
  * @return void
  */
 public function action_authorize()
 {
     $proxy = apply_filters('social_authorize_url', Social::$api_url . $this->request->query('key') . '/authorize/', $this->request->query('key'));
     if (strpos($proxy, Social::$api_url) !== false) {
         $salt = $this->auth_nonce_salt();
         $id = Social::wp39_create_nonce($this->auth_nonce_key($salt));
         $url = home_url('index.php');
         $args = array('social_controller' => 'auth', 'social_action' => 'authorized', 'salt' => $salt);
         if (is_admin()) {
             $args['is_admin'] = 'true';
             $args['user_id'] = get_current_user_id();
             if (defined('IS_PROFILE_PAGE')) {
                 $args['personal'] = 'true';
                 $url = add_query_arg('personal', 'true', $url);
             }
         } else {
             $post_id = $this->request->query('post_id');
             if ($post_id !== null) {
                 $args['p'] = $post_id;
             }
             // Set the nonce cookie
             setcookie('social_auth_nonce', $id, 0, '/');
         }
         $proxy = add_query_arg(array('v' => '2', 'id' => $id, 'response_url' => urlencode(add_query_arg($args, $url))), $proxy);
         $proxy = apply_filters('social_proxy_url', $proxy);
     }
     nocache_headers();
     Social::log('Authorizing with URL: ' . $proxy);
     wp_redirect($proxy);
     exit;
 }
开发者ID:sekane81,项目名称:ratoninquietoweb,代码行数:36,代码来源:auth.php

示例2: wp39_nonce_url

 /**
  * Retrieve URL with nonce added to URL query using Social::wp39_create_nonce()
  * instead of Social::wp_create_nonce()
  *
  * @param string $actionurl URL to add nonce action.
  * @param string $action    Optional. Nonce action name. Default -1.
  * @param string $name      Optional. Nonce name. Default '_wpnonce'.
  * @return string Escaped URL with nonce action added.
  */
 public static function wp39_nonce_url($actionurl, $action = -1, $name = '_wpnonce')
 {
     $actionurl = str_replace('&', '&', $actionurl);
     return esc_html(add_query_arg($name, Social::wp39_create_nonce($action), $actionurl));
 }
开发者ID:sekane81,项目名称:ratoninquietoweb,代码行数:14,代码来源:social.php


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