PluginProbe ʕ •ᴥ•ʔ
Meta pixel for WordPress / 3.0.8
Meta pixel for WordPress v3.0.8
trunk 1.7.16 1.7.17 1.7.18 1.7.19 1.7.20 1.7.21 1.7.22 1.7.23 1.7.24 1.7.25 1.8.0 2.0.0 2.0.1 2.0.2 2.1.0 2.2.0 2.2.1 2.2.2 3.0.0 3.0.1 3.0.10 3.0.11 3.0.12 3.0.13 3.0.14 3.0.15 3.0.16 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 5.0.0 5.0.1 5.1.0
official-facebook-pixel / core / AAMSettingsFields.php
official-facebook-pixel / core Last commit date
AAMFieldsExtractor.php 3 years ago AAMSettingsFields.php 3 years ago EventIdGenerator.php 3 years ago FacebookPixel.php 3 years ago FacebookPluginConfig.php 3 years ago FacebookPluginUtils.php 3 years ago FacebookServerSideEvent.php 3 years ago FacebookWordpressOpenBridge.php 3 years ago FacebookWordpressOptions.php 3 years ago FacebookWordpressPixelInjection.php 3 years ago FacebookWordpressSettingsPage.php 3 years ago FacebookWordpressSettingsRecorder.php 3 years ago PixelRenderer.php 3 years ago ServerEventAsyncTask.php 3 years ago ServerEventFactory.php 3 years ago
AAMSettingsFields.php
47 lines
1 <?php
2 /*
3 * Copyright (C) 2017-present, Meta, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14 namespace FacebookPixelPlugin\Core;
15
16 /**
17 * Class that contains the keys used to identify each field in AAMSettings
18 */
19 abstract class AAMSettingsFields{
20 const EMAIL = "em";
21 const FIRST_NAME = "fn";
22 const LAST_NAME = "ln";
23 const GENDER = "ge";
24 const PHONE = "ph";
25 const CITY = "ct";
26 const STATE = "st";
27 const ZIP_CODE = "zp";
28 const DATE_OF_BIRTH = "db";
29 const COUNTRY = "country";
30 const EXTERNAL_ID = "external_id";
31 public static function getAllFields(){
32 return array(
33 self::EMAIL,
34 self::FIRST_NAME,
35 self::LAST_NAME,
36 self::GENDER,
37 self::PHONE,
38 self::CITY,
39 self::STATE,
40 self::ZIP_CODE,
41 self::DATE_OF_BIRTH,
42 self::COUNTRY,
43 self::EXTERNAL_ID,
44 );
45 }
46 }
47