Graph is better table added
[civicrm-core.git] / CRM / Mailing / BAO / Recipients.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Mailing_BAO_Recipients extends CRM_Mailing_DAO_Recipients {
36
37 /**
38 * class constructor
39 */
40 function __construct() {
41 parent::__construct();
42 }
43
e0ef6999
EM
44 /**
45 * @param $mailingID
46 *
47 * @return null|string
48 */
6a488035
TO
49 static function mailingSize($mailingID) {
50 $sql = "
51SELECT count(*) as count
52FROM civicrm_mailing_recipients
53WHERE mailing_id = %1
54";
55 $params = array(1 => array($mailingID, 'Integer'));
56 return CRM_Core_DAO::singleValueQuery($sql, $params);
57 }
58
e0ef6999
EM
59 /**
60 * @param $mailingID
61 * @param null $offset
62 * @param null $limit
63 *
64 * @return Object
65 */
6a488035
TO
66 static function mailingQuery($mailingID,
67 $offset = NULL, $limit = NULL
68 ) {
69 $limitString = NULL;
70 if ($limit && $offset !== NULL) {
bf00d1b6 71 $offset = CRM_Utils_Type::escape($offset, 'Int');
dd3a4117 72 $limit = CRM_Utils_Type::escape($limit, 'Int');
bf00d1b6 73
6a488035
TO
74 $limitString = "LIMIT $offset, $limit";
75 }
76
77 $sql = "
78SELECT contact_id, email_id, phone_id
79FROM civicrm_mailing_recipients
80WHERE mailing_id = %1
81 $limitString
82";
83 $params = array(1 => array($mailingID, 'Integer'));
84
85 return CRM_Core_DAO::executeQuery($sql, $params);
86 }
87}
88