Merge pull request #17736 from civicrm/5.27
[civicrm-core.git] / ext / flexmailer / src / ClickTracker / ClickTrackerInterface.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11 namespace Civi\FlexMailer\ClickTracker;
12
13 interface ClickTrackerInterface {
14
15 /**
16 * @param string $msg
17 * @param int $mailing_id
18 * @param int|string $queue_id
19 * @return mixed
20 */
21 public function filterContent($msg, $mailing_id, $queue_id);
22
23 // /**
24 // * @param string $url
25 // * @param int $mailing_id
26 // * @param int|string $queue_id
27 // * @return mixed
28 // */
29 // public function filterUrl($url, $mailing_id, $queue_id);
30
31 }