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


PHP sms::updateTagGroup方法代碼示例

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


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

示例1: __construct

 public function __construct($input)
 {
     parent::__construct($input);
     if ($this->getValidTags() == false) {
         debug::output("There are no tags pending activation against this phone number: {$this->phone_number}");
         $this->send['body'] = 'There are no tags pending activation against this phone number. For support call customer services on ' . config::get('customer_services');
         parent::sendSMS();
     } else {
         foreach ($this->tags as $tag => $array) {
             debug::output("Checking tag... {$tag} ...");
             $okay = $this->tagValidation($tag);
             if ($okay == false) {
                 continue;
             }
             $this->valid[$tag] = $array;
         }
         //foreach tag
         if (!empty($this->errors)) {
             parent::logErrors();
             parent::sendErrors();
         }
         //if errors
         if (!empty($this->valid)) {
             $this->customer = new customer($this->logDB);
             debug::output("Create customer account...");
             $result = $this->customer->createCustomerAccount($this->phone_number);
             if ($result['success'] == false) {
                 debug::output($result['message']);
                 $this->errors[] = $result['message'];
             } else {
                 //iterate through each tag and register each tag
                 foreach ($this->valid as $tag => $array) {
                     debug::output("Register tag {$tag}");
                     $this->registerTag($tag);
                     parent::updateTagGroup($tag);
                     $this->logDB->unLogValidTags($tag);
                     $registerd[$tag]['message'] = 'Tag ' . $tag . ' activated successfully. ';
                     $registerd[$tag]['tag_type'] = $array['tag_type'];
                 }
                 //foreach tag
             }
             if (!empty($this->errors)) {
                 parent::sendErrors();
                 parent::logErrors();
             }
             //if errors
             /*
              * send as few sms as possible each time
              */
             if (!empty($registerd)) {
                 foreach ($registerd as $tag => $array) {
                     debug::output($message);
                     $activation_m .= $array['message'];
                     //$array['tag_type']; use type to determine premium or free sms
                 }
                 //foreach valid
                 $this->send['body'] = $activation_m . $result['message'];
                 $this->sendSMS();
             }
             //if not empty
         }
         //else
     }
     //else
 }
開發者ID:Git-Host,項目名稱:sms,代碼行數:65,代碼來源:activate.class.php

示例2: __construct

 public function __construct($input)
 {
     $input['body'] = str_ireplace('RENEW', '', $input['body']);
     parent::__construct($input);
     if (parent::checkHasContents($this->fInput['body']) == true) {
         parent::getTags();
         foreach ($this->tags as $tag) {
             debug::output("\n\nChecking tag... {$tag} ...\n\n");
             $okay = $this->inputValidation($tag);
             if ($okay == false) {
                 continue;
             }
             $this->valid[$tag]['type'] = $tag;
             parent::formatTagArray($tag);
         }
         //foreach tag
         if (!empty($this->errors)) {
             parent::logErrors();
             parent::sendErrors();
         }
         //if errors
         if (!empty($this->valid)) {
             $customer = new customer($this->logDB);
             $customer->checkAccountExists($this->phone_number);
             foreach ($this->valid as $tag => $array) {
                 debug::output("Renew tag {$tag}");
                 if ($this->updateTagRegistered($tag, $customer->customer_id)) {
                     parent::updateTagGroup($tag);
                     //paper & plastic
                     //with & w/out email address
                     //is paper going to be renewed. Confirm.
                     $cost = parent::getTagCost($array['type'], true);
                     if (empty($customer->customer['email'])) {
                         $renewed[$tag] = "{$tag} renewed.  Text cost $cost} each plus standard network rate. Go to example.com to update your email address with username {$customer->customer['username']}. Text PIN STOP to cancel";
                     } else {
                         $renewed[$tag] = "{$tag} renewed.  Text cost $cost} each plus standard network rate. Manage your account at example.com with email {$customer->customer['email']}. Text PIN STOP to cancel";
                     }
                 }
                 //tag registered
             }
             //foreach valid tag
         }
         //if valid tags
         if (!empty($this->errors)) {
             parent::logErrors();
             parent::sendErrors();
         }
         //if errors
         if (!empty($renewed)) {
             foreach ($renewed as $tag => $message) {
                 debug::output($message);
                 $this->send['body'] = $message;
                 //$array['tag_type']; use type to determine �50 or �                    $this->sendSMS();
             }
             //foreach valid
         }
         //if not empty
     } else {
         //no tag provided
     }
 }
開發者ID:Git-Host,項目名稱:sms,代碼行數:61,代碼來源:renew.class.php


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