當前位置: 首頁>>代碼示例>>PHP>>正文


PHP tservices_helper::getOrderUrlHash方法代碼示例

本文整理匯總了PHP中tservices_helper::getOrderUrlHash方法的典型用法代碼示例。如果您正苦於以下問題:PHP tservices_helper::getOrderUrlHash方法的具體用法?PHP tservices_helper::getOrderUrlHash怎麽用?PHP tservices_helper::getOrderUrlHash使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在tservices_helper的用法示例。


在下文中一共展示了tservices_helper::getOrderUrlHash方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: run

 public function run()
 {
     $attachedfiles = new attachedfiles();
     $attachedfiles_session = $attachedfiles->getSession();
     //Хеш безопасности целосности параметров формы
     //сейчас используется для загрузчика файлов
     $param_hash = tservices_helper::getOrderUrlHash(array((int) $this->order_id, $attachedfiles_session), $this->uid);
     //собираем шаблон
     $this->render('t-service-order-messages-form', array('order_id' => $this->order_id, 'param_hash' => $param_hash, 'is_scroll' => $this->is_scroll, 'attachedfiles_session' => $attachedfiles_session));
 }
開發者ID:notUserDeveloper,項目名稱:fl-ru-damp,代碼行數:10,代碼來源:TServiceOrderMessagesForm.php

示例2: getUploadPath

 /**
  * Получить директорию для загружаемого файла.
  * 
  * @param type $order_id
  * @param type $sess
  * @param type $uid
  * @param type $hash
  *
  * @return bool
  */
 public static function getUploadPath($order_id, $sess, $uid, $hash)
 {
     require_once ABS_PATH . '/classes/tservices/tservices_helper.php';
     $_hash = tservices_helper::getOrderUrlHash(array($order_id, $sess), $uid);
     //Если проверка принадлежности по хешу неудалась
     //то пробуем получить через БД
     if ($hash !== $_hash) {
         require_once ABS_PATH . '/tu/models/TServiceOrderModel.php';
         $isMember = TServiceOrderModel::model()->isOrderMember($order_id, $uid);
         if (!$isMember) {
             return false;
         }
     }
     return sprintf(self::UPLOAD_FILE_PATH, '', $order_id);
 }
開發者ID:kapai69,項目名稱:fl-ru-damp,代碼行數:25,代碼來源:TServiceMsgModel.php

示例3: actionStatus

 /**
  * Смена статуса заказа.
  */
 public function actionStatus()
 {
     $params = empty($_POST) ? $_GET : $_POST;
     unset($params['action'], $params['hash']);
     $curhash = tservices_helper::getOrderUrlHash($params);
     $hash = __paramInit('string', 'hash', 'hash', null);
     if ($curhash !== $hash) {
         $this->redirect('/404.php');
     }
     $order_id = __paramInit('int', 'order_id', 'order_id', 0);
     $new_status = __paramInit('string', 'status', 'status', null);
     $order = $this->order_model->getCard($order_id, $this->uid);
     if (!$order) {
         $this->redirect('/404.php');
     }
     $this->order_model->changeStatus($order_id, $new_status, $this->is_emp);
     $url = tservices_helper::getOrderCardUrl($order_id);
     $this->redirect($url);
 }
開發者ID:kapai69,項目名稱:fl-ru-damp,代碼行數:22,代碼來源:TServiceOrderController.php


注:本文中的tservices_helper::getOrderUrlHash方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。