56 lines
1.8 KiB
PHP
56 lines
1.8 KiB
PHP
<?php
|
|
/*+**********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
************************************************************************************/
|
|
|
|
require_once('modules/com_vtiger_workflow/VTEntityCache.inc');
|
|
require_once('modules/com_vtiger_workflow/VTWorkflowUtils.php');
|
|
require_once('modules/com_vtiger_workflow/VTSimpleTemplate.inc');
|
|
|
|
require_once('modules/SMSNotifier/SMSNotifier.php');
|
|
|
|
class VTSMSTask extends VTTask {
|
|
public $executeImmediately = true;
|
|
|
|
public function getFieldNames(){
|
|
return array('content', 'sms_recepient');
|
|
}
|
|
|
|
public function doTask($entity){
|
|
|
|
if(SMSNotifier::checkServer()) {
|
|
|
|
global $adb, $current_user,$log;
|
|
|
|
$util = new VTWorkflowUtils();
|
|
$admin = $util->adminUser();
|
|
$ws_id = $entity->getId();
|
|
$entityCache = new VTEntityCache($admin);
|
|
|
|
$et = new VTSimpleTemplate($this->sms_recepient);
|
|
$recepient = $et->render($entityCache, $ws_id);
|
|
$recepients = explode(',',$recepient);
|
|
|
|
$ct = new VTSimpleTemplate($this->content);
|
|
$content = $ct->render($entityCache, $ws_id);
|
|
$relatedCRMid = substr($ws_id, stripos($ws_id, 'x')+1);
|
|
|
|
$relatedModule = $entity->getModuleName();
|
|
|
|
/** Pickup only non-empty numbers */
|
|
$tonumbers = array();
|
|
foreach($recepients as $tonumber) {
|
|
if(!empty($tonumber)) $tonumbers[] = $tonumber;
|
|
}
|
|
|
|
SMSNotifier::sendsms($content, $tonumbers, $current_user->id, $relatedCRMid, $relatedModule);
|
|
}
|
|
|
|
}
|
|
}
|
|
?>
|