@@ -12,142 +12,142 @@ |
||
12 | 12 | class EE_Status extends EE_Base_Class |
13 | 13 | { |
14 | 14 | |
15 | - /** |
|
16 | - * @param array $props_n_values |
|
17 | - * @return EE_Status |
|
18 | - */ |
|
19 | - public static function new_instance($props_n_values = array()) |
|
20 | - { |
|
21 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
22 | - return $has_object ? $has_object : new self($props_n_values); |
|
23 | - } |
|
24 | - |
|
25 | - |
|
26 | - /** |
|
27 | - * @param array $props_n_values |
|
28 | - * @return EE_Status |
|
29 | - */ |
|
30 | - public static function new_instance_from_db($props_n_values = array()) |
|
31 | - { |
|
32 | - return new self($props_n_values, true); |
|
33 | - } |
|
34 | - |
|
35 | - |
|
36 | - /** |
|
37 | - * Gets code |
|
38 | - * |
|
39 | - * @param bool $plural |
|
40 | - * @param string $schema |
|
41 | - * @return string |
|
42 | - */ |
|
43 | - public function code($plural = false, $schema = 'upper') |
|
44 | - { |
|
45 | - $id = $this->get('STS_ID'); |
|
46 | - $code = EEM_Status::instance()->localized_status(array($id => $this->get('STS_code')), $plural, $schema); |
|
47 | - return $code[ $id ]; |
|
48 | - } |
|
49 | - |
|
50 | - |
|
51 | - /** |
|
52 | - * Sets code |
|
53 | - * |
|
54 | - * @param string $code |
|
55 | - * @return boolean |
|
56 | - */ |
|
57 | - public function set_code($code) |
|
58 | - { |
|
59 | - $this->set('STS_code', $code); |
|
60 | - } |
|
61 | - |
|
62 | - |
|
63 | - /** |
|
64 | - * Gets desc |
|
65 | - * |
|
66 | - * @return string |
|
67 | - */ |
|
68 | - public function desc() |
|
69 | - { |
|
70 | - return $this->get('STS_desc'); |
|
71 | - } |
|
72 | - |
|
73 | - |
|
74 | - /** |
|
75 | - * Sets desc |
|
76 | - * |
|
77 | - * @param string $desc |
|
78 | - * @return boolean |
|
79 | - */ |
|
80 | - public function set_desc($desc) |
|
81 | - { |
|
82 | - $this->set('STS_desc', $desc); |
|
83 | - } |
|
84 | - |
|
85 | - |
|
86 | - /** |
|
87 | - * Gets type |
|
88 | - * |
|
89 | - * @return string |
|
90 | - */ |
|
91 | - public function type() |
|
92 | - { |
|
93 | - return $this->get('STS_type'); |
|
94 | - } |
|
95 | - |
|
96 | - |
|
97 | - /** |
|
98 | - * Sets type |
|
99 | - * |
|
100 | - * @param string $type |
|
101 | - * @return boolean |
|
102 | - */ |
|
103 | - public function set_type($type) |
|
104 | - { |
|
105 | - $this->set('STS_type', $type); |
|
106 | - } |
|
107 | - |
|
108 | - |
|
109 | - /** |
|
110 | - * Gets can_edit |
|
111 | - * |
|
112 | - * @return boolean |
|
113 | - */ |
|
114 | - public function can_edit() |
|
115 | - { |
|
116 | - return $this->get('STS_can_edit'); |
|
117 | - } |
|
118 | - |
|
119 | - |
|
120 | - /** |
|
121 | - * Sets can_edit |
|
122 | - * |
|
123 | - * @param boolean $can_edit |
|
124 | - * @return boolean |
|
125 | - */ |
|
126 | - public function set_can_edit($can_edit) |
|
127 | - { |
|
128 | - $this->set('STS_can_edit', $can_edit); |
|
129 | - } |
|
130 | - |
|
131 | - |
|
132 | - /** |
|
133 | - * Gets open |
|
134 | - * |
|
135 | - * @return boolean |
|
136 | - */ |
|
137 | - public function open() |
|
138 | - { |
|
139 | - return $this->get('STS_open'); |
|
140 | - } |
|
141 | - |
|
142 | - |
|
143 | - /** |
|
144 | - * Sets open |
|
145 | - * |
|
146 | - * @param boolean $open |
|
147 | - * @return boolean |
|
148 | - */ |
|
149 | - public function set_open($open) |
|
150 | - { |
|
151 | - $this->set('STS_open', $open); |
|
152 | - } |
|
15 | + /** |
|
16 | + * @param array $props_n_values |
|
17 | + * @return EE_Status |
|
18 | + */ |
|
19 | + public static function new_instance($props_n_values = array()) |
|
20 | + { |
|
21 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
22 | + return $has_object ? $has_object : new self($props_n_values); |
|
23 | + } |
|
24 | + |
|
25 | + |
|
26 | + /** |
|
27 | + * @param array $props_n_values |
|
28 | + * @return EE_Status |
|
29 | + */ |
|
30 | + public static function new_instance_from_db($props_n_values = array()) |
|
31 | + { |
|
32 | + return new self($props_n_values, true); |
|
33 | + } |
|
34 | + |
|
35 | + |
|
36 | + /** |
|
37 | + * Gets code |
|
38 | + * |
|
39 | + * @param bool $plural |
|
40 | + * @param string $schema |
|
41 | + * @return string |
|
42 | + */ |
|
43 | + public function code($plural = false, $schema = 'upper') |
|
44 | + { |
|
45 | + $id = $this->get('STS_ID'); |
|
46 | + $code = EEM_Status::instance()->localized_status(array($id => $this->get('STS_code')), $plural, $schema); |
|
47 | + return $code[ $id ]; |
|
48 | + } |
|
49 | + |
|
50 | + |
|
51 | + /** |
|
52 | + * Sets code |
|
53 | + * |
|
54 | + * @param string $code |
|
55 | + * @return boolean |
|
56 | + */ |
|
57 | + public function set_code($code) |
|
58 | + { |
|
59 | + $this->set('STS_code', $code); |
|
60 | + } |
|
61 | + |
|
62 | + |
|
63 | + /** |
|
64 | + * Gets desc |
|
65 | + * |
|
66 | + * @return string |
|
67 | + */ |
|
68 | + public function desc() |
|
69 | + { |
|
70 | + return $this->get('STS_desc'); |
|
71 | + } |
|
72 | + |
|
73 | + |
|
74 | + /** |
|
75 | + * Sets desc |
|
76 | + * |
|
77 | + * @param string $desc |
|
78 | + * @return boolean |
|
79 | + */ |
|
80 | + public function set_desc($desc) |
|
81 | + { |
|
82 | + $this->set('STS_desc', $desc); |
|
83 | + } |
|
84 | + |
|
85 | + |
|
86 | + /** |
|
87 | + * Gets type |
|
88 | + * |
|
89 | + * @return string |
|
90 | + */ |
|
91 | + public function type() |
|
92 | + { |
|
93 | + return $this->get('STS_type'); |
|
94 | + } |
|
95 | + |
|
96 | + |
|
97 | + /** |
|
98 | + * Sets type |
|
99 | + * |
|
100 | + * @param string $type |
|
101 | + * @return boolean |
|
102 | + */ |
|
103 | + public function set_type($type) |
|
104 | + { |
|
105 | + $this->set('STS_type', $type); |
|
106 | + } |
|
107 | + |
|
108 | + |
|
109 | + /** |
|
110 | + * Gets can_edit |
|
111 | + * |
|
112 | + * @return boolean |
|
113 | + */ |
|
114 | + public function can_edit() |
|
115 | + { |
|
116 | + return $this->get('STS_can_edit'); |
|
117 | + } |
|
118 | + |
|
119 | + |
|
120 | + /** |
|
121 | + * Sets can_edit |
|
122 | + * |
|
123 | + * @param boolean $can_edit |
|
124 | + * @return boolean |
|
125 | + */ |
|
126 | + public function set_can_edit($can_edit) |
|
127 | + { |
|
128 | + $this->set('STS_can_edit', $can_edit); |
|
129 | + } |
|
130 | + |
|
131 | + |
|
132 | + /** |
|
133 | + * Gets open |
|
134 | + * |
|
135 | + * @return boolean |
|
136 | + */ |
|
137 | + public function open() |
|
138 | + { |
|
139 | + return $this->get('STS_open'); |
|
140 | + } |
|
141 | + |
|
142 | + |
|
143 | + /** |
|
144 | + * Sets open |
|
145 | + * |
|
146 | + * @param boolean $open |
|
147 | + * @return boolean |
|
148 | + */ |
|
149 | + public function set_open($open) |
|
150 | + { |
|
151 | + $this->set('STS_open', $open); |
|
152 | + } |
|
153 | 153 | } |
@@ -44,7 +44,7 @@ |
||
44 | 44 | { |
45 | 45 | $id = $this->get('STS_ID'); |
46 | 46 | $code = EEM_Status::instance()->localized_status(array($id => $this->get('STS_code')), $plural, $schema); |
47 | - return $code[ $id ]; |
|
47 | + return $code[$id]; |
|
48 | 48 | } |
49 | 49 | |
50 | 50 |
@@ -12,87 +12,87 @@ |
||
12 | 12 | class EE_Term extends EE_Base_Class |
13 | 13 | { |
14 | 14 | |
15 | - public $post_type; |
|
15 | + public $post_type; |
|
16 | 16 | |
17 | - /** |
|
18 | - * Sets some dynamic defaults |
|
19 | - * |
|
20 | - * @param array $fieldValues |
|
21 | - * @param bool $bydb |
|
22 | - * @param string $timezone |
|
23 | - */ |
|
24 | - protected function __construct($fieldValues = array(), $bydb = false, $timezone = '') |
|
25 | - { |
|
26 | - if (! isset($fieldValues['slug'])) { |
|
27 | - $fieldValues['slug'] = $fieldValues['name']; |
|
28 | - } |
|
29 | - parent::__construct($fieldValues, $bydb, $timezone); |
|
30 | - } |
|
17 | + /** |
|
18 | + * Sets some dynamic defaults |
|
19 | + * |
|
20 | + * @param array $fieldValues |
|
21 | + * @param bool $bydb |
|
22 | + * @param string $timezone |
|
23 | + */ |
|
24 | + protected function __construct($fieldValues = array(), $bydb = false, $timezone = '') |
|
25 | + { |
|
26 | + if (! isset($fieldValues['slug'])) { |
|
27 | + $fieldValues['slug'] = $fieldValues['name']; |
|
28 | + } |
|
29 | + parent::__construct($fieldValues, $bydb, $timezone); |
|
30 | + } |
|
31 | 31 | |
32 | 32 | |
33 | - /** |
|
34 | - * @param array $props_n_values |
|
35 | - * @return EE_Term|mixed |
|
36 | - */ |
|
37 | - public static function new_instance($props_n_values = array()) |
|
38 | - { |
|
39 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
40 | - return $has_object ? $has_object : new self($props_n_values); |
|
41 | - } |
|
33 | + /** |
|
34 | + * @param array $props_n_values |
|
35 | + * @return EE_Term|mixed |
|
36 | + */ |
|
37 | + public static function new_instance($props_n_values = array()) |
|
38 | + { |
|
39 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
40 | + return $has_object ? $has_object : new self($props_n_values); |
|
41 | + } |
|
42 | 42 | |
43 | 43 | |
44 | - /** |
|
45 | - * @param array $props_n_values |
|
46 | - * @return EE_Term |
|
47 | - */ |
|
48 | - public static function new_instance_from_db($props_n_values = array()) |
|
49 | - { |
|
50 | - return new self($props_n_values, true); |
|
51 | - } |
|
44 | + /** |
|
45 | + * @param array $props_n_values |
|
46 | + * @return EE_Term |
|
47 | + */ |
|
48 | + public static function new_instance_from_db($props_n_values = array()) |
|
49 | + { |
|
50 | + return new self($props_n_values, true); |
|
51 | + } |
|
52 | 52 | |
53 | 53 | |
54 | - /** |
|
55 | - * Gets name |
|
56 | - * |
|
57 | - * @return string |
|
58 | - */ |
|
59 | - public function name() |
|
60 | - { |
|
61 | - return $this->get('name'); |
|
62 | - } |
|
54 | + /** |
|
55 | + * Gets name |
|
56 | + * |
|
57 | + * @return string |
|
58 | + */ |
|
59 | + public function name() |
|
60 | + { |
|
61 | + return $this->get('name'); |
|
62 | + } |
|
63 | 63 | |
64 | 64 | |
65 | - /** |
|
66 | - * Sets name |
|
67 | - * |
|
68 | - * @param string $name |
|
69 | - * @return boolean |
|
70 | - */ |
|
71 | - public function set_name($name) |
|
72 | - { |
|
73 | - $this->set('name', $name); |
|
74 | - } |
|
65 | + /** |
|
66 | + * Sets name |
|
67 | + * |
|
68 | + * @param string $name |
|
69 | + * @return boolean |
|
70 | + */ |
|
71 | + public function set_name($name) |
|
72 | + { |
|
73 | + $this->set('name', $name); |
|
74 | + } |
|
75 | 75 | |
76 | 76 | |
77 | - /** |
|
78 | - * Gets slug |
|
79 | - * |
|
80 | - * @return string |
|
81 | - */ |
|
82 | - public function slug() |
|
83 | - { |
|
84 | - return $this->get('slug'); |
|
85 | - } |
|
77 | + /** |
|
78 | + * Gets slug |
|
79 | + * |
|
80 | + * @return string |
|
81 | + */ |
|
82 | + public function slug() |
|
83 | + { |
|
84 | + return $this->get('slug'); |
|
85 | + } |
|
86 | 86 | |
87 | 87 | |
88 | - /** |
|
89 | - * Sets slug |
|
90 | - * |
|
91 | - * @param string $slug |
|
92 | - * @return boolean |
|
93 | - */ |
|
94 | - public function set_slug($slug) |
|
95 | - { |
|
96 | - $this->set('slug', $slug); |
|
97 | - } |
|
88 | + /** |
|
89 | + * Sets slug |
|
90 | + * |
|
91 | + * @param string $slug |
|
92 | + * @return boolean |
|
93 | + */ |
|
94 | + public function set_slug($slug) |
|
95 | + { |
|
96 | + $this->set('slug', $slug); |
|
97 | + } |
|
98 | 98 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | */ |
24 | 24 | protected function __construct($fieldValues = array(), $bydb = false, $timezone = '') |
25 | 25 | { |
26 | - if (! isset($fieldValues['slug'])) { |
|
26 | + if ( ! isset($fieldValues['slug'])) { |
|
27 | 27 | $fieldValues['slug'] = $fieldValues['name']; |
28 | 28 | } |
29 | 29 | parent::__construct($fieldValues, $bydb, $timezone); |
@@ -14,98 +14,98 @@ |
||
14 | 14 | class EE_Registration_Payment extends EE_Base_Class |
15 | 15 | { |
16 | 16 | |
17 | - /** |
|
18 | - * |
|
19 | - * @param array $props_n_values |
|
20 | - * @param string $timezone |
|
21 | - * @return EE_Registration_Payment |
|
22 | - */ |
|
23 | - public static function new_instance($props_n_values = array(), $timezone = '', $date_formats = array()) |
|
24 | - { |
|
25 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
26 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
27 | - } |
|
28 | - |
|
29 | - |
|
30 | - /** |
|
31 | - * @param array $props_n_values |
|
32 | - * @param string $timezone |
|
33 | - * @return EE_Registration_Payment |
|
34 | - */ |
|
35 | - public static function new_instance_from_db($props_n_values = array(), $timezone = '') |
|
36 | - { |
|
37 | - return new self($props_n_values, true, $timezone); |
|
38 | - } |
|
39 | - |
|
40 | - |
|
41 | - /** |
|
42 | - * registration_ID |
|
43 | - * |
|
44 | - * @access public |
|
45 | - * @return int |
|
46 | - */ |
|
47 | - public function registration_ID() |
|
48 | - { |
|
49 | - return $this->get('REG_ID'); |
|
50 | - } |
|
51 | - |
|
52 | - |
|
53 | - /** |
|
54 | - * payment_ID |
|
55 | - * |
|
56 | - * @access public |
|
57 | - * @return int |
|
58 | - */ |
|
59 | - public function payment_ID() |
|
60 | - { |
|
61 | - return $this->get('PAY_ID'); |
|
62 | - } |
|
63 | - |
|
64 | - |
|
65 | - /** |
|
66 | - * amount |
|
67 | - * |
|
68 | - * @access public |
|
69 | - * @return float |
|
70 | - */ |
|
71 | - public function amount() |
|
72 | - { |
|
73 | - return $this->get('RPY_amount'); |
|
74 | - } |
|
75 | - |
|
76 | - |
|
77 | - /** |
|
78 | - * amount |
|
79 | - * |
|
80 | - * @access public |
|
81 | - * @param float $amount |
|
82 | - */ |
|
83 | - public function set_amount($amount = 0.000) |
|
84 | - { |
|
85 | - $this->set('RPY_amount', $amount); |
|
86 | - } |
|
87 | - |
|
88 | - |
|
89 | - /** |
|
90 | - * registration |
|
91 | - * |
|
92 | - * @access public |
|
93 | - * @return \EE_Registration |
|
94 | - */ |
|
95 | - public function registration() |
|
96 | - { |
|
97 | - return $this->get_first_related('Registration'); |
|
98 | - } |
|
99 | - |
|
100 | - |
|
101 | - /** |
|
102 | - * payment |
|
103 | - * |
|
104 | - * @access public |
|
105 | - * @return \EE_Payment |
|
106 | - */ |
|
107 | - public function payment() |
|
108 | - { |
|
109 | - return $this->get_first_related('Payment'); |
|
110 | - } |
|
17 | + /** |
|
18 | + * |
|
19 | + * @param array $props_n_values |
|
20 | + * @param string $timezone |
|
21 | + * @return EE_Registration_Payment |
|
22 | + */ |
|
23 | + public static function new_instance($props_n_values = array(), $timezone = '', $date_formats = array()) |
|
24 | + { |
|
25 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
26 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
27 | + } |
|
28 | + |
|
29 | + |
|
30 | + /** |
|
31 | + * @param array $props_n_values |
|
32 | + * @param string $timezone |
|
33 | + * @return EE_Registration_Payment |
|
34 | + */ |
|
35 | + public static function new_instance_from_db($props_n_values = array(), $timezone = '') |
|
36 | + { |
|
37 | + return new self($props_n_values, true, $timezone); |
|
38 | + } |
|
39 | + |
|
40 | + |
|
41 | + /** |
|
42 | + * registration_ID |
|
43 | + * |
|
44 | + * @access public |
|
45 | + * @return int |
|
46 | + */ |
|
47 | + public function registration_ID() |
|
48 | + { |
|
49 | + return $this->get('REG_ID'); |
|
50 | + } |
|
51 | + |
|
52 | + |
|
53 | + /** |
|
54 | + * payment_ID |
|
55 | + * |
|
56 | + * @access public |
|
57 | + * @return int |
|
58 | + */ |
|
59 | + public function payment_ID() |
|
60 | + { |
|
61 | + return $this->get('PAY_ID'); |
|
62 | + } |
|
63 | + |
|
64 | + |
|
65 | + /** |
|
66 | + * amount |
|
67 | + * |
|
68 | + * @access public |
|
69 | + * @return float |
|
70 | + */ |
|
71 | + public function amount() |
|
72 | + { |
|
73 | + return $this->get('RPY_amount'); |
|
74 | + } |
|
75 | + |
|
76 | + |
|
77 | + /** |
|
78 | + * amount |
|
79 | + * |
|
80 | + * @access public |
|
81 | + * @param float $amount |
|
82 | + */ |
|
83 | + public function set_amount($amount = 0.000) |
|
84 | + { |
|
85 | + $this->set('RPY_amount', $amount); |
|
86 | + } |
|
87 | + |
|
88 | + |
|
89 | + /** |
|
90 | + * registration |
|
91 | + * |
|
92 | + * @access public |
|
93 | + * @return \EE_Registration |
|
94 | + */ |
|
95 | + public function registration() |
|
96 | + { |
|
97 | + return $this->get_first_related('Registration'); |
|
98 | + } |
|
99 | + |
|
100 | + |
|
101 | + /** |
|
102 | + * payment |
|
103 | + * |
|
104 | + * @access public |
|
105 | + * @return \EE_Payment |
|
106 | + */ |
|
107 | + public function payment() |
|
108 | + { |
|
109 | + return $this->get_first_related('Payment'); |
|
110 | + } |
|
111 | 111 | } |
@@ -6,23 +6,23 @@ |
||
6 | 6 | class EE_Question_Group_Question extends EE_Base_Class |
7 | 7 | { |
8 | 8 | |
9 | - /** |
|
10 | - * @param array $props_n_values |
|
11 | - * @return EE_Question_Group_Question|mixed |
|
12 | - */ |
|
13 | - public static function new_instance($props_n_values = array()) |
|
14 | - { |
|
15 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
16 | - return $has_object ? $has_object : new self($props_n_values); |
|
17 | - } |
|
9 | + /** |
|
10 | + * @param array $props_n_values |
|
11 | + * @return EE_Question_Group_Question|mixed |
|
12 | + */ |
|
13 | + public static function new_instance($props_n_values = array()) |
|
14 | + { |
|
15 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
16 | + return $has_object ? $has_object : new self($props_n_values); |
|
17 | + } |
|
18 | 18 | |
19 | 19 | |
20 | - /** |
|
21 | - * @param array $props_n_values |
|
22 | - * @return EE_Question_Group_Question |
|
23 | - */ |
|
24 | - public static function new_instance_from_db($props_n_values = array()) |
|
25 | - { |
|
26 | - return new self($props_n_values, true); |
|
27 | - } |
|
20 | + /** |
|
21 | + * @param array $props_n_values |
|
22 | + * @return EE_Question_Group_Question |
|
23 | + */ |
|
24 | + public static function new_instance_from_db($props_n_values = array()) |
|
25 | + { |
|
26 | + return new self($props_n_values, true); |
|
27 | + } |
|
28 | 28 | } |
@@ -11,104 +11,104 @@ |
||
11 | 11 | class EE_State extends EE_Base_Class |
12 | 12 | { |
13 | 13 | |
14 | - /** |
|
15 | - * @param array $props_n_values |
|
16 | - * @return EE_State|mixed |
|
17 | - */ |
|
18 | - public static function new_instance($props_n_values = array()) |
|
19 | - { |
|
20 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
21 | - return $has_object ? $has_object : new self($props_n_values); |
|
22 | - } |
|
23 | - |
|
24 | - |
|
25 | - /** |
|
26 | - * @param array $props_n_values |
|
27 | - * @return EE_State |
|
28 | - */ |
|
29 | - public static function new_instance_from_db($props_n_values = array()) |
|
30 | - { |
|
31 | - return new self($props_n_values, true); |
|
32 | - } |
|
33 | - |
|
34 | - |
|
35 | - /** |
|
36 | - * @return string |
|
37 | - */ |
|
38 | - public function country_iso() |
|
39 | - { |
|
40 | - return $this->get('CNT_ISO'); |
|
41 | - } |
|
42 | - |
|
43 | - |
|
44 | - /** |
|
45 | - * @return string |
|
46 | - */ |
|
47 | - public function abbrev() |
|
48 | - { |
|
49 | - return $this->get('STA_abbrev'); |
|
50 | - } |
|
51 | - |
|
52 | - |
|
53 | - /** |
|
54 | - * @return bool |
|
55 | - */ |
|
56 | - public function active() |
|
57 | - { |
|
58 | - return $this->get('STA_active'); |
|
59 | - } |
|
60 | - |
|
61 | - |
|
62 | - /** |
|
63 | - * @return string |
|
64 | - */ |
|
65 | - public function name() |
|
66 | - { |
|
67 | - return $this->get('STA_name'); |
|
68 | - } |
|
69 | - |
|
70 | - |
|
71 | - /** |
|
72 | - * @return EE_Country |
|
73 | - */ |
|
74 | - public function country() |
|
75 | - { |
|
76 | - return $this->get_first_related('Country'); |
|
77 | - } |
|
78 | - |
|
79 | - |
|
80 | - /** |
|
81 | - * @param $iso |
|
82 | - */ |
|
83 | - public function set_country_iso($iso) |
|
84 | - { |
|
85 | - $this->set('CNT_ISO', $iso); |
|
86 | - } |
|
87 | - |
|
88 | - |
|
89 | - /** |
|
90 | - * @param $abbrev |
|
91 | - */ |
|
92 | - public function set_abbrev($abbrev) |
|
93 | - { |
|
94 | - $this->set('STA_abbrev', $abbrev); |
|
95 | - } |
|
96 | - |
|
97 | - |
|
98 | - /** |
|
99 | - * @param $active |
|
100 | - */ |
|
101 | - public function set_active($active) |
|
102 | - { |
|
103 | - $this->set('STA_active', $active); |
|
104 | - } |
|
105 | - |
|
106 | - |
|
107 | - /** |
|
108 | - * @param $name |
|
109 | - */ |
|
110 | - public function set_name($name) |
|
111 | - { |
|
112 | - $this->set('STA_name', $name); |
|
113 | - } |
|
14 | + /** |
|
15 | + * @param array $props_n_values |
|
16 | + * @return EE_State|mixed |
|
17 | + */ |
|
18 | + public static function new_instance($props_n_values = array()) |
|
19 | + { |
|
20 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
21 | + return $has_object ? $has_object : new self($props_n_values); |
|
22 | + } |
|
23 | + |
|
24 | + |
|
25 | + /** |
|
26 | + * @param array $props_n_values |
|
27 | + * @return EE_State |
|
28 | + */ |
|
29 | + public static function new_instance_from_db($props_n_values = array()) |
|
30 | + { |
|
31 | + return new self($props_n_values, true); |
|
32 | + } |
|
33 | + |
|
34 | + |
|
35 | + /** |
|
36 | + * @return string |
|
37 | + */ |
|
38 | + public function country_iso() |
|
39 | + { |
|
40 | + return $this->get('CNT_ISO'); |
|
41 | + } |
|
42 | + |
|
43 | + |
|
44 | + /** |
|
45 | + * @return string |
|
46 | + */ |
|
47 | + public function abbrev() |
|
48 | + { |
|
49 | + return $this->get('STA_abbrev'); |
|
50 | + } |
|
51 | + |
|
52 | + |
|
53 | + /** |
|
54 | + * @return bool |
|
55 | + */ |
|
56 | + public function active() |
|
57 | + { |
|
58 | + return $this->get('STA_active'); |
|
59 | + } |
|
60 | + |
|
61 | + |
|
62 | + /** |
|
63 | + * @return string |
|
64 | + */ |
|
65 | + public function name() |
|
66 | + { |
|
67 | + return $this->get('STA_name'); |
|
68 | + } |
|
69 | + |
|
70 | + |
|
71 | + /** |
|
72 | + * @return EE_Country |
|
73 | + */ |
|
74 | + public function country() |
|
75 | + { |
|
76 | + return $this->get_first_related('Country'); |
|
77 | + } |
|
78 | + |
|
79 | + |
|
80 | + /** |
|
81 | + * @param $iso |
|
82 | + */ |
|
83 | + public function set_country_iso($iso) |
|
84 | + { |
|
85 | + $this->set('CNT_ISO', $iso); |
|
86 | + } |
|
87 | + |
|
88 | + |
|
89 | + /** |
|
90 | + * @param $abbrev |
|
91 | + */ |
|
92 | + public function set_abbrev($abbrev) |
|
93 | + { |
|
94 | + $this->set('STA_abbrev', $abbrev); |
|
95 | + } |
|
96 | + |
|
97 | + |
|
98 | + /** |
|
99 | + * @param $active |
|
100 | + */ |
|
101 | + public function set_active($active) |
|
102 | + { |
|
103 | + $this->set('STA_active', $active); |
|
104 | + } |
|
105 | + |
|
106 | + |
|
107 | + /** |
|
108 | + * @param $name |
|
109 | + */ |
|
110 | + public function set_name($name) |
|
111 | + { |
|
112 | + $this->set('STA_name', $name); |
|
113 | + } |
|
114 | 114 | } |
@@ -9,30 +9,30 @@ |
||
9 | 9 | class EE_Datetime_Ticket extends EE_Base_Class |
10 | 10 | { |
11 | 11 | |
12 | - /** |
|
13 | - * |
|
14 | - * @param array $props_n_values incoming values |
|
15 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
16 | - * used.) |
|
17 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
18 | - * date_format and the second value is the time format |
|
19 | - * @return EE_Attendee |
|
20 | - */ |
|
21 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
22 | - { |
|
23 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
24 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
25 | - } |
|
12 | + /** |
|
13 | + * |
|
14 | + * @param array $props_n_values incoming values |
|
15 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
16 | + * used.) |
|
17 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
18 | + * date_format and the second value is the time format |
|
19 | + * @return EE_Attendee |
|
20 | + */ |
|
21 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
22 | + { |
|
23 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
24 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
25 | + } |
|
26 | 26 | |
27 | 27 | |
28 | - /** |
|
29 | - * @param array $props_n_values incoming values from the database |
|
30 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
31 | - * the website will be used. |
|
32 | - * @return EE_Attendee |
|
33 | - */ |
|
34 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
35 | - { |
|
36 | - return new self($props_n_values, true, $timezone); |
|
37 | - } |
|
28 | + /** |
|
29 | + * @param array $props_n_values incoming values from the database |
|
30 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
31 | + * the website will be used. |
|
32 | + * @return EE_Attendee |
|
33 | + */ |
|
34 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
35 | + { |
|
36 | + return new self($props_n_values, true, $timezone); |
|
37 | + } |
|
38 | 38 | } |
@@ -12,25 +12,25 @@ |
||
12 | 12 | class EE_Event_Message_Template extends EE_Base_Class |
13 | 13 | { |
14 | 14 | |
15 | - /** |
|
16 | - * @param array $props_n_values |
|
17 | - * @param null $timezone |
|
18 | - * @return EE_Event_Message_Template|mixed |
|
19 | - */ |
|
20 | - public static function new_instance($props_n_values = array(), $timezone = null) |
|
21 | - { |
|
22 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone); |
|
23 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone); |
|
24 | - } |
|
15 | + /** |
|
16 | + * @param array $props_n_values |
|
17 | + * @param null $timezone |
|
18 | + * @return EE_Event_Message_Template|mixed |
|
19 | + */ |
|
20 | + public static function new_instance($props_n_values = array(), $timezone = null) |
|
21 | + { |
|
22 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone); |
|
23 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone); |
|
24 | + } |
|
25 | 25 | |
26 | 26 | |
27 | - /** |
|
28 | - * @param array $props_n_values |
|
29 | - * @param null $timezone |
|
30 | - * @return EE_Event_Message_Template |
|
31 | - */ |
|
32 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
33 | - { |
|
34 | - return new self($props_n_values, true, $timezone); |
|
35 | - } |
|
27 | + /** |
|
28 | + * @param array $props_n_values |
|
29 | + * @param null $timezone |
|
30 | + * @return EE_Event_Message_Template |
|
31 | + */ |
|
32 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
33 | + { |
|
34 | + return new self($props_n_values, true, $timezone); |
|
35 | + } |
|
36 | 36 | } |
@@ -11,217 +11,217 @@ |
||
11 | 11 | class EE_Change_Log extends EE_Base_Class |
12 | 12 | { |
13 | 13 | |
14 | - /** |
|
15 | - * @param array $props_n_values incoming values |
|
16 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
17 | - * used.) |
|
18 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
19 | - * date_format and the second value is the time format |
|
20 | - * @return EE_Change_Log |
|
21 | - * @throws EE_Error |
|
22 | - */ |
|
23 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
24 | - { |
|
25 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
26 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
27 | - } |
|
28 | - |
|
29 | - |
|
30 | - /** |
|
31 | - * @param array $props_n_values incoming values from the database |
|
32 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
33 | - * the website will be used. |
|
34 | - * @return EE_Change_Log |
|
35 | - */ |
|
36 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
37 | - { |
|
38 | - return new self($props_n_values, true, $timezone); |
|
39 | - } |
|
40 | - |
|
41 | - /** |
|
42 | - * Gets message |
|
43 | - * |
|
44 | - * @return mixed |
|
45 | - * @throws EE_Error |
|
46 | - */ |
|
47 | - public function message() |
|
48 | - { |
|
49 | - return $this->get('LOG_message'); |
|
50 | - } |
|
51 | - |
|
52 | - /** |
|
53 | - * Sets message |
|
54 | - * |
|
55 | - * @param mixed $message |
|
56 | - * @throws EE_Error |
|
57 | - */ |
|
58 | - public function set_message($message) |
|
59 | - { |
|
60 | - $this->set('LOG_message', $message); |
|
61 | - } |
|
62 | - |
|
63 | - /** |
|
64 | - * Gets time |
|
65 | - * |
|
66 | - * @return string |
|
67 | - * @throws EE_Error |
|
68 | - */ |
|
69 | - public function time() |
|
70 | - { |
|
71 | - return $this->get('LOG_time'); |
|
72 | - } |
|
73 | - |
|
74 | - /** |
|
75 | - * Sets time |
|
76 | - * |
|
77 | - * @param string $time |
|
78 | - * @throws EE_Error |
|
79 | - */ |
|
80 | - public function set_time($time) |
|
81 | - { |
|
82 | - $this->set('LOG_time', $time); |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Gets log_type |
|
87 | - * |
|
88 | - * @return string |
|
89 | - * @throws EE_Error |
|
90 | - */ |
|
91 | - public function log_type() |
|
92 | - { |
|
93 | - return $this->get('LOG_type'); |
|
94 | - } |
|
95 | - |
|
96 | - |
|
97 | - /** |
|
98 | - * Return the localized log type label. |
|
99 | - * |
|
100 | - * @return string |
|
101 | - * @throws EE_Error |
|
102 | - */ |
|
103 | - public function log_type_label() |
|
104 | - { |
|
105 | - return EEM_Change_Log::get_pretty_label_for_type($this->log_type()); |
|
106 | - } |
|
107 | - |
|
108 | - /** |
|
109 | - * Sets log_type |
|
110 | - * |
|
111 | - * @param string $log_type |
|
112 | - * @throws EE_Error |
|
113 | - */ |
|
114 | - public function set_log_type($log_type) |
|
115 | - { |
|
116 | - $this->set('LOG_type', $log_type); |
|
117 | - } |
|
118 | - |
|
119 | - /** |
|
120 | - * Gets type of the model object related to this log |
|
121 | - * |
|
122 | - * @return string |
|
123 | - * @throws EE_Error |
|
124 | - */ |
|
125 | - public function OBJ_type() |
|
126 | - { |
|
127 | - return $this->get('OBJ_type'); |
|
128 | - } |
|
129 | - |
|
130 | - /** |
|
131 | - * Sets type |
|
132 | - * |
|
133 | - * @param string $type |
|
134 | - * @throws EE_Error |
|
135 | - */ |
|
136 | - public function set_OBJ_type($type) |
|
137 | - { |
|
138 | - $this->set('OBJ_type', $type); |
|
139 | - } |
|
140 | - |
|
141 | - /** |
|
142 | - * Gets OBJ_ID (the ID of the item related to this log) |
|
143 | - * |
|
144 | - * @return mixed |
|
145 | - * @throws EE_Error |
|
146 | - */ |
|
147 | - public function OBJ_ID() |
|
148 | - { |
|
149 | - return $this->get('OBJ_ID'); |
|
150 | - } |
|
151 | - |
|
152 | - /** |
|
153 | - * Sets OBJ_ID |
|
154 | - * |
|
155 | - * @param mixed $OBJ_ID |
|
156 | - * @throws EE_Error |
|
157 | - */ |
|
158 | - public function set_OBJ_ID($OBJ_ID) |
|
159 | - { |
|
160 | - $this->set('OBJ_ID', $OBJ_ID); |
|
161 | - } |
|
162 | - |
|
163 | - /** |
|
164 | - * Gets wp_user |
|
165 | - * |
|
166 | - * @return int |
|
167 | - * @throws EE_Error |
|
168 | - */ |
|
169 | - public function wp_user() |
|
170 | - { |
|
171 | - return $this->get('LOG_wp_user'); |
|
172 | - } |
|
173 | - |
|
174 | - /** |
|
175 | - * Sets wp_user |
|
176 | - * |
|
177 | - * @param int $wp_user_id |
|
178 | - * @throws EE_Error |
|
179 | - */ |
|
180 | - public function set_wp_user($wp_user_id) |
|
181 | - { |
|
182 | - $this->set('LOG_wp_user', $wp_user_id); |
|
183 | - } |
|
184 | - |
|
185 | - /** |
|
186 | - * Gets the model object attached to this log |
|
187 | - * |
|
188 | - * @return EE_Base_Class |
|
189 | - * @throws EE_Error |
|
190 | - */ |
|
191 | - public function object() |
|
192 | - { |
|
193 | - $model_name_of_related_obj = $this->OBJ_type(); |
|
194 | - $is_model_name = EE_Registry::instance()->is_model_name($model_name_of_related_obj); |
|
195 | - if (! $is_model_name) { |
|
196 | - return null; |
|
197 | - } else { |
|
198 | - return $this->get_first_related($model_name_of_related_obj); |
|
199 | - } |
|
200 | - } |
|
201 | - |
|
202 | - /** |
|
203 | - * Shorthand for setting the OBJ_ID and OBJ_type. Slightly handier than using |
|
204 | - * _add_relation_to because you don't have to specify what type of model you're |
|
205 | - * associating it with |
|
206 | - * |
|
207 | - * @param EE_Base_Class $object |
|
208 | - * @param boolean $save |
|
209 | - * @return bool if $save=true, NULL is $save=false |
|
210 | - * @throws EE_Error |
|
211 | - */ |
|
212 | - public function set_object($object, $save = true) |
|
213 | - { |
|
214 | - if ($object instanceof EE_Base_Class) { |
|
215 | - $this->set_OBJ_type($object->get_model()->get_this_model_name()); |
|
216 | - $this->set_OBJ_ID($object->ID()); |
|
217 | - } else { |
|
218 | - $this->set_OBJ_type(null); |
|
219 | - $this->set_OBJ_ID(null); |
|
220 | - } |
|
221 | - if ($save) { |
|
222 | - return $this->save(); |
|
223 | - } else { |
|
224 | - return null; |
|
225 | - } |
|
226 | - } |
|
14 | + /** |
|
15 | + * @param array $props_n_values incoming values |
|
16 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
17 | + * used.) |
|
18 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
19 | + * date_format and the second value is the time format |
|
20 | + * @return EE_Change_Log |
|
21 | + * @throws EE_Error |
|
22 | + */ |
|
23 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
24 | + { |
|
25 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
26 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
27 | + } |
|
28 | + |
|
29 | + |
|
30 | + /** |
|
31 | + * @param array $props_n_values incoming values from the database |
|
32 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
33 | + * the website will be used. |
|
34 | + * @return EE_Change_Log |
|
35 | + */ |
|
36 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
37 | + { |
|
38 | + return new self($props_n_values, true, $timezone); |
|
39 | + } |
|
40 | + |
|
41 | + /** |
|
42 | + * Gets message |
|
43 | + * |
|
44 | + * @return mixed |
|
45 | + * @throws EE_Error |
|
46 | + */ |
|
47 | + public function message() |
|
48 | + { |
|
49 | + return $this->get('LOG_message'); |
|
50 | + } |
|
51 | + |
|
52 | + /** |
|
53 | + * Sets message |
|
54 | + * |
|
55 | + * @param mixed $message |
|
56 | + * @throws EE_Error |
|
57 | + */ |
|
58 | + public function set_message($message) |
|
59 | + { |
|
60 | + $this->set('LOG_message', $message); |
|
61 | + } |
|
62 | + |
|
63 | + /** |
|
64 | + * Gets time |
|
65 | + * |
|
66 | + * @return string |
|
67 | + * @throws EE_Error |
|
68 | + */ |
|
69 | + public function time() |
|
70 | + { |
|
71 | + return $this->get('LOG_time'); |
|
72 | + } |
|
73 | + |
|
74 | + /** |
|
75 | + * Sets time |
|
76 | + * |
|
77 | + * @param string $time |
|
78 | + * @throws EE_Error |
|
79 | + */ |
|
80 | + public function set_time($time) |
|
81 | + { |
|
82 | + $this->set('LOG_time', $time); |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * Gets log_type |
|
87 | + * |
|
88 | + * @return string |
|
89 | + * @throws EE_Error |
|
90 | + */ |
|
91 | + public function log_type() |
|
92 | + { |
|
93 | + return $this->get('LOG_type'); |
|
94 | + } |
|
95 | + |
|
96 | + |
|
97 | + /** |
|
98 | + * Return the localized log type label. |
|
99 | + * |
|
100 | + * @return string |
|
101 | + * @throws EE_Error |
|
102 | + */ |
|
103 | + public function log_type_label() |
|
104 | + { |
|
105 | + return EEM_Change_Log::get_pretty_label_for_type($this->log_type()); |
|
106 | + } |
|
107 | + |
|
108 | + /** |
|
109 | + * Sets log_type |
|
110 | + * |
|
111 | + * @param string $log_type |
|
112 | + * @throws EE_Error |
|
113 | + */ |
|
114 | + public function set_log_type($log_type) |
|
115 | + { |
|
116 | + $this->set('LOG_type', $log_type); |
|
117 | + } |
|
118 | + |
|
119 | + /** |
|
120 | + * Gets type of the model object related to this log |
|
121 | + * |
|
122 | + * @return string |
|
123 | + * @throws EE_Error |
|
124 | + */ |
|
125 | + public function OBJ_type() |
|
126 | + { |
|
127 | + return $this->get('OBJ_type'); |
|
128 | + } |
|
129 | + |
|
130 | + /** |
|
131 | + * Sets type |
|
132 | + * |
|
133 | + * @param string $type |
|
134 | + * @throws EE_Error |
|
135 | + */ |
|
136 | + public function set_OBJ_type($type) |
|
137 | + { |
|
138 | + $this->set('OBJ_type', $type); |
|
139 | + } |
|
140 | + |
|
141 | + /** |
|
142 | + * Gets OBJ_ID (the ID of the item related to this log) |
|
143 | + * |
|
144 | + * @return mixed |
|
145 | + * @throws EE_Error |
|
146 | + */ |
|
147 | + public function OBJ_ID() |
|
148 | + { |
|
149 | + return $this->get('OBJ_ID'); |
|
150 | + } |
|
151 | + |
|
152 | + /** |
|
153 | + * Sets OBJ_ID |
|
154 | + * |
|
155 | + * @param mixed $OBJ_ID |
|
156 | + * @throws EE_Error |
|
157 | + */ |
|
158 | + public function set_OBJ_ID($OBJ_ID) |
|
159 | + { |
|
160 | + $this->set('OBJ_ID', $OBJ_ID); |
|
161 | + } |
|
162 | + |
|
163 | + /** |
|
164 | + * Gets wp_user |
|
165 | + * |
|
166 | + * @return int |
|
167 | + * @throws EE_Error |
|
168 | + */ |
|
169 | + public function wp_user() |
|
170 | + { |
|
171 | + return $this->get('LOG_wp_user'); |
|
172 | + } |
|
173 | + |
|
174 | + /** |
|
175 | + * Sets wp_user |
|
176 | + * |
|
177 | + * @param int $wp_user_id |
|
178 | + * @throws EE_Error |
|
179 | + */ |
|
180 | + public function set_wp_user($wp_user_id) |
|
181 | + { |
|
182 | + $this->set('LOG_wp_user', $wp_user_id); |
|
183 | + } |
|
184 | + |
|
185 | + /** |
|
186 | + * Gets the model object attached to this log |
|
187 | + * |
|
188 | + * @return EE_Base_Class |
|
189 | + * @throws EE_Error |
|
190 | + */ |
|
191 | + public function object() |
|
192 | + { |
|
193 | + $model_name_of_related_obj = $this->OBJ_type(); |
|
194 | + $is_model_name = EE_Registry::instance()->is_model_name($model_name_of_related_obj); |
|
195 | + if (! $is_model_name) { |
|
196 | + return null; |
|
197 | + } else { |
|
198 | + return $this->get_first_related($model_name_of_related_obj); |
|
199 | + } |
|
200 | + } |
|
201 | + |
|
202 | + /** |
|
203 | + * Shorthand for setting the OBJ_ID and OBJ_type. Slightly handier than using |
|
204 | + * _add_relation_to because you don't have to specify what type of model you're |
|
205 | + * associating it with |
|
206 | + * |
|
207 | + * @param EE_Base_Class $object |
|
208 | + * @param boolean $save |
|
209 | + * @return bool if $save=true, NULL is $save=false |
|
210 | + * @throws EE_Error |
|
211 | + */ |
|
212 | + public function set_object($object, $save = true) |
|
213 | + { |
|
214 | + if ($object instanceof EE_Base_Class) { |
|
215 | + $this->set_OBJ_type($object->get_model()->get_this_model_name()); |
|
216 | + $this->set_OBJ_ID($object->ID()); |
|
217 | + } else { |
|
218 | + $this->set_OBJ_type(null); |
|
219 | + $this->set_OBJ_ID(null); |
|
220 | + } |
|
221 | + if ($save) { |
|
222 | + return $this->save(); |
|
223 | + } else { |
|
224 | + return null; |
|
225 | + } |
|
226 | + } |
|
227 | 227 | } |
@@ -192,7 +192,7 @@ |
||
192 | 192 | { |
193 | 193 | $model_name_of_related_obj = $this->OBJ_type(); |
194 | 194 | $is_model_name = EE_Registry::instance()->is_model_name($model_name_of_related_obj); |
195 | - if (! $is_model_name) { |
|
195 | + if ( ! $is_model_name) { |
|
196 | 196 | return null; |
197 | 197 | } else { |
198 | 198 | return $this->get_first_related($model_name_of_related_obj); |
@@ -14,195 +14,195 @@ |
||
14 | 14 | class EE_Template_Part_Manager |
15 | 15 | { |
16 | 16 | |
17 | - /** |
|
18 | - * @param EE_Template_Part_PriorityQueue $template_parts |
|
19 | - */ |
|
20 | - protected $template_parts; |
|
21 | - |
|
22 | - /** |
|
23 | - * @param array $priorities |
|
24 | - */ |
|
25 | - protected $priorities = array(); |
|
26 | - |
|
27 | - /** |
|
28 | - * @param int $event_desc_priority |
|
29 | - */ |
|
30 | - protected $event_desc_priority; |
|
31 | - |
|
32 | - /** |
|
33 | - * @param string $before_event_content |
|
34 | - */ |
|
35 | - protected $before_event_content; |
|
36 | - |
|
37 | - /** |
|
38 | - * @param string $event_content |
|
39 | - */ |
|
40 | - protected $event_content; |
|
41 | - |
|
42 | - /** |
|
43 | - * @param string $after_event_content |
|
44 | - */ |
|
45 | - protected $after_event_content; |
|
46 | - |
|
47 | - |
|
48 | - /** |
|
49 | - * class constructor |
|
50 | - */ |
|
51 | - public function __construct() |
|
52 | - { |
|
53 | - $this->template_parts = new EE_Template_Part_PriorityQueue(); |
|
54 | - } |
|
55 | - |
|
56 | - |
|
57 | - /** |
|
58 | - * add_template_part |
|
59 | - * |
|
60 | - * used for setting the details about a particular template part |
|
61 | - * |
|
62 | - * @param string $name - just a simple string identifier - do NOT use 'event' |
|
63 | - * @param string $label - template part label displayed in admin |
|
64 | - * @param string $template - name or path of template to be used by EEH_Template::locate_template() |
|
65 | - * @param int $priority - order in which template parts should be applied |
|
66 | - */ |
|
67 | - public function add_template_part($name, $label, $template, $priority) |
|
68 | - { |
|
69 | - // SplPriorityQueue doesn't play nice with multiple items having the same priority |
|
70 | - // so if the incoming priority is already occupied, then let's increment it by one, |
|
71 | - // and then pass everything back into this method and try again with the new priority |
|
72 | - if (isset($this->priorities[ $priority ])) { |
|
73 | - $priority++; |
|
74 | - $this->add_template_part($name, $label, $template, $priority); |
|
75 | - return; |
|
76 | - } |
|
77 | - // kk now we can mark this priority as being occupied |
|
78 | - $this->priorities[ $priority ] = true; |
|
79 | - // create the template part and add to the queue |
|
80 | - $this->template_parts->insert( |
|
81 | - new EE_Template_Part($name, $label, $template, $priority), |
|
82 | - $priority |
|
83 | - ); |
|
84 | - if ($name === 'event') { |
|
85 | - $this->event_desc_priority = $priority; |
|
86 | - } |
|
87 | - } |
|
88 | - |
|
89 | - |
|
90 | - /** |
|
91 | - * apply_template_part_filters |
|
92 | - * |
|
93 | - * adds template parts to the supplied content |
|
94 | - * according to the details set when the template parts were added |
|
95 | - * |
|
96 | - * @access public |
|
97 | - * @param string $content |
|
98 | - * @return string |
|
99 | - */ |
|
100 | - public function apply_template_part_filters($content = '') |
|
101 | - { |
|
102 | - $this->template_parts->rewind(); |
|
103 | - // loop through template parts and position content |
|
104 | - while ($this->template_parts->valid()) { |
|
105 | - $this->_position_template_part( |
|
106 | - $content, |
|
107 | - $this->template_parts->current()->template(), |
|
108 | - $this->template_parts->current()->priority() |
|
109 | - ); |
|
110 | - $this->template_parts->next(); |
|
111 | - } |
|
112 | - // now simply add our three strings of content together |
|
113 | - return $this->before_event_content . $this->event_content . $this->after_event_content; |
|
114 | - } |
|
115 | - |
|
116 | - |
|
117 | - /** |
|
118 | - * position_template_part |
|
119 | - * |
|
120 | - * based on the priority of the incoming template part |
|
121 | - * relative to the known event description template part priority, |
|
122 | - * this method will assign template parts to one of the following: |
|
123 | - * $this->before_event_content |
|
124 | - * $this->event_content |
|
125 | - * $this->after_event_content |
|
126 | - * |
|
127 | - * @access protected |
|
128 | - * @param string $content |
|
129 | - * @param string $template |
|
130 | - * @param int $priority |
|
131 | - * @return void |
|
132 | - */ |
|
133 | - protected function _position_template_part($content, $template, $priority) |
|
134 | - { |
|
135 | - // Event Description content is the actual incoming content itself |
|
136 | - if ($priority === $this->event_desc_priority) { |
|
137 | - $this->event_content = $content; |
|
138 | - } elseif ($priority < $this->event_desc_priority) { |
|
139 | - // everything BEFORE the Event Description |
|
140 | - $this->before_event_content .= EEH_Template::locate_template($template); |
|
141 | - } elseif ($priority > $this->event_desc_priority) { |
|
142 | - // everything AFTER the Event Description |
|
143 | - $this->after_event_content .= EEH_Template::locate_template($template); |
|
144 | - } |
|
145 | - } |
|
146 | - |
|
147 | - |
|
148 | - /** |
|
149 | - * generate_sortable_list_of_template_parts |
|
150 | - * |
|
151 | - * creates an HTML list (<ul>) with list items (<li>) for each template part, |
|
152 | - * in a format that can be used as a sortable list in the admin |
|
153 | - * |
|
154 | - * @access public |
|
155 | - * @param string $list_css_id |
|
156 | - * @param string $list_css_class |
|
157 | - * @param string $list_item_css_class |
|
158 | - * @param string $list_item_css_id_prefix |
|
159 | - * @return string |
|
160 | - */ |
|
161 | - public function generate_sortable_list_of_template_parts( |
|
162 | - $list_css_id = '', |
|
163 | - $list_css_class = '', |
|
164 | - $list_item_css_class = '', |
|
165 | - $list_item_css_id_prefix = '' |
|
166 | - ) { |
|
167 | - $event_archive_display_order = EEH_HTML::ul($list_css_id, $list_css_class); |
|
168 | - $this->template_parts->rewind(); |
|
169 | - // loop through template parts and add template content |
|
170 | - while ($this->template_parts->valid()) { |
|
171 | - $event_archive_display_order .= EEH_HTML::li( |
|
172 | - EEH_HTML::span('', '', 'dashicons dashicons-arrow-up-alt2') . |
|
173 | - EEH_HTML::span('', '', 'dashicons dashicons-arrow-down-alt2') . |
|
174 | - $this->template_parts->current()->label(), |
|
175 | - $list_item_css_id_prefix . $this->template_parts->current()->name(), |
|
176 | - $list_item_css_class |
|
177 | - ); |
|
178 | - $this->template_parts->next(); |
|
179 | - } |
|
180 | - $event_archive_display_order .= EEH_HTML::ulx(); |
|
181 | - return $event_archive_display_order; |
|
182 | - } |
|
183 | - |
|
184 | - |
|
185 | - /** |
|
186 | - * display_template_parts |
|
187 | - * |
|
188 | - * just for debugging purposes |
|
189 | - * |
|
190 | - * @access public |
|
191 | - * @return void |
|
192 | - */ |
|
193 | - public function display_template_parts() |
|
194 | - { |
|
195 | - if (WP_DEBUG) { |
|
196 | - $this->template_parts->rewind(); |
|
197 | - while ($this->template_parts->valid()) { |
|
198 | - EEH_Debug_Tools::printr( |
|
199 | - $this->template_parts->current(), |
|
200 | - 'template_part', |
|
201 | - __FILE__, |
|
202 | - __LINE__ |
|
203 | - ); |
|
204 | - $this->template_parts->next(); |
|
205 | - } |
|
206 | - } |
|
207 | - } |
|
17 | + /** |
|
18 | + * @param EE_Template_Part_PriorityQueue $template_parts |
|
19 | + */ |
|
20 | + protected $template_parts; |
|
21 | + |
|
22 | + /** |
|
23 | + * @param array $priorities |
|
24 | + */ |
|
25 | + protected $priorities = array(); |
|
26 | + |
|
27 | + /** |
|
28 | + * @param int $event_desc_priority |
|
29 | + */ |
|
30 | + protected $event_desc_priority; |
|
31 | + |
|
32 | + /** |
|
33 | + * @param string $before_event_content |
|
34 | + */ |
|
35 | + protected $before_event_content; |
|
36 | + |
|
37 | + /** |
|
38 | + * @param string $event_content |
|
39 | + */ |
|
40 | + protected $event_content; |
|
41 | + |
|
42 | + /** |
|
43 | + * @param string $after_event_content |
|
44 | + */ |
|
45 | + protected $after_event_content; |
|
46 | + |
|
47 | + |
|
48 | + /** |
|
49 | + * class constructor |
|
50 | + */ |
|
51 | + public function __construct() |
|
52 | + { |
|
53 | + $this->template_parts = new EE_Template_Part_PriorityQueue(); |
|
54 | + } |
|
55 | + |
|
56 | + |
|
57 | + /** |
|
58 | + * add_template_part |
|
59 | + * |
|
60 | + * used for setting the details about a particular template part |
|
61 | + * |
|
62 | + * @param string $name - just a simple string identifier - do NOT use 'event' |
|
63 | + * @param string $label - template part label displayed in admin |
|
64 | + * @param string $template - name or path of template to be used by EEH_Template::locate_template() |
|
65 | + * @param int $priority - order in which template parts should be applied |
|
66 | + */ |
|
67 | + public function add_template_part($name, $label, $template, $priority) |
|
68 | + { |
|
69 | + // SplPriorityQueue doesn't play nice with multiple items having the same priority |
|
70 | + // so if the incoming priority is already occupied, then let's increment it by one, |
|
71 | + // and then pass everything back into this method and try again with the new priority |
|
72 | + if (isset($this->priorities[ $priority ])) { |
|
73 | + $priority++; |
|
74 | + $this->add_template_part($name, $label, $template, $priority); |
|
75 | + return; |
|
76 | + } |
|
77 | + // kk now we can mark this priority as being occupied |
|
78 | + $this->priorities[ $priority ] = true; |
|
79 | + // create the template part and add to the queue |
|
80 | + $this->template_parts->insert( |
|
81 | + new EE_Template_Part($name, $label, $template, $priority), |
|
82 | + $priority |
|
83 | + ); |
|
84 | + if ($name === 'event') { |
|
85 | + $this->event_desc_priority = $priority; |
|
86 | + } |
|
87 | + } |
|
88 | + |
|
89 | + |
|
90 | + /** |
|
91 | + * apply_template_part_filters |
|
92 | + * |
|
93 | + * adds template parts to the supplied content |
|
94 | + * according to the details set when the template parts were added |
|
95 | + * |
|
96 | + * @access public |
|
97 | + * @param string $content |
|
98 | + * @return string |
|
99 | + */ |
|
100 | + public function apply_template_part_filters($content = '') |
|
101 | + { |
|
102 | + $this->template_parts->rewind(); |
|
103 | + // loop through template parts and position content |
|
104 | + while ($this->template_parts->valid()) { |
|
105 | + $this->_position_template_part( |
|
106 | + $content, |
|
107 | + $this->template_parts->current()->template(), |
|
108 | + $this->template_parts->current()->priority() |
|
109 | + ); |
|
110 | + $this->template_parts->next(); |
|
111 | + } |
|
112 | + // now simply add our three strings of content together |
|
113 | + return $this->before_event_content . $this->event_content . $this->after_event_content; |
|
114 | + } |
|
115 | + |
|
116 | + |
|
117 | + /** |
|
118 | + * position_template_part |
|
119 | + * |
|
120 | + * based on the priority of the incoming template part |
|
121 | + * relative to the known event description template part priority, |
|
122 | + * this method will assign template parts to one of the following: |
|
123 | + * $this->before_event_content |
|
124 | + * $this->event_content |
|
125 | + * $this->after_event_content |
|
126 | + * |
|
127 | + * @access protected |
|
128 | + * @param string $content |
|
129 | + * @param string $template |
|
130 | + * @param int $priority |
|
131 | + * @return void |
|
132 | + */ |
|
133 | + protected function _position_template_part($content, $template, $priority) |
|
134 | + { |
|
135 | + // Event Description content is the actual incoming content itself |
|
136 | + if ($priority === $this->event_desc_priority) { |
|
137 | + $this->event_content = $content; |
|
138 | + } elseif ($priority < $this->event_desc_priority) { |
|
139 | + // everything BEFORE the Event Description |
|
140 | + $this->before_event_content .= EEH_Template::locate_template($template); |
|
141 | + } elseif ($priority > $this->event_desc_priority) { |
|
142 | + // everything AFTER the Event Description |
|
143 | + $this->after_event_content .= EEH_Template::locate_template($template); |
|
144 | + } |
|
145 | + } |
|
146 | + |
|
147 | + |
|
148 | + /** |
|
149 | + * generate_sortable_list_of_template_parts |
|
150 | + * |
|
151 | + * creates an HTML list (<ul>) with list items (<li>) for each template part, |
|
152 | + * in a format that can be used as a sortable list in the admin |
|
153 | + * |
|
154 | + * @access public |
|
155 | + * @param string $list_css_id |
|
156 | + * @param string $list_css_class |
|
157 | + * @param string $list_item_css_class |
|
158 | + * @param string $list_item_css_id_prefix |
|
159 | + * @return string |
|
160 | + */ |
|
161 | + public function generate_sortable_list_of_template_parts( |
|
162 | + $list_css_id = '', |
|
163 | + $list_css_class = '', |
|
164 | + $list_item_css_class = '', |
|
165 | + $list_item_css_id_prefix = '' |
|
166 | + ) { |
|
167 | + $event_archive_display_order = EEH_HTML::ul($list_css_id, $list_css_class); |
|
168 | + $this->template_parts->rewind(); |
|
169 | + // loop through template parts and add template content |
|
170 | + while ($this->template_parts->valid()) { |
|
171 | + $event_archive_display_order .= EEH_HTML::li( |
|
172 | + EEH_HTML::span('', '', 'dashicons dashicons-arrow-up-alt2') . |
|
173 | + EEH_HTML::span('', '', 'dashicons dashicons-arrow-down-alt2') . |
|
174 | + $this->template_parts->current()->label(), |
|
175 | + $list_item_css_id_prefix . $this->template_parts->current()->name(), |
|
176 | + $list_item_css_class |
|
177 | + ); |
|
178 | + $this->template_parts->next(); |
|
179 | + } |
|
180 | + $event_archive_display_order .= EEH_HTML::ulx(); |
|
181 | + return $event_archive_display_order; |
|
182 | + } |
|
183 | + |
|
184 | + |
|
185 | + /** |
|
186 | + * display_template_parts |
|
187 | + * |
|
188 | + * just for debugging purposes |
|
189 | + * |
|
190 | + * @access public |
|
191 | + * @return void |
|
192 | + */ |
|
193 | + public function display_template_parts() |
|
194 | + { |
|
195 | + if (WP_DEBUG) { |
|
196 | + $this->template_parts->rewind(); |
|
197 | + while ($this->template_parts->valid()) { |
|
198 | + EEH_Debug_Tools::printr( |
|
199 | + $this->template_parts->current(), |
|
200 | + 'template_part', |
|
201 | + __FILE__, |
|
202 | + __LINE__ |
|
203 | + ); |
|
204 | + $this->template_parts->next(); |
|
205 | + } |
|
206 | + } |
|
207 | + } |
|
208 | 208 | } |
@@ -69,13 +69,13 @@ discard block |
||
69 | 69 | // SplPriorityQueue doesn't play nice with multiple items having the same priority |
70 | 70 | // so if the incoming priority is already occupied, then let's increment it by one, |
71 | 71 | // and then pass everything back into this method and try again with the new priority |
72 | - if (isset($this->priorities[ $priority ])) { |
|
72 | + if (isset($this->priorities[$priority])) { |
|
73 | 73 | $priority++; |
74 | 74 | $this->add_template_part($name, $label, $template, $priority); |
75 | 75 | return; |
76 | 76 | } |
77 | 77 | // kk now we can mark this priority as being occupied |
78 | - $this->priorities[ $priority ] = true; |
|
78 | + $this->priorities[$priority] = true; |
|
79 | 79 | // create the template part and add to the queue |
80 | 80 | $this->template_parts->insert( |
81 | 81 | new EE_Template_Part($name, $label, $template, $priority), |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | $this->template_parts->next(); |
111 | 111 | } |
112 | 112 | // now simply add our three strings of content together |
113 | - return $this->before_event_content . $this->event_content . $this->after_event_content; |
|
113 | + return $this->before_event_content.$this->event_content.$this->after_event_content; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | |
@@ -169,10 +169,10 @@ discard block |
||
169 | 169 | // loop through template parts and add template content |
170 | 170 | while ($this->template_parts->valid()) { |
171 | 171 | $event_archive_display_order .= EEH_HTML::li( |
172 | - EEH_HTML::span('', '', 'dashicons dashicons-arrow-up-alt2') . |
|
173 | - EEH_HTML::span('', '', 'dashicons dashicons-arrow-down-alt2') . |
|
172 | + EEH_HTML::span('', '', 'dashicons dashicons-arrow-up-alt2'). |
|
173 | + EEH_HTML::span('', '', 'dashicons dashicons-arrow-down-alt2'). |
|
174 | 174 | $this->template_parts->current()->label(), |
175 | - $list_item_css_id_prefix . $this->template_parts->current()->name(), |
|
175 | + $list_item_css_id_prefix.$this->template_parts->current()->name(), |
|
176 | 176 | $list_item_css_class |
177 | 177 | ); |
178 | 178 | $this->template_parts->next(); |