本文整理汇总了PHP中sms::getTags方法的典型用法代码示例。如果您正苦于以下问题:PHP sms::getTags方法的具体用法?PHP sms::getTags怎么用?PHP sms::getTags使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sms
的用法示例。
在下文中一共展示了sms::getTags方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($input)
{
parent::__construct($input);
if (parent::checkHasContents($this->fInput['body']) == true) {
parent::getTags();
foreach ($this->tags as $tag => $group) {
debug::output("\n\nChecking tag... {$tag} ...\n\n");
$okay = $this->inputValidation($tag);
if ($okay == false) {
continue;
}
parent::formatTagArray($tag);
}
//foreach tag
if (!empty($this->errors)) {
parent::logErrors();
parent::sendErrors();
}
//if errors
if (!empty($this->valid)) {
foreach ($this->valid as $tag => $array) {
debug::output("Checking lost bag report for tag {$tag}");
$lostBag = $this->getLostBagLocation($tag);
$this->send['body'] = $this->lostBagMessage($lostBag[0], $tag);
parent::sendSMS();
}
//foreach valid tag
}
//if valid tags
} else {
//no pin number supplied
$lostBag = $this->getLostBagLocation();
if (is_array($lostBag)) {
foreach ($lostBag as $key => $array) {
$this->send['body'] = $this->lostBagMessage($array);
parent::sendSMS();
}
//foreach lost tag
} else {
$this->send['body'] = 'There are no reports available for your mobile number.';
parent::sendSMS();
}
}
//else
}
示例2: __construct
public function __construct($input)
{
parent::__construct($input);
/*
* Make sure tag is not empty
*/
if (parent::checkHasContents($this->fInput['body']) == true) {
parent::getTags();
foreach ($this->tags as $tag => $group) {
debug::output("\n\nChecking tag... {$tag} ...\n\n");
$okay = $this->inputValidation($tag);
if ($okay == false) {
continue;
}
parent::formatTagArray($tag);
}
//foreach tag
if (!empty($this->errors)) {
parent::logErrors();
parent::sendErrors();
}
//if errors
if (!empty($this->valid)) {
foreach ($this->valid as $tag => $array) {
debug::output("Registering tag {$tag}");
$this->logDB->logValidTags($tag, $this->phone_number);
if ($array['type'] == 'PAPER') {
$this->send['body'] = "Tag {$tag} ready to be activated text PIN ACTIVATE to proceed. Tag valid for 3 months. Text cost £{$array['cost']} each plus standard network rate. Text PIN STOP to cancel.";
} else {
//plastic
$this->send['body'] = "Tag {$tag} ready to be activated text PIN ACTIVATE to proceed. Tag valid for 1 year. Text cost standard network rate each. Text PIN STOP to cancel.";
}
parent::sendSMS();
}
//foreach valid tag
}
//if valid tags
}
//not empty
}
示例3: __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
}
}