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


PHP CRM_Mailing_BAO_MailingJob::fetch方法代码示例

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


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

示例1: runJobs_pre

 /**
  * before we run jobs, we need to split the jobs
  * @param int $offset
  * @param null $mode
  */
 public static function runJobs_pre($offset = 200, $mode = NULL)
 {
     $job = new CRM_Mailing_BAO_MailingJob();
     $jobTable = CRM_Mailing_DAO_MailingJob::getTableName();
     $mailingTable = CRM_Mailing_DAO_Mailing::getTableName();
     $currentTime = date('YmdHis');
     $mailingACL = CRM_Mailing_BAO_Mailing::mailingACL('m');
     $workflowClause = CRM_Mailing_BAO_MailingJob::workflowClause();
     $domainID = CRM_Core_Config::domainID();
     $modeClause = 'AND m.sms_provider_id IS NULL';
     if ($mode == 'sms') {
         $modeClause = 'AND m.sms_provider_id IS NOT NULL';
     }
     // Select all the mailing jobs that are created from
     // when the mailing is submitted or scheduled.
     $query = "\n    SELECT   j.*\n      FROM   {$jobTable}     j,\n         {$mailingTable} m\n     WHERE   m.id = j.mailing_id AND m.domain_id = {$domainID}\n                 {$workflowClause}\n                 {$modeClause}\n       AND   j.is_test = 0\n       AND   ( ( j.start_date IS null\n       AND       j.scheduled_date <= {$currentTime}\n       AND       j.status = 'Scheduled'\n       AND       j.end_date IS null ) )\n       AND ((j.job_type is NULL) OR (j.job_type <> 'child'))\n    ORDER BY j.scheduled_date,\n         j.start_date";
     $job->query($query);
     // For each of the "Parent Jobs" we find, we split them into
     // X Number of child jobs
     while ($job->fetch()) {
         // still use job level lock for each child job
         $lockName = "civimail.job.{$job->id}";
         $lock = new CRM_Core_Lock($lockName);
         if (!$lock->isAcquired()) {
             continue;
         }
         // Re-fetch the job status in case things
         // changed between the first query and now
         // to avoid race conditions
         $job->status = CRM_Core_DAO::getFieldValue('CRM_Mailing_DAO_MailingJob', $job->id, 'status', 'id', TRUE);
         if ($job->status != 'Scheduled') {
             $lock->release();
             continue;
         }
         $job->split_job($offset);
         // update the status of the parent job
         $transaction = new CRM_Core_Transaction();
         $saveJob = new CRM_Mailing_DAO_MailingJob();
         $saveJob->id = $job->id;
         $saveJob->start_date = date('YmdHis');
         $saveJob->status = 'Running';
         $saveJob->save();
         $transaction->commit();
         // Release the job lock
         $lock->release();
     }
 }
开发者ID:vakeesan26,项目名称:civicrm-core,代码行数:52,代码来源:MailingJob.php

示例2: getMailingJobs

 private static function getMailingJobs($params)
 {
     if (is_array(static::$jobs)) {
         return static::$jobs;
     }
     static::$jobs = array();
     if (empty($params['crm_mailing_id'])) {
         return static::$jobs;
     }
     $jobBao = new CRM_Mailing_BAO_MailingJob();
     // This needs to be done as there can only be one query per DAO (see docs for reset()) - without this, the DAO
     // object was keeping residual data from previous operations elsewhere on the same DAO, making the below operations
     // unpredictable and fail
     $jobBao->reset();
     // This is needed as the reset() above clears the query completely
     $jobBao->selectAdd('*');
     $jobBao->mailing_id = $params['crm_mailing_id'];
     $jobBao->is_test = 0;
     if ($jobBao->find()) {
         while ($jobBao->fetch()) {
             static::$jobs[] = $jobBao->toArray();
         }
     }
     $jobBao->free();
     return static::$jobs;
 }
开发者ID:jaapjansma,项目名称:uk.co.compucorp.civicrm.simplemail,代码行数:26,代码来源:SimpleMail.php


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