1: <?php
2: namespace Ctct\Components\Activities;
3:
4: use Ctct\Components\Component;
5:
6: 7: 8: 9: 10: 11: 12:
13: class ExportContacts extends Component
14: {
15: public $file_type = "CSV";
16: public $sort_by = "EMAIL_ADDRESS";
17: public $export_date_added = true;
18: public $export_added_by = true;
19: public $lists = array();
20: public $column_names = array("Email Address", "First Name", "Last Name");
21:
22: 23: 24: 25: 26:
27: public function __construct(Array $lists = null)
28: {
29: if (!$lists == null) {
30: $this->lists = $lists;
31: }
32: }
33:
34: 35: 36: 37:
38: public function toJson()
39: {
40: return json_encode($this);
41: }
42: }
43: