@@ -26,7 +26,7 @@ |
||
| 26 | 26 | * @param \blitze\content\services\helper $helper Content helper object |
| 27 | 27 | * @param \blitze\content\services\quickmod $quickmod Quick moderator tools |
| 28 | 28 | * @param \phpbb\request\request_interface $request Request object |
| 29 | - */ |
|
| 29 | + */ |
|
| 30 | 30 | public function __construct(\phpbb\event\dispatcher_interface $phpbb_dispatcher, \phpbb\language\language $language, \phpbb\pagination $pagination, \phpbb\template\template $template, \blitze\content\services\fields $fields, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper, \blitze\content\services\quickmod $quickmod, \phpbb\request\request_interface $request) |
| 31 | 31 | { |
| 32 | 32 | parent::__construct($phpbb_dispatcher, $language, $pagination, $template, $fields, $forum, $helper, $quickmod); |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | // Let's create the new BBCode |
| 43 | 43 | $configurator->BBCodes->addCustom( |
| 44 | 44 | '[pagebreak title={SIMPLETEXT;optional;postFilter=ucwords}]', |
| 45 | - '<p><!-- pagebreak --></p>' . |
|
| 45 | + '<p><!-- pagebreak --></p>'. |
|
| 46 | 46 | '<xsl:if test="@title"><h4>{SIMPLETEXT}</h4><br /></xsl:if>' |
| 47 | 47 | ); |
| 48 | 48 | } |
@@ -63,8 +63,8 @@ discard block |
||
| 63 | 63 | // Let's create the new BBCode |
| 64 | 64 | $configurator->BBCodes->addCustom( |
| 65 | 65 | '[tag={IDENTIFIER}]{TEXT}[/tag]', |
| 66 | - "<!-- begin field -->\n" . |
|
| 67 | - "<div data-field=\"{IDENTIFIER}\">{TEXT}</div><br />\n" . |
|
| 66 | + "<!-- begin field -->\n". |
|
| 67 | + "<div data-field=\"{IDENTIFIER}\">{TEXT}</div><br />\n". |
|
| 68 | 68 | "<!-- end field -->\n" |
| 69 | 69 | ); |
| 70 | 70 | } |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | |
| 97 | 97 | $this->display_mode = $view_mode; |
| 98 | 98 | $this->content_type = $entity->get_content_name(); |
| 99 | - $this->tpl_name = ($custom_tpl) ? $this->content_type . '_' . $view_mode : ''; |
|
| 99 | + $this->tpl_name = ($custom_tpl) ? $this->content_type.'_'.$view_mode : ''; |
|
| 100 | 100 | $this->view_mode = (in_array($view_mode, array('summary', 'detail'))) ? $view_mode : 'summary'; |
| 101 | 101 | $this->form_fields = array_intersect_key($this->fields_factory->get_all(), array_flip($view_mode_fields)); |
| 102 | 102 | $this->db_fields = $db_fields; |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | public function show($type, array $topic_data, array $post_data, array $users_cache, array &$attachments, array &$update_count, array $topic_tracking_info, array $topic_data_overwrite = array(), $mode = '') |
| 119 | 119 | { |
| 120 | - $callable = 'get_' . $this->view_mode . '_template_data'; |
|
| 120 | + $callable = 'get_'.$this->view_mode.'_template_data'; |
|
| 121 | 121 | $tpl_data = array_merge(array( |
| 122 | 122 | 'TOPIC_COMMENTS' => $this->comments->count($topic_data), |
| 123 | 123 | 'S_USER_LOGGED_IN' => $this->user->data['is_registered'], |
@@ -185,21 +185,21 @@ discard block |
||
| 185 | 185 | $field_data['field_props'] = array_replace_recursive($this->form_fields[$field_type]->get_default_props(), $field_data['field_props']); |
| 186 | 186 | $field_data['field_value'] = &$field_values[$field_name]; |
| 187 | 187 | |
| 188 | - $field_contents = $this->form_fields[$field_type]->display_field($field_data, $this->display_mode, $tpl_data, $this->content_type); |
|
| 188 | + $field_contents = $this->form_fields[$field_type]->display_field($field_data, $this->display_mode, $tpl_data, $this->content_type); |
|
| 189 | 189 | |
| 190 | 190 | // this essentially hides other fields if the field returns an array |
| 191 | 191 | if (is_array($field_contents)) |
| 192 | 192 | { |
| 193 | 193 | $display_data['all'] = $field_contents; |
| 194 | - $display_data[$field_data['field_' . $this->view_mode . '_show']] = $field_contents; |
|
| 194 | + $display_data[$field_data['field_'.$this->view_mode.'_show']] = $field_contents; |
|
| 195 | 195 | break; |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | 198 | if (!empty($field_contents)) |
| 199 | 199 | { |
| 200 | - $field = '<div class="field-label ' . $this->label[$field_data['field_' . $this->view_mode . '_ldisp']] . '">' . $field_data['field_label'] . $this->language->lang('COLON') . ' </div>' . $field_contents; |
|
| 200 | + $field = '<div class="field-label '.$this->label[$field_data['field_'.$this->view_mode.'_ldisp']].'">'.$field_data['field_label'].$this->language->lang('COLON').' </div>'.$field_contents; |
|
| 201 | 201 | $display_data['all'][$field_name] = $field; |
| 202 | - $display_data[$field_data['field_' . $this->view_mode . '_show']][$field_name] = $field; |
|
| 202 | + $display_data[$field_data['field_'.$this->view_mode.'_show']][$field_name] = $field; |
|
| 203 | 203 | } |
| 204 | 204 | } |
| 205 | 205 | |
@@ -142,8 +142,7 @@ |
||
| 142 | 142 | $this->template->assign_vars(array_change_key_case(array_merge($tpl_data, $fields_data['all']), CASE_UPPER)); |
| 143 | 143 | $this->template->set_filenames(array('content' => $this->tpl_name)); |
| 144 | 144 | $tpl_data['CUSTOM_DISPLAY'] = $this->template->assign_display('content'); |
| 145 | - } |
|
| 146 | - else |
|
| 145 | + } else |
|
| 147 | 146 | { |
| 148 | 147 | $tpl_data['FIELDS'] = $fields_data; |
| 149 | 148 | } |