Completed
Branch EDTR/input-labels (73d1b5)
by
unknown
11:26 queued 01:08
created
caffeinated/admin/extend/messages/Extend_Messages_Admin_Page.core.php 2 patches
Indentation   +183 added lines, -183 removed lines patch added patch discarded remove patch
@@ -18,187 +18,187 @@
 block discarded – undo
18 18
 {
19 19
 
20 20
 
21
-    public function __construct($routing = true)
22
-    {
23
-        parent::__construct($routing);
24
-        if (! defined('EE_MSG_CAF_ASSETS_PATH')) {
25
-            define('EE_MSG_CAF_ASSETS_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'messages/assets/');
26
-            define('EE_MSG_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/');
27
-            define('EE_MSG_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/');
28
-            define('EE_MSG_CAF_TEMPLATE_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/templates/');
29
-        }
30
-    }
31
-
32
-    protected function _extend_page_config()
33
-    {
34
-        $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'messages';
35
-        $this->_page_routes['custom_mtps'] = array(
36
-            'func'       => '_ee_custom_messages_overview_list_table',
37
-            'capability' => 'ee_read_messages',
38
-        );
39
-        $this->_page_config['custom_mtps'] = array(
40
-            'nav'           => array(
41
-                'label' => __('Custom Message Templates', 'event_espresso'),
42
-                'order' => 30,
43
-            ),
44
-            'list_table'    => 'Custom_Messages_Template_List_Table',
45
-            'help_tabs'     => array(
46
-                'message_overview_message_types_help_tab' => array(
47
-                    'title'    => __('Message Types', 'event_espresso'),
48
-                    'filename' => 'messages_overview_types',
49
-                ),
50
-                'messages_overview_messengers_help_tab'   => array(
51
-                    'title'    => __('Messengers', 'event_espresso'),
52
-                    'filename' => 'messages_overview_messengers',
53
-                ),
54
-                'messages_overview_other_help_tab'        => array(
55
-                    'title'    => __('Messages Other', 'event_espresso'),
56
-                    'filename' => 'messages_overview_other',
57
-                ),
58
-            ),
59
-            'help_tour'     => array(),
60
-            'require_nonce' => false,
61
-        );
62
-
63
-        add_action('current_screen', array($this, 'dynamic_screen_hooks'), 10);
64
-    }
65
-
66
-
67
-    /**
68
-     * Callback for current_screen action
69
-     * This is used for any filters and/or actions that require the dynamic screen hook_prefix to be correct.
70
-     *
71
-     * @since 4.5.0
72
-     *
73
-     * @return void
74
-     */
75
-    public function dynamic_screen_hooks()
76
-    {
77
-        global $admin_page_hooks;
78
-
79
-        if (! empty($admin_page_hooks['espresso_events'])) {
80
-            // we're on a EE specific page... good stuff!
81
-            $hook_prefix = $admin_page_hooks['espresso_events'];
82
-            $filter_ref = $hook_prefix . '_page_' . $this->page_slug;
83
-            add_filter('FHEE_manage_' . $filter_ref . '_columns', array($this, 'add_custom_mtps_columns'), 10, 2);
84
-            add_action(
85
-                'AHEE__EE_Admin_List_Table__column_actions__' . $filter_ref,
86
-                array($this, 'custom_mtp_create_button_column'),
87
-                10,
88
-                2
89
-            );
90
-        }
91
-    }
92
-
93
-
94
-    /**
95
-     * This is the callback for the FHEE__manage_event-espresso_page_espresso_messages_columns to register the
96
-     * caffeinated columns for the global message templates list table.
97
-     *
98
-     * @since 4.3.2
99
-     *
100
-     * @param array  $columns   Original defined list of columns
101
-     * @param string $screen_id The unique screen id for the page.
102
-     */
103
-    public function add_custom_mtps_columns($columns, $screen_id)
104
-    {
105
-        if ($screen_id !== 'espresso_messages_global_mtps') {
106
-            return $columns;
107
-        }
108
-
109
-        $columns['actions'] = '';
110
-        return $columns;
111
-    }
112
-
113
-
114
-    /**
115
-     * Callback for FHEE__EE_Admin_List_Table__column_actions__event-espresso_page_espresso_messages action that allows
116
-     * for adding the content for the registered "action" column.
117
-     *
118
-     * @since 4.3.2
119
-     *
120
-     * @param EE_Base_Class
121
-     * @param string $screen_id Unique screen id for the page
122
-     *
123
-     * @return string html content for the page.
124
-     */
125
-    public function custom_mtp_create_button_column($item, $screen_id)
126
-    {
127
-        if ($screen_id !== 'espresso_messages_global_mtps' || ! EE_Registry::instance()->CAP->current_user_can(
128
-            'ee_edit_messages',
129
-            'espresso_messages_add_new_message_template'
130
-        )) {
131
-            return '';
132
-        }
133
-
134
-        // first we consider whether this template has override set.  If it does then that means no custom templates can be created from this template as a base.  So let's just skip the button creation.
135
-        if ($item->get('MTP_is_override')) {
136
-            return '';
137
-        }
138
-
139
-
140
-        $create_args = array(
141
-            'GRP_ID'       => $item->ID(),
142
-            'messenger'    => $item->messenger(),
143
-            'message_type' => $item->message_type(),
144
-            'action'       => 'add_new_message_template',
145
-        );
146
-        $create_link = EE_Admin_Page::add_query_args_and_nonce($create_args, EE_MSG_ADMIN_URL);
147
-        echo sprintf(
148
-            '<a href="%s" class="button button-small">%s</a>',
149
-            $create_link,
150
-            __('Create Custom', 'event_espresso')
151
-        );
152
-    }
153
-
154
-
155
-    protected function _add_screen_options_custom_mtps()
156
-    {
157
-        $page_title = $this->_admin_page_title;
158
-        $this->_admin_page_title = __('Custom Message Templates', 'event_espresso');
159
-        $this->_per_page_screen_option();
160
-        $this->_admin_page_title = $page_title;
161
-    }
162
-
163
-
164
-    /**
165
-     * set views array for Custom Templates list table
166
-     *
167
-     * @access public
168
-     * @return void
169
-     */
170
-    public function _set_list_table_views_custom_mtps()
171
-    {
172
-        $this->_views = array(
173
-            'in_use' => array(
174
-                'slug'        => 'in_use',
175
-                'label'       => __('In Use', 'event_espresso'),
176
-                'count'       => 0,
177
-                'bulk_action' => array(
178
-                    'trash_message_template' => __('Move to Trash', 'event_espresso'),
179
-                ),
180
-            ),
181
-        );
182
-        if (EE_Registry::instance()->CAP->current_user_can(
183
-            'ee_delete_messages',
184
-            'espresso_messages_trash_message_template'
185
-        )) {
186
-            $this->_views['trashed'] = array(
187
-                'slug'        => 'trashed',
188
-                'label'       => __('Trash', 'event_espresso'),
189
-                'count'       => 0,
190
-                'bulk_action' => array(
191
-                    'restore_message_template' => __('Restore From Trash', 'event_espresso'),
192
-                    'delete_message_template'  => __('Delete Permanently', 'event_espresso'),
193
-                ),
194
-            );
195
-        }
196
-    }
197
-
198
-
199
-    protected function _ee_custom_messages_overview_list_table()
200
-    {
201
-        $this->_admin_page_title = __('Custom Message Templates', 'event_espresso');
202
-        $this->display_admin_list_table_page_with_no_sidebar();
203
-    }
21
+	public function __construct($routing = true)
22
+	{
23
+		parent::__construct($routing);
24
+		if (! defined('EE_MSG_CAF_ASSETS_PATH')) {
25
+			define('EE_MSG_CAF_ASSETS_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'messages/assets/');
26
+			define('EE_MSG_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/');
27
+			define('EE_MSG_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/');
28
+			define('EE_MSG_CAF_TEMPLATE_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/templates/');
29
+		}
30
+	}
31
+
32
+	protected function _extend_page_config()
33
+	{
34
+		$this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'messages';
35
+		$this->_page_routes['custom_mtps'] = array(
36
+			'func'       => '_ee_custom_messages_overview_list_table',
37
+			'capability' => 'ee_read_messages',
38
+		);
39
+		$this->_page_config['custom_mtps'] = array(
40
+			'nav'           => array(
41
+				'label' => __('Custom Message Templates', 'event_espresso'),
42
+				'order' => 30,
43
+			),
44
+			'list_table'    => 'Custom_Messages_Template_List_Table',
45
+			'help_tabs'     => array(
46
+				'message_overview_message_types_help_tab' => array(
47
+					'title'    => __('Message Types', 'event_espresso'),
48
+					'filename' => 'messages_overview_types',
49
+				),
50
+				'messages_overview_messengers_help_tab'   => array(
51
+					'title'    => __('Messengers', 'event_espresso'),
52
+					'filename' => 'messages_overview_messengers',
53
+				),
54
+				'messages_overview_other_help_tab'        => array(
55
+					'title'    => __('Messages Other', 'event_espresso'),
56
+					'filename' => 'messages_overview_other',
57
+				),
58
+			),
59
+			'help_tour'     => array(),
60
+			'require_nonce' => false,
61
+		);
62
+
63
+		add_action('current_screen', array($this, 'dynamic_screen_hooks'), 10);
64
+	}
65
+
66
+
67
+	/**
68
+	 * Callback for current_screen action
69
+	 * This is used for any filters and/or actions that require the dynamic screen hook_prefix to be correct.
70
+	 *
71
+	 * @since 4.5.0
72
+	 *
73
+	 * @return void
74
+	 */
75
+	public function dynamic_screen_hooks()
76
+	{
77
+		global $admin_page_hooks;
78
+
79
+		if (! empty($admin_page_hooks['espresso_events'])) {
80
+			// we're on a EE specific page... good stuff!
81
+			$hook_prefix = $admin_page_hooks['espresso_events'];
82
+			$filter_ref = $hook_prefix . '_page_' . $this->page_slug;
83
+			add_filter('FHEE_manage_' . $filter_ref . '_columns', array($this, 'add_custom_mtps_columns'), 10, 2);
84
+			add_action(
85
+				'AHEE__EE_Admin_List_Table__column_actions__' . $filter_ref,
86
+				array($this, 'custom_mtp_create_button_column'),
87
+				10,
88
+				2
89
+			);
90
+		}
91
+	}
92
+
93
+
94
+	/**
95
+	 * This is the callback for the FHEE__manage_event-espresso_page_espresso_messages_columns to register the
96
+	 * caffeinated columns for the global message templates list table.
97
+	 *
98
+	 * @since 4.3.2
99
+	 *
100
+	 * @param array  $columns   Original defined list of columns
101
+	 * @param string $screen_id The unique screen id for the page.
102
+	 */
103
+	public function add_custom_mtps_columns($columns, $screen_id)
104
+	{
105
+		if ($screen_id !== 'espresso_messages_global_mtps') {
106
+			return $columns;
107
+		}
108
+
109
+		$columns['actions'] = '';
110
+		return $columns;
111
+	}
112
+
113
+
114
+	/**
115
+	 * Callback for FHEE__EE_Admin_List_Table__column_actions__event-espresso_page_espresso_messages action that allows
116
+	 * for adding the content for the registered "action" column.
117
+	 *
118
+	 * @since 4.3.2
119
+	 *
120
+	 * @param EE_Base_Class
121
+	 * @param string $screen_id Unique screen id for the page
122
+	 *
123
+	 * @return string html content for the page.
124
+	 */
125
+	public function custom_mtp_create_button_column($item, $screen_id)
126
+	{
127
+		if ($screen_id !== 'espresso_messages_global_mtps' || ! EE_Registry::instance()->CAP->current_user_can(
128
+			'ee_edit_messages',
129
+			'espresso_messages_add_new_message_template'
130
+		)) {
131
+			return '';
132
+		}
133
+
134
+		// first we consider whether this template has override set.  If it does then that means no custom templates can be created from this template as a base.  So let's just skip the button creation.
135
+		if ($item->get('MTP_is_override')) {
136
+			return '';
137
+		}
138
+
139
+
140
+		$create_args = array(
141
+			'GRP_ID'       => $item->ID(),
142
+			'messenger'    => $item->messenger(),
143
+			'message_type' => $item->message_type(),
144
+			'action'       => 'add_new_message_template',
145
+		);
146
+		$create_link = EE_Admin_Page::add_query_args_and_nonce($create_args, EE_MSG_ADMIN_URL);
147
+		echo sprintf(
148
+			'<a href="%s" class="button button-small">%s</a>',
149
+			$create_link,
150
+			__('Create Custom', 'event_espresso')
151
+		);
152
+	}
153
+
154
+
155
+	protected function _add_screen_options_custom_mtps()
156
+	{
157
+		$page_title = $this->_admin_page_title;
158
+		$this->_admin_page_title = __('Custom Message Templates', 'event_espresso');
159
+		$this->_per_page_screen_option();
160
+		$this->_admin_page_title = $page_title;
161
+	}
162
+
163
+
164
+	/**
165
+	 * set views array for Custom Templates list table
166
+	 *
167
+	 * @access public
168
+	 * @return void
169
+	 */
170
+	public function _set_list_table_views_custom_mtps()
171
+	{
172
+		$this->_views = array(
173
+			'in_use' => array(
174
+				'slug'        => 'in_use',
175
+				'label'       => __('In Use', 'event_espresso'),
176
+				'count'       => 0,
177
+				'bulk_action' => array(
178
+					'trash_message_template' => __('Move to Trash', 'event_espresso'),
179
+				),
180
+			),
181
+		);
182
+		if (EE_Registry::instance()->CAP->current_user_can(
183
+			'ee_delete_messages',
184
+			'espresso_messages_trash_message_template'
185
+		)) {
186
+			$this->_views['trashed'] = array(
187
+				'slug'        => 'trashed',
188
+				'label'       => __('Trash', 'event_espresso'),
189
+				'count'       => 0,
190
+				'bulk_action' => array(
191
+					'restore_message_template' => __('Restore From Trash', 'event_espresso'),
192
+					'delete_message_template'  => __('Delete Permanently', 'event_espresso'),
193
+				),
194
+			);
195
+		}
196
+	}
197
+
198
+
199
+	protected function _ee_custom_messages_overview_list_table()
200
+	{
201
+		$this->_admin_page_title = __('Custom Message Templates', 'event_espresso');
202
+		$this->display_admin_list_table_page_with_no_sidebar();
203
+	}
204 204
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@  discard block
 block discarded – undo
21 21
     public function __construct($routing = true)
22 22
     {
23 23
         parent::__construct($routing);
24
-        if (! defined('EE_MSG_CAF_ASSETS_PATH')) {
25
-            define('EE_MSG_CAF_ASSETS_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'messages/assets/');
26
-            define('EE_MSG_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/');
27
-            define('EE_MSG_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/');
28
-            define('EE_MSG_CAF_TEMPLATE_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/templates/');
24
+        if ( ! defined('EE_MSG_CAF_ASSETS_PATH')) {
25
+            define('EE_MSG_CAF_ASSETS_PATH', EE_CORE_CAF_ADMIN_EXTEND.'messages/assets/');
26
+            define('EE_MSG_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL.'messages/assets/');
27
+            define('EE_MSG_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND.'messages/templates/');
28
+            define('EE_MSG_CAF_TEMPLATE_URL', EE_CORE_CAF_ADMIN_EXTEND_URL.'messages/templates/');
29 29
         }
30 30
     }
31 31
 
32 32
     protected function _extend_page_config()
33 33
     {
34
-        $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'messages';
34
+        $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND.'messages';
35 35
         $this->_page_routes['custom_mtps'] = array(
36 36
             'func'       => '_ee_custom_messages_overview_list_table',
37 37
             'capability' => 'ee_read_messages',
@@ -76,13 +76,13 @@  discard block
 block discarded – undo
76 76
     {
77 77
         global $admin_page_hooks;
78 78
 
79
-        if (! empty($admin_page_hooks['espresso_events'])) {
79
+        if ( ! empty($admin_page_hooks['espresso_events'])) {
80 80
             // we're on a EE specific page... good stuff!
81 81
             $hook_prefix = $admin_page_hooks['espresso_events'];
82
-            $filter_ref = $hook_prefix . '_page_' . $this->page_slug;
83
-            add_filter('FHEE_manage_' . $filter_ref . '_columns', array($this, 'add_custom_mtps_columns'), 10, 2);
82
+            $filter_ref = $hook_prefix.'_page_'.$this->page_slug;
83
+            add_filter('FHEE_manage_'.$filter_ref.'_columns', array($this, 'add_custom_mtps_columns'), 10, 2);
84 84
             add_action(
85
-                'AHEE__EE_Admin_List_Table__column_actions__' . $filter_ref,
85
+                'AHEE__EE_Admin_List_Table__column_actions__'.$filter_ref,
86 86
                 array($this, 'custom_mtp_create_button_column'),
87 87
                 10,
88 88
                 2
Please login to merge, or discard this patch.
admin/extend/messages/templates/create_custom_template_form.template.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
             <p>
20 20
                 <label for="custom-message-template-name">
21 21
                     <?php _e(
22
-                        'Name for Template:',
23
-                        'event_espresso'
24
-                    ); ?></label><br/>
22
+						'Name for Template:',
23
+						'event_espresso'
24
+					); ?></label><br/>
25 25
                 <input id="custom-message-template-name" type="text" class="regular-text"
26 26
                        name="custom_template_args[MTP_name]" value="">
27 27
             </p>
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
                        value="<?php _e('Create Template', 'event_espresso'); ?>">
38 38
                 <button type="button" class="button button-secondary cancel-create-template">
39 39
                     <?php _e(
40
-                        'Cancel',
41
-                        'event_espresso'
42
-                    ); ?></button>
40
+						'Cancel',
41
+						'event_espresso'
42
+					); ?></button>
43 43
             </div>
44 44
         </form>
45 45
     </div>
Please login to merge, or discard this patch.
admin/extend/general_settings/Extend_General_Settings_Admin_Page.core.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
     public function __construct($routing = true)
22 22
     {
23 23
         parent::__construct($routing);
24
-        define('GEN_SET_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'general_settings/templates/');
24
+        define('GEN_SET_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND.'general_settings/templates/');
25 25
     }
26 26
 
27 27
 
28 28
     protected function _extend_page_config()
29 29
     {
30 30
 
31
-        $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'general_settings';
31
+        $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND.'general_settings';
32 32
 
33 33
         // filters and action hooks here
34 34
         add_action('AHEE__admin_option_settings__template__before', array($this, 'debug_logging_options'), 9);
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         $template_args['remote_logging_url'] = isset(EE_Registry::instance()->CFG->admin->remote_logging_url)
61 61
                                                && ! empty(EE_Registry::instance()->CFG->admin->remote_logging_url)
62 62
             ? stripslashes(EE_Registry::instance()->CFG->admin->remote_logging_url) : '';
63
-        $template = GEN_SET_CAF_TEMPLATE_PATH . 'debug_log_settings.template.php';
63
+        $template = GEN_SET_CAF_TEMPLATE_PATH.'debug_log_settings.template.php';
64 64
         EEH_Template::display_template($template, $template_args);
65 65
     }
66 66
 
Please login to merge, or discard this patch.
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -18,68 +18,68 @@
 block discarded – undo
18 18
 {
19 19
 
20 20
 
21
-    public function __construct($routing = true)
22
-    {
23
-        parent::__construct($routing);
24
-        define('GEN_SET_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'general_settings/templates/');
25
-    }
21
+	public function __construct($routing = true)
22
+	{
23
+		parent::__construct($routing);
24
+		define('GEN_SET_CAF_TEMPLATE_PATH', EE_CORE_CAF_ADMIN_EXTEND . 'general_settings/templates/');
25
+	}
26 26
 
27 27
 
28
-    protected function _extend_page_config()
29
-    {
28
+	protected function _extend_page_config()
29
+	{
30 30
 
31
-        $this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'general_settings';
31
+		$this->_admin_base_path = EE_CORE_CAF_ADMIN_EXTEND . 'general_settings';
32 32
 
33
-        // filters and action hooks here
34
-        add_action('AHEE__admin_option_settings__template__before', array($this, 'debug_logging_options'), 9);
35
-        add_filter(
36
-            'FHEE__General_Settings_Admin_Page___update_admin_option_settings__CFG_admin',
37
-            array($this, 'update_debug_logging_options'),
38
-            10,
39
-            1
40
-        );
41
-    }
33
+		// filters and action hooks here
34
+		add_action('AHEE__admin_option_settings__template__before', array($this, 'debug_logging_options'), 9);
35
+		add_filter(
36
+			'FHEE__General_Settings_Admin_Page___update_admin_option_settings__CFG_admin',
37
+			array($this, 'update_debug_logging_options'),
38
+			10,
39
+			1
40
+		);
41
+	}
42 42
 
43 43
 
44 44
 
45
-    /*************        Logging Settings        *************/
45
+	/*************        Logging Settings        *************/
46 46
 
47
-    /**
48
-     * debug_logging_options
49
-     *
50
-     * @param array $template_args
51
-     *
52
-     * @return void
53
-     */
54
-    public function debug_logging_options($template_args = array())
55
-    {
56
-        $template_args['use_remote_logging'] = isset(EE_Registry::instance()->CFG->admin->use_remote_logging) ? absint(
57
-            EE_Registry::instance()->CFG->admin->use_remote_logging
58
-        ) : false;
59
-        $template_args['remote_logging_url'] = isset(EE_Registry::instance()->CFG->admin->remote_logging_url)
60
-                                               && ! empty(EE_Registry::instance()->CFG->admin->remote_logging_url)
61
-            ? stripslashes(EE_Registry::instance()->CFG->admin->remote_logging_url) : '';
62
-        $template = GEN_SET_CAF_TEMPLATE_PATH . 'debug_log_settings.template.php';
63
-        EEH_Template::display_template($template, $template_args);
64
-    }
47
+	/**
48
+	 * debug_logging_options
49
+	 *
50
+	 * @param array $template_args
51
+	 *
52
+	 * @return void
53
+	 */
54
+	public function debug_logging_options($template_args = array())
55
+	{
56
+		$template_args['use_remote_logging'] = isset(EE_Registry::instance()->CFG->admin->use_remote_logging) ? absint(
57
+			EE_Registry::instance()->CFG->admin->use_remote_logging
58
+		) : false;
59
+		$template_args['remote_logging_url'] = isset(EE_Registry::instance()->CFG->admin->remote_logging_url)
60
+											   && ! empty(EE_Registry::instance()->CFG->admin->remote_logging_url)
61
+			? stripslashes(EE_Registry::instance()->CFG->admin->remote_logging_url) : '';
62
+		$template = GEN_SET_CAF_TEMPLATE_PATH . 'debug_log_settings.template.php';
63
+		EEH_Template::display_template($template, $template_args);
64
+	}
65 65
 
66 66
 
67
-    /**
68
-     * update_debug_logging_options
69
-     *
70
-     * @param array $admin_options
71
-     *
72
-     * @return array
73
-     */
74
-    public function update_debug_logging_options($admin_options = array())
75
-    {
76
-        $admin_options->use_remote_logging = isset($this->_req_data['use_remote_logging']) ? absint(
77
-            $this->_req_data['use_remote_logging']
78
-        ) : $admin_options->use_remote_logging;
79
-        $admin_options->remote_logging_url = isset($this->_req_data['remote_logging_url']) ? esc_url_raw(
80
-            $this->_req_data['remote_logging_url']
81
-        ) : $admin_options->remote_logging_url;
67
+	/**
68
+	 * update_debug_logging_options
69
+	 *
70
+	 * @param array $admin_options
71
+	 *
72
+	 * @return array
73
+	 */
74
+	public function update_debug_logging_options($admin_options = array())
75
+	{
76
+		$admin_options->use_remote_logging = isset($this->_req_data['use_remote_logging']) ? absint(
77
+			$this->_req_data['use_remote_logging']
78
+		) : $admin_options->use_remote_logging;
79
+		$admin_options->remote_logging_url = isset($this->_req_data['remote_logging_url']) ? esc_url_raw(
80
+			$this->_req_data['remote_logging_url']
81
+		) : $admin_options->remote_logging_url;
82 82
 
83
-        return $admin_options;
84
-    }
83
+		return $admin_options;
84
+	}
85 85
 }
Please login to merge, or discard this patch.
admin/extend/registrations/templates/newsletter-send-form.template.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -34,10 +34,10 @@  discard block
 block discarded – undo
34 34
             <input type="hidden" name="batch_message[id_type]" value="<?php echo $id_type; ?>">
35 35
             <input id="newsletter-batch-ids" type="hidden" name="batch_message[ids]" value="">
36 36
             <h3 class="newsletter-send-form-title"><?php
37
-                printf(
38
-                    __('Sending batch message to %s people...', 'event_espresso'),
39
-                    '[NUMPEOPLE]'
40
-                ); ?></h3>
37
+				printf(
38
+					__('Sending batch message to %s people...', 'event_espresso'),
39
+					'[NUMPEOPLE]'
40
+				); ?></h3>
41 41
             <label for="batch-message-template-selector"><?php _e('Select Template:', 'event_espresso'); ?></label>
42 42
             <?php echo $template_selector; ?>
43 43
             <div class="batch-message-edit-fields" style="display:none;">
@@ -59,10 +59,10 @@  discard block
 block discarded – undo
59 59
                     <div id="shortcode-container-subject"
60 60
                          class="shortcodes-info-container ee_shortcode_chooser_container" style="display:none">
61 61
                         <p><?php
62
-                            _e(
63
-                                'The following shortcodes can be used in the subject field:',
64
-                                'event_espresso'
65
-                            ); ?></p>
62
+							_e(
63
+								'The following shortcodes can be used in the subject field:',
64
+								'event_espresso'
65
+							); ?></p>
66 66
                         <p><?php echo $shortcodes['Subject']; ?></p>
67 67
                     </div>
68 68
                     <input type="text" name="batch_message[subject]" id="batch-message-subject"
@@ -75,10 +75,10 @@  discard block
 block discarded – undo
75 75
                     <div id="shortcode-container-content"
76 76
                          class="shortcodes-info-container ee_shortcode_chooser_container" style="display:none">
77 77
                         <p><?php
78
-                            _e(
79
-                                'The following shortcodes can be used in the content area:',
80
-                                'event_espresso'
81
-                            ); ?></p>
78
+							_e(
79
+								'The following shortcodes can be used in the content area:',
80
+								'event_espresso'
81
+							); ?></p>
82 82
                         <p><?php echo $shortcodes['[NEWSLETTER_CONTENT]']; ?></p>
83 83
                     </div>
84 84
                     <textarea name="batch_message[content]" id="batch-message-content"
@@ -87,10 +87,10 @@  discard block
 block discarded – undo
87 87
                 <input type="submit" class="batch-message-submit button button-primary alignright"
88 88
                        name="batch-message-submit" value="<?php _e('Send', 'event_espresso'); ?>">
89 89
                 <button class="batch-message-cancel button button-secondary alignright"><?php
90
-                    _e(
91
-                        'Cancel',
92
-                        'event_espresso'
93
-                    ); ?></button>
90
+					_e(
91
+						'Cancel',
92
+						'event_espresso'
93
+					); ?></button>
94 94
                 <div style="clear:both"></div>
95 95
             </div>
96 96
         </form>
Please login to merge, or discard this patch.
caffeinated/admin/extend/events/qtips/EE_Event_Editor_Tips.lib.php 2 patches
Indentation   +180 added lines, -180 removed lines patch added patch discarded remove patch
@@ -15,189 +15,189 @@
 block discarded – undo
15 15
 {
16 16
 
17 17
 
18
-    protected function _set_tips_array()
19
-    {
20
-        $this->_qtipsa = array(
21
-            0  => array(
22
-                'content_id' => 'about-taxable-toggle',
23
-                'target'     => '.TKT-taxable-checkbox',
24
-                'content'    => $this->_get_taxable_info_content(),
25
-                'options'    => array(
26
-                    'show_only_once' => true,
27
-                    'content'        => array(
28
-                        'title' => __('Taxable Ticket Toggle', 'event_espresso'),
29
-                        'button' => true,
30
-                    ),
31
-                    'show'           => array(
32
-                        'event' => 'click',
33
-                    ),
34
-                    'hide'           => array(
35
-                        'event' => false,
36
-                    ),
37
-                    'style'          => array(
38
-                        'classes' => '',
39
-                    ),
40
-                )// defaults
41
-            ),
42
-            1  => array(
43
-                'content_id' => 'ticket-icon-help',
44
-                'target'     => '.ticket-icon',
45
-                'content'    => __('Assigned Tickets', 'event_espresso'),
46
-            ),
47
-            2  => array(
48
-                'content_id' => 'clone-icon-help',
49
-                'target'     => '.clone-icon',
50
-                'content'    => __('Duplicate this Item', 'event_espresso'),
51
-            ),
52
-            3  => array(
53
-                'content_id' => 'trash-datetime-help',
54
-                'target'     => '.datetime-edit-table .trash-icon',
55
-                'content'    => __('Trash Datetime', 'event_espresso'),
56
-            ),
57
-            4  => array(
58
-                'content_id' => 'trash-ticket-help',
59
-                'target'     => '.ticket-row .trash-icon',
60
-                'content'    => __('Trash Ticket', 'event_espresso'),
61
-            ),
62
-            5  => array(
63
-                'content_id' => 'trash-price-modifier-help',
64
-                'target'     => '.ticket-price-rows .trash-icon',
65
-                'content'    => __('Trash Price Modifier', 'event_espresso'),
66
-            ),
67
-            6  => array(
68
-                'content_id' => 'gear-icon-help',
69
-                'target'     => '.gear-icon',
70
-                'content'    => __('Advanced Settings', 'event_espresso'),
71
-            ),
72
-            7  => array(
73
-                'content_id' => 'tkt-status-archived',
74
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::archived,
75
-                'content'    => $this->_ticket_status_legend(EE_Ticket::archived),
76
-                'options'    => array(
77
-                    'position' => array(
78
-                        'target' => 'mouse',
79
-                        'adjust' => array(
80
-                            'mouse' => false,
81
-                        ),
82
-                    ),
83
-                ),
84
-            ),
85
-            8  => array(
86
-                'content_id' => 'tkt-status-expired',
87
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::expired,
88
-                'content'    => $this->_ticket_status_legend(EE_Ticket::expired),
89
-                'options'    => array(
90
-                    'position' => array(
91
-                        'target' => 'mouse',
92
-                        'adjust' => array(
93
-                            'mouse' => false,
94
-                        ),
95
-                    ),
96
-                ),
97
-            ),
98
-            9  => array(
99
-                'content_id' => 'tkt-status-sold_out',
100
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::sold_out,
101
-                'content'    => $this->_ticket_status_legend(EE_Ticket::sold_out),
102
-                'options'    => array(
103
-                    'position' => array(
104
-                        'target' => 'mouse',
105
-                        'adjust' => array(
106
-                            'mouse' => false,
107
-                        ),
108
-                    ),
109
-                ),
110
-            ),
111
-            10 => array(
112
-                'content_id' => 'tkt-status-pending',
113
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::pending,
114
-                'content'    => $this->_ticket_status_legend(EE_Ticket::pending),
115
-                'options'    => array(
116
-                    'position' => array(
117
-                        'target' => 'mouse',
118
-                        'adjust' => array(
119
-                            'mouse' => false,
120
-                        ),
121
-                    ),
122
-                ),
123
-            ),
124
-            11 => array(
125
-                'content_id' => 'tkt-status-onsale',
126
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::onsale,
127
-                'content'    => $this->_ticket_status_legend(EE_Ticket::onsale),
128
-                'options'    => array(
129
-                    'position' => array(
130
-                        'target' => 'mouse',
131
-                        'adjust' => array(
132
-                            'mouse' => false,
133
-                        ),
134
-                    ),
135
-                ),
136
-            ),
137
-            12 => array(
138
-                'content_id' => 'sortable-tkt-drag-handle-tip',
139
-                'target'     => '.ee-ticket-sortable .sortable-drag-handle',
140
-                'content'    => __('Click and drag-n-drop to reorder tickets.', 'event_espresso'),
141
-                'options'    => array(
142
-                    'position' => array(
143
-                        'adjust' => array(
144
-                            'mouse' => false,
145
-                            'y'     => 5,
146
-                        ),
147
-                    ),
148
-                ),
149
-            ),
150
-            13 => array(
151
-                'content_id' => 'sortable-dtt-drag-handle-tip',
152
-                'target'     => '.ee-dtt-sortable .sortable-drag-handle',
153
-                'content'    => __('Click and drag-n-drop to reorder datetimes.', 'event_espresso'),
154
-                'options'    => array(
155
-                    'position' => array(
156
-                        'adjust' => array(
157
-                            'mouse' => false,
158
-                            'y'     => 5,
159
-                        ),
160
-                    ),
161
-                ),
162
-            ),
163
-        );
164
-    }
18
+	protected function _set_tips_array()
19
+	{
20
+		$this->_qtipsa = array(
21
+			0  => array(
22
+				'content_id' => 'about-taxable-toggle',
23
+				'target'     => '.TKT-taxable-checkbox',
24
+				'content'    => $this->_get_taxable_info_content(),
25
+				'options'    => array(
26
+					'show_only_once' => true,
27
+					'content'        => array(
28
+						'title' => __('Taxable Ticket Toggle', 'event_espresso'),
29
+						'button' => true,
30
+					),
31
+					'show'           => array(
32
+						'event' => 'click',
33
+					),
34
+					'hide'           => array(
35
+						'event' => false,
36
+					),
37
+					'style'          => array(
38
+						'classes' => '',
39
+					),
40
+				)// defaults
41
+			),
42
+			1  => array(
43
+				'content_id' => 'ticket-icon-help',
44
+				'target'     => '.ticket-icon',
45
+				'content'    => __('Assigned Tickets', 'event_espresso'),
46
+			),
47
+			2  => array(
48
+				'content_id' => 'clone-icon-help',
49
+				'target'     => '.clone-icon',
50
+				'content'    => __('Duplicate this Item', 'event_espresso'),
51
+			),
52
+			3  => array(
53
+				'content_id' => 'trash-datetime-help',
54
+				'target'     => '.datetime-edit-table .trash-icon',
55
+				'content'    => __('Trash Datetime', 'event_espresso'),
56
+			),
57
+			4  => array(
58
+				'content_id' => 'trash-ticket-help',
59
+				'target'     => '.ticket-row .trash-icon',
60
+				'content'    => __('Trash Ticket', 'event_espresso'),
61
+			),
62
+			5  => array(
63
+				'content_id' => 'trash-price-modifier-help',
64
+				'target'     => '.ticket-price-rows .trash-icon',
65
+				'content'    => __('Trash Price Modifier', 'event_espresso'),
66
+			),
67
+			6  => array(
68
+				'content_id' => 'gear-icon-help',
69
+				'target'     => '.gear-icon',
70
+				'content'    => __('Advanced Settings', 'event_espresso'),
71
+			),
72
+			7  => array(
73
+				'content_id' => 'tkt-status-archived',
74
+				'target'     => '.ticket-row .tkt-status-' . EE_Ticket::archived,
75
+				'content'    => $this->_ticket_status_legend(EE_Ticket::archived),
76
+				'options'    => array(
77
+					'position' => array(
78
+						'target' => 'mouse',
79
+						'adjust' => array(
80
+							'mouse' => false,
81
+						),
82
+					),
83
+				),
84
+			),
85
+			8  => array(
86
+				'content_id' => 'tkt-status-expired',
87
+				'target'     => '.ticket-row .tkt-status-' . EE_Ticket::expired,
88
+				'content'    => $this->_ticket_status_legend(EE_Ticket::expired),
89
+				'options'    => array(
90
+					'position' => array(
91
+						'target' => 'mouse',
92
+						'adjust' => array(
93
+							'mouse' => false,
94
+						),
95
+					),
96
+				),
97
+			),
98
+			9  => array(
99
+				'content_id' => 'tkt-status-sold_out',
100
+				'target'     => '.ticket-row .tkt-status-' . EE_Ticket::sold_out,
101
+				'content'    => $this->_ticket_status_legend(EE_Ticket::sold_out),
102
+				'options'    => array(
103
+					'position' => array(
104
+						'target' => 'mouse',
105
+						'adjust' => array(
106
+							'mouse' => false,
107
+						),
108
+					),
109
+				),
110
+			),
111
+			10 => array(
112
+				'content_id' => 'tkt-status-pending',
113
+				'target'     => '.ticket-row .tkt-status-' . EE_Ticket::pending,
114
+				'content'    => $this->_ticket_status_legend(EE_Ticket::pending),
115
+				'options'    => array(
116
+					'position' => array(
117
+						'target' => 'mouse',
118
+						'adjust' => array(
119
+							'mouse' => false,
120
+						),
121
+					),
122
+				),
123
+			),
124
+			11 => array(
125
+				'content_id' => 'tkt-status-onsale',
126
+				'target'     => '.ticket-row .tkt-status-' . EE_Ticket::onsale,
127
+				'content'    => $this->_ticket_status_legend(EE_Ticket::onsale),
128
+				'options'    => array(
129
+					'position' => array(
130
+						'target' => 'mouse',
131
+						'adjust' => array(
132
+							'mouse' => false,
133
+						),
134
+					),
135
+				),
136
+			),
137
+			12 => array(
138
+				'content_id' => 'sortable-tkt-drag-handle-tip',
139
+				'target'     => '.ee-ticket-sortable .sortable-drag-handle',
140
+				'content'    => __('Click and drag-n-drop to reorder tickets.', 'event_espresso'),
141
+				'options'    => array(
142
+					'position' => array(
143
+						'adjust' => array(
144
+							'mouse' => false,
145
+							'y'     => 5,
146
+						),
147
+					),
148
+				),
149
+			),
150
+			13 => array(
151
+				'content_id' => 'sortable-dtt-drag-handle-tip',
152
+				'target'     => '.ee-dtt-sortable .sortable-drag-handle',
153
+				'content'    => __('Click and drag-n-drop to reorder datetimes.', 'event_espresso'),
154
+				'options'    => array(
155
+					'position' => array(
156
+						'adjust' => array(
157
+							'mouse' => false,
158
+							'y'     => 5,
159
+						),
160
+					),
161
+				),
162
+			),
163
+		);
164
+	}
165 165
 
166 166
 
167
-    private function _get_taxable_info_content()
168
-    {
169
-        $price_admin_link = EE_Admin_Page::add_query_args_and_nonce(array('action' => 'default'), PRICING_ADMIN_URL);
170
-        return '<p>'
171
-               . sprintf(
172
-                   __(
173
-                       'Clicking the taxable ticket toggle checkbox has enabled taxes for this ticket. What this means is that when a person purchases this ticket, the tax will be applied to all prices on this ticket. You can edit the existing tax price modifier that was setup in Event Espresso by going to  %sDefault Pricing Admin Page%s (labelled "Pricing" in the Event Espresso Menu)',
174
-                       'event_espresso'
175
-                   ),
176
-                   '<a href="' . $price_admin_link . '" title="' . esc_attr__(
177
-                       'Pricing Admin Page',
178
-                       'event_espresso'
179
-                   ) . '">',
180
-                   '</a>'
181
-               ) . '</p>';
182
-    }
167
+	private function _get_taxable_info_content()
168
+	{
169
+		$price_admin_link = EE_Admin_Page::add_query_args_and_nonce(array('action' => 'default'), PRICING_ADMIN_URL);
170
+		return '<p>'
171
+			   . sprintf(
172
+				   __(
173
+					   'Clicking the taxable ticket toggle checkbox has enabled taxes for this ticket. What this means is that when a person purchases this ticket, the tax will be applied to all prices on this ticket. You can edit the existing tax price modifier that was setup in Event Espresso by going to  %sDefault Pricing Admin Page%s (labelled "Pricing" in the Event Espresso Menu)',
174
+					   'event_espresso'
175
+				   ),
176
+				   '<a href="' . $price_admin_link . '" title="' . esc_attr__(
177
+					   'Pricing Admin Page',
178
+					   'event_espresso'
179
+				   ) . '">',
180
+				   '</a>'
181
+			   ) . '</p>';
182
+	}
183 183
 
184
-    /**
185
-     * output the relevant ee-status-legend with the designated status highlighted.
186
-     *
187
-     * @param  EE_Ticket constant $status What status is set (by class)
188
-     * @return string         The status legend with the related status highlighted
189
-     */
190
-    private function _ticket_status_legend($status)
191
-    {
184
+	/**
185
+	 * output the relevant ee-status-legend with the designated status highlighted.
186
+	 *
187
+	 * @param  EE_Ticket constant $status What status is set (by class)
188
+	 * @return string         The status legend with the related status highlighted
189
+	 */
190
+	private function _ticket_status_legend($status)
191
+	{
192 192
 
193
-        $status_array = array(
194
-            'archived' => EE_Ticket::archived,
195
-            'expired'  => EE_Ticket::expired,
196
-            'sold_out' => EE_Ticket::sold_out,
197
-            'pending'  => EE_Ticket::pending,
198
-            'onsale'   => EE_Ticket::onsale,
199
-        );
193
+		$status_array = array(
194
+			'archived' => EE_Ticket::archived,
195
+			'expired'  => EE_Ticket::expired,
196
+			'sold_out' => EE_Ticket::sold_out,
197
+			'pending'  => EE_Ticket::pending,
198
+			'onsale'   => EE_Ticket::onsale,
199
+		);
200 200
 
201
-        return EEH_Template::status_legend($status_array, $status);
202
-    }
201
+		return EEH_Template::status_legend($status_array, $status);
202
+	}
203 203
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             ),
72 72
             7  => array(
73 73
                 'content_id' => 'tkt-status-archived',
74
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::archived,
74
+                'target'     => '.ticket-row .tkt-status-'.EE_Ticket::archived,
75 75
                 'content'    => $this->_ticket_status_legend(EE_Ticket::archived),
76 76
                 'options'    => array(
77 77
                     'position' => array(
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
             ),
85 85
             8  => array(
86 86
                 'content_id' => 'tkt-status-expired',
87
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::expired,
87
+                'target'     => '.ticket-row .tkt-status-'.EE_Ticket::expired,
88 88
                 'content'    => $this->_ticket_status_legend(EE_Ticket::expired),
89 89
                 'options'    => array(
90 90
                     'position' => array(
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             ),
98 98
             9  => array(
99 99
                 'content_id' => 'tkt-status-sold_out',
100
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::sold_out,
100
+                'target'     => '.ticket-row .tkt-status-'.EE_Ticket::sold_out,
101 101
                 'content'    => $this->_ticket_status_legend(EE_Ticket::sold_out),
102 102
                 'options'    => array(
103 103
                     'position' => array(
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
             ),
111 111
             10 => array(
112 112
                 'content_id' => 'tkt-status-pending',
113
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::pending,
113
+                'target'     => '.ticket-row .tkt-status-'.EE_Ticket::pending,
114 114
                 'content'    => $this->_ticket_status_legend(EE_Ticket::pending),
115 115
                 'options'    => array(
116 116
                     'position' => array(
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
             ),
124 124
             11 => array(
125 125
                 'content_id' => 'tkt-status-onsale',
126
-                'target'     => '.ticket-row .tkt-status-' . EE_Ticket::onsale,
126
+                'target'     => '.ticket-row .tkt-status-'.EE_Ticket::onsale,
127 127
                 'content'    => $this->_ticket_status_legend(EE_Ticket::onsale),
128 128
                 'options'    => array(
129 129
                     'position' => array(
@@ -173,12 +173,12 @@  discard block
 block discarded – undo
173 173
                        'Clicking the taxable ticket toggle checkbox has enabled taxes for this ticket. What this means is that when a person purchases this ticket, the tax will be applied to all prices on this ticket. You can edit the existing tax price modifier that was setup in Event Espresso by going to  %sDefault Pricing Admin Page%s (labelled "Pricing" in the Event Espresso Menu)',
174 174
                        'event_espresso'
175 175
                    ),
176
-                   '<a href="' . $price_admin_link . '" title="' . esc_attr__(
176
+                   '<a href="'.$price_admin_link.'" title="'.esc_attr__(
177 177
                        'Pricing Admin Page',
178 178
                        'event_espresso'
179
-                   ) . '">',
179
+                   ).'">',
180 180
                    '</a>'
181
-               ) . '</p>';
181
+               ).'</p>';
182 182
     }
183 183
 
184 184
     /**
Please login to merge, or discard this patch.
caffeinated/admin/extend/events/help_tabs/import_page.help_tab.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -1,48 +1,48 @@
 block discarded – undo
1 1
 <p><strong><?php _e('Importing CSV Event Espresso Data', 'event_espresso'); ?></strong></p>
2 2
 <p>
3 3
     <?php _e(
4
-        'The importer can be used to import event information into Event Espresso using a CSV file.',
5
-        'event_espresso'
6
-    ); ?>
4
+		'The importer can be used to import event information into Event Espresso using a CSV file.',
5
+		'event_espresso'
6
+	); ?>
7 7
 </p>
8 8
 <p><strong><?php _e("Importing from other Event Espresso 4 Sites", 'event_espresso'); ?></strong></p>
9 9
 <p>
10 10
     <?php _e(
11
-        'To import Event Espresso data from another Event Espresso 4 install, export a CSV file from the admin Events overview page, or anywhere you can generate a CSV export file from. Then upload that file here (regardless of what type of information was exported).',
12
-        'event_espresso'
13
-    ); ?>
11
+		'To import Event Espresso data from another Event Espresso 4 install, export a CSV file from the admin Events overview page, or anywhere you can generate a CSV export file from. Then upload that file here (regardless of what type of information was exported).',
12
+		'event_espresso'
13
+	); ?>
14 14
 </p>
15 15
 <p>
16 16
     <?php _e(
17
-        'Note: its possible that data from the other site have the same IDs as data in this site. The importer recognizes that this data is from a different database and inserts new items for each item in the CSV file, regardless of whether its ID matches that of an item in this site\'s database or not. However, the importer also remembers the mapping from the old site\'s database to this site\'s database, and on subsequent CSV importers from that site, the data in this database will be updated instead of re-inserting new items.',
18
-        'event_espresso'
19
-    ); ?>
17
+		'Note: its possible that data from the other site have the same IDs as data in this site. The importer recognizes that this data is from a different database and inserts new items for each item in the CSV file, regardless of whether its ID matches that of an item in this site\'s database or not. However, the importer also remembers the mapping from the old site\'s database to this site\'s database, and on subsequent CSV importers from that site, the data in this database will be updated instead of re-inserting new items.',
18
+		'event_espresso'
19
+	); ?>
20 20
 </p>
21 21
 <p><strong><?php _e("Importing from this Site", 'event_espresso'); ?></strong></p>
22 22
 <p><?php
23
-    _e(
24
-        "You may want to export data from this site, modify it (or modify the database), and re-import it. When this is done, the importer recognizes that the data is from this site\'s database and updates the records (instead of inserting new items like it would have, had the CSV data been from a different site).",
25
-        'event_espresso'
26
-    ); ?></p>
23
+	_e(
24
+		"You may want to export data from this site, modify it (or modify the database), and re-import it. When this is done, the importer recognizes that the data is from this site\'s database and updates the records (instead of inserting new items like it would have, had the CSV data been from a different site).",
25
+		'event_espresso'
26
+	); ?></p>
27 27
 
28 28
 <p><strong><?php _e("Notes about Generating your own CSV Import Files", "event_espresso"); ?></strong></p>
29 29
 <p><?php
30
-    _e(
31
-        "If you think you could save time entering data into a CSV file, you can use the sample import file below. Note that creating your own CSV file is more complicated than in Event Espresso 3.1 because of the more advanced data structure, and so we recommend creating/editing your events using the normal web-interface.",
32
-        "event_espresso"
33
-    ); ?></p>
30
+	_e(
31
+		"If you think you could save time entering data into a CSV file, you can use the sample import file below. Note that creating your own CSV file is more complicated than in Event Espresso 3.1 because of the more advanced data structure, and so we recommend creating/editing your events using the normal web-interface.",
32
+		"event_espresso"
33
+	); ?></p>
34 34
 <p><?php
35
-    _e(
36
-        "The export file is just an export of an event, or if you do not have any events in your system, it will only contain column headers. Do not change those column headers. Add as many rows as you like. ",
37
-        "event_espresso"
38
-    ); ?></p>
35
+	_e(
36
+		"The export file is just an export of an event, or if you do not have any events in your system, it will only contain column headers. Do not change those column headers. Add as many rows as you like. ",
37
+		"event_espresso"
38
+	); ?></p>
39 39
 <p><?php
40
-    _e(
41
-        "In the ID columns (columns ending in '_ID'), you should enter 'temporary IDs', which are unique numbers/words that identify that item, which can be used later when you want to refer to that item. (For example, if you assign an event's EVT_ID to be a temporary id of 'my-event-1', then use that same phrase 'my-event-1' to refer to that event in the Datetime model's EVT_ID column)",
42
-        "event_espresso"
43
-    ); ?></p>
40
+	_e(
41
+		"In the ID columns (columns ending in '_ID'), you should enter 'temporary IDs', which are unique numbers/words that identify that item, which can be used later when you want to refer to that item. (For example, if you assign an event's EVT_ID to be a temporary id of 'my-event-1', then use that same phrase 'my-event-1' to refer to that event in the Datetime model's EVT_ID column)",
42
+		"event_espresso"
43
+	); ?></p>
44 44
 <p><?php
45
-    _e(
46
-        "Also note, you do NOT have to enter info in for each model. (You can, for example, only enter in Term_Taxonomies and Term model data)",
47
-        "event_espresso"
48
-    ); ?></p>
49 45
\ No newline at end of file
46
+	_e(
47
+		"Also note, you do NOT have to enter info in for each model. (You can, for example, only enter in Term_Taxonomies and Term model data)",
48
+		"event_espresso"
49
+	); ?></p>
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
admin/extend/events/templates/event_datetime_timezones.template.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
         <span class="current-date"> <?php echo $current_date; ?></span>
5 5
         <?php echo $current_time_help_link; ?>
6 6
         <a id="change-date-time-lnk" href="options-general.php" target="_blank"><?php
7
-            _e('Change timezone and date format settings?', 'event_espresso');
8
-            ?></a>
7
+			_e('Change timezone and date format settings?', 'event_espresso');
8
+			?></a>
9 9
 
10 10
         <h6> <?php _e('Event Timezone:', 'event_espresso') ?> </h6>
11 11
         <?php echo $event_timezone; ?>
Please login to merge, or discard this patch.
caffeinated/admin/extend/events/templates/import_page.template.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <div class="import-area">
2 2
     <div class="important-notice">
3 3
         <?php _e(
4
-            'The import feature has been disabled because of bugs. It is expected to be put back in place soon.',
5
-            'event_espresso'
6
-        ); ?>
4
+			'The import feature has been disabled because of bugs. It is expected to be put back in place soon.',
5
+			'event_espresso'
6
+		); ?>
7 7
     </div>
8 8
     <?php // echo $form?>
9 9
 </div>
Please login to merge, or discard this patch.
admin/extend/events/templates/event_type_metabox_contents.template.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
     </ul>
5 5
     <div id="espresso_event_type-all" class="tabs-panel">
6 6
         <?php
7
-        $name = 'tax_input[espresso_event_type]';
8
-        echo "<input type='hidden' name='{$name}[]' value='0' />"; // Allows for an empty term set to be sent. 0 is an invalid Term ID and will be ignored by empty() checks.
9
-        ?>
7
+		$name = 'tax_input[espresso_event_type]';
8
+		echo "<input type='hidden' name='{$name}[]' value='0' />"; // Allows for an empty term set to be sent. 0 is an invalid Term ID and will be ignored by empty() checks.
9
+		?>
10 10
         <ul id="espresso_event_typechecklist" data-wp-lists="list:espresso_event_type"
11 11
             class="categorychecklist form-no-clear">
12 12
             <?php echo $radio_list; ?>
Please login to merge, or discard this patch.