@@ -52,18 +52,18 @@ discard block |
||
| 52 | 52 | protected $errors = array(); |
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | - * Constructor |
|
| 56 | - * |
|
| 57 | - * @param \phpbb\template\template $template Template object |
|
| 58 | - * @param \phpbb\user $user User object |
|
| 59 | - * @param \phpbb\request\request $request Request object |
|
| 60 | - * @param \phpbb\admanagement\ad\manager $manager Advertisement manager object |
|
| 61 | - * @param \phpbb\admanagement\location\manager $location_manager Template location manager object |
|
| 62 | - * @param \phpbb\log\log $log The phpBB log system |
|
| 63 | - * @param \phpbb\config\db_text $config_text Config text object |
|
| 64 | - * @param string $php_ext PHP extension |
|
| 65 | - * @param string $ext_path Path to this extension |
|
| 66 | - */ |
|
| 55 | + * Constructor |
|
| 56 | + * |
|
| 57 | + * @param \phpbb\template\template $template Template object |
|
| 58 | + * @param \phpbb\user $user User object |
|
| 59 | + * @param \phpbb\request\request $request Request object |
|
| 60 | + * @param \phpbb\admanagement\ad\manager $manager Advertisement manager object |
|
| 61 | + * @param \phpbb\admanagement\location\manager $location_manager Template location manager object |
|
| 62 | + * @param \phpbb\log\log $log The phpBB log system |
|
| 63 | + * @param \phpbb\config\db_text $config_text Config text object |
|
| 64 | + * @param string $php_ext PHP extension |
|
| 65 | + * @param string $ext_path Path to this extension |
|
| 66 | + */ |
|
| 67 | 67 | public function __construct(\phpbb\template\template $template, \phpbb\user $user, \phpbb\request\request $request, \phpbb\admanagement\ad\manager $manager, \phpbb\admanagement\location\manager $location_manager, \phpbb\log\log $log, \phpbb\config\db_text $config_text, $php_ext, $ext_path) |
| 68 | 68 | { |
| 69 | 69 | $this->template = $template; |
@@ -78,10 +78,10 @@ discard block |
||
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |
| 81 | - * Process user request for manage mode |
|
| 82 | - * |
|
| 83 | - * @return void |
|
| 84 | - */ |
|
| 81 | + * Process user request for manage mode |
|
| 82 | + * |
|
| 83 | + * @return void |
|
| 84 | + */ |
|
| 85 | 85 | public function mode_manage() |
| 86 | 86 | { |
| 87 | 87 | $this->setup(); |
@@ -98,10 +98,10 @@ discard block |
||
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | /** |
| 101 | - * Process user request for settings mode |
|
| 102 | - * |
|
| 103 | - * @return void |
|
| 104 | - */ |
|
| 101 | + * Process user request for settings mode |
|
| 102 | + * |
|
| 103 | + * @return void |
|
| 104 | + */ |
|
| 105 | 105 | public function mode_settings() |
| 106 | 106 | { |
| 107 | 107 | $this->setup(); |
@@ -143,31 +143,31 @@ discard block |
||
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | /** |
| 146 | - * Set page url |
|
| 147 | - * |
|
| 148 | - * @param string $u_action Custom form action |
|
| 149 | - * @return void |
|
| 150 | - */ |
|
| 146 | + * Set page url |
|
| 147 | + * |
|
| 148 | + * @param string $u_action Custom form action |
|
| 149 | + * @return void |
|
| 150 | + */ |
|
| 151 | 151 | public function set_page_url($u_action) |
| 152 | 152 | { |
| 153 | 153 | $this->u_action = $u_action; |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | /** |
| 157 | - * Get ACP page title for Ads module |
|
| 158 | - * |
|
| 159 | - * @return string Language string for Ads ACP module |
|
| 160 | - */ |
|
| 157 | + * Get ACP page title for Ads module |
|
| 158 | + * |
|
| 159 | + * @return string Language string for Ads ACP module |
|
| 160 | + */ |
|
| 161 | 161 | public function get_page_title() |
| 162 | 162 | { |
| 163 | 163 | return $this->user->lang('ACP_ADMANAGEMENT_TITLE'); |
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | /** |
| 167 | - * Add an advertisement |
|
| 168 | - * |
|
| 169 | - * @return void |
|
| 170 | - */ |
|
| 167 | + * Add an advertisement |
|
| 168 | + * |
|
| 169 | + * @return void |
|
| 170 | + */ |
|
| 171 | 171 | public function action_add() |
| 172 | 172 | { |
| 173 | 173 | $preview = $this->request->is_set_post('preview'); |
@@ -209,10 +209,10 @@ discard block |
||
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | /** |
| 212 | - * Edit an advertisement |
|
| 213 | - * |
|
| 214 | - * @return void |
|
| 215 | - */ |
|
| 212 | + * Edit an advertisement |
|
| 213 | + * |
|
| 214 | + * @return void |
|
| 215 | + */ |
|
| 216 | 216 | public function action_edit() |
| 217 | 217 | { |
| 218 | 218 | $ad_id = $this->request->variable('id', 0); |
@@ -270,30 +270,30 @@ discard block |
||
| 270 | 270 | } |
| 271 | 271 | |
| 272 | 272 | /** |
| 273 | - * Enable an advertisement |
|
| 274 | - * |
|
| 275 | - * @return void |
|
| 276 | - */ |
|
| 273 | + * Enable an advertisement |
|
| 274 | + * |
|
| 275 | + * @return void |
|
| 276 | + */ |
|
| 277 | 277 | public function action_enable() |
| 278 | 278 | { |
| 279 | 279 | $this->ad_enable(true); |
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | /** |
| 283 | - * Disable an advertisement |
|
| 284 | - * |
|
| 285 | - * @return void |
|
| 286 | - */ |
|
| 283 | + * Disable an advertisement |
|
| 284 | + * |
|
| 285 | + * @return void |
|
| 286 | + */ |
|
| 287 | 287 | public function action_disable() |
| 288 | 288 | { |
| 289 | 289 | $this->ad_enable(false); |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | /** |
| 293 | - * Delete an advertisement |
|
| 294 | - * |
|
| 295 | - * @return void |
|
| 296 | - */ |
|
| 293 | + * Delete an advertisement |
|
| 294 | + * |
|
| 295 | + * @return void |
|
| 296 | + */ |
|
| 297 | 297 | public function action_delete() |
| 298 | 298 | { |
| 299 | 299 | $ad_id = $this->request->variable('id', 0); |
@@ -336,10 +336,10 @@ discard block |
||
| 336 | 336 | } |
| 337 | 337 | |
| 338 | 338 | /** |
| 339 | - * Display the ads |
|
| 340 | - * |
|
| 341 | - * @return void |
|
| 342 | - */ |
|
| 339 | + * Display the ads |
|
| 340 | + * |
|
| 341 | + * @return void |
|
| 342 | + */ |
|
| 343 | 343 | public function list_ads() |
| 344 | 344 | { |
| 345 | 345 | foreach ($this->manager->get_all_ads() as $row) |
@@ -369,10 +369,10 @@ discard block |
||
| 369 | 369 | } |
| 370 | 370 | |
| 371 | 371 | /** |
| 372 | - * Perform general tasks |
|
| 373 | - * |
|
| 374 | - * @return void |
|
| 375 | - */ |
|
| 372 | + * Perform general tasks |
|
| 373 | + * |
|
| 374 | + * @return void |
|
| 375 | + */ |
|
| 376 | 376 | protected function setup() |
| 377 | 377 | { |
| 378 | 378 | $this->user->add_lang_ext('phpbb/admanagement', 'acp'); |
@@ -381,11 +381,11 @@ discard block |
||
| 381 | 381 | } |
| 382 | 382 | |
| 383 | 383 | /** |
| 384 | - * Enable/disable an advertisement |
|
| 385 | - * |
|
| 386 | - * @param bool $enable Enable or disable the advertisement? |
|
| 387 | - * @return void |
|
| 388 | - */ |
|
| 384 | + * Enable/disable an advertisement |
|
| 385 | + * |
|
| 386 | + * @param bool $enable Enable or disable the advertisement? |
|
| 387 | + * @return void |
|
| 388 | + */ |
|
| 389 | 389 | protected function ad_enable($enable) |
| 390 | 390 | { |
| 391 | 391 | $ad_id = $this->request->variable('id', 0); |
@@ -416,11 +416,11 @@ discard block |
||
| 416 | 416 | } |
| 417 | 417 | |
| 418 | 418 | /** |
| 419 | - * Get admin form data. |
|
| 420 | - * |
|
| 421 | - * @param string $form_name The form name. |
|
| 422 | - * @return array Form data |
|
| 423 | - */ |
|
| 419 | + * Get admin form data. |
|
| 420 | + * |
|
| 421 | + * @param string $form_name The form name. |
|
| 422 | + * @return array Form data |
|
| 423 | + */ |
|
| 424 | 424 | protected function get_form_data($form_name) |
| 425 | 425 | { |
| 426 | 426 | $data = array( |
@@ -471,11 +471,11 @@ discard block |
||
| 471 | 471 | } |
| 472 | 472 | |
| 473 | 473 | /** |
| 474 | - * Assign form data to the template. |
|
| 475 | - * |
|
| 476 | - * @param array $data The form data. |
|
| 477 | - * @return void |
|
| 478 | - */ |
|
| 474 | + * Assign form data to the template. |
|
| 475 | + * |
|
| 476 | + * @param array $data The form data. |
|
| 477 | + * @return void |
|
| 478 | + */ |
|
| 479 | 479 | protected function assign_form_data($data) |
| 480 | 480 | { |
| 481 | 481 | $this->template->assign_vars(array( |
@@ -490,11 +490,11 @@ discard block |
||
| 490 | 490 | )); |
| 491 | 491 | } |
| 492 | 492 | /** |
| 493 | - * Prepare end date for display |
|
| 494 | - * |
|
| 495 | - * @param mixed $end_date End date. |
|
| 496 | - * @return string End date prepared for display. |
|
| 497 | - */ |
|
| 493 | + * Prepare end date for display |
|
| 494 | + * |
|
| 495 | + * @param mixed $end_date End date. |
|
| 496 | + * @return string End date prepared for display. |
|
| 497 | + */ |
|
| 498 | 498 | protected function prepare_end_date($end_date) |
| 499 | 499 | { |
| 500 | 500 | if (empty($end_date)) |
@@ -510,11 +510,11 @@ discard block |
||
| 510 | 510 | } |
| 511 | 511 | |
| 512 | 512 | /** |
| 513 | - * Assign template locations data to the template. |
|
| 514 | - * |
|
| 515 | - * @param mixed $data The form data or nothing. |
|
| 516 | - * @return void |
|
| 517 | - */ |
|
| 513 | + * Assign template locations data to the template. |
|
| 514 | + * |
|
| 515 | + * @param mixed $data The form data or nothing. |
|
| 516 | + * @return void |
|
| 517 | + */ |
|
| 518 | 518 | protected function assign_locations($data = false) |
| 519 | 519 | { |
| 520 | 520 | foreach ($this->location_manager->get_all_locations() as $location_id => $location_data) |
@@ -529,43 +529,43 @@ discard block |
||
| 529 | 529 | } |
| 530 | 530 | |
| 531 | 531 | /** |
| 532 | - * Prepare advertisement preview |
|
| 533 | - * |
|
| 534 | - * @param string $code Ad code to preview |
|
| 535 | - * @return void |
|
| 536 | - */ |
|
| 532 | + * Prepare advertisement preview |
|
| 533 | + * |
|
| 534 | + * @param string $code Ad code to preview |
|
| 535 | + * @return void |
|
| 536 | + */ |
|
| 537 | 537 | protected function ad_preview($code) |
| 538 | 538 | { |
| 539 | 539 | $this->template->assign_var('PREVIEW', htmlspecialchars_decode($code)); |
| 540 | 540 | } |
| 541 | 541 | |
| 542 | 542 | /** |
| 543 | - * Print success message. |
|
| 544 | - * |
|
| 545 | - * It takes arguments in the form of a language key, followed by language substitution values. |
|
| 546 | - */ |
|
| 543 | + * Print success message. |
|
| 544 | + * |
|
| 545 | + * It takes arguments in the form of a language key, followed by language substitution values. |
|
| 546 | + */ |
|
| 547 | 547 | protected function success() |
| 548 | 548 | { |
| 549 | 549 | trigger_error(call_user_func_array(array($this->user, 'lang'), func_get_args()) . adm_back_link($this->u_action)); |
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | /** |
| 553 | - * Print error message. |
|
| 554 | - * |
|
| 555 | - * It takes arguments in the form of a language key, followed by language substitution values. |
|
| 556 | - */ |
|
| 553 | + * Print error message. |
|
| 554 | + * |
|
| 555 | + * It takes arguments in the form of a language key, followed by language substitution values. |
|
| 556 | + */ |
|
| 557 | 557 | protected function error() |
| 558 | 558 | { |
| 559 | 559 | trigger_error(call_user_func_array(array($this->user, 'lang'), func_get_args()) . adm_back_link($this->u_action), E_USER_WARNING); |
| 560 | 560 | } |
| 561 | 561 | |
| 562 | 562 | /** |
| 563 | - * Log action |
|
| 564 | - * |
|
| 565 | - * @param string $action Performed action in uppercase |
|
| 566 | - * @param string $ad_name Advertisement name |
|
| 567 | - * @return void |
|
| 568 | - */ |
|
| 563 | + * Log action |
|
| 564 | + * |
|
| 565 | + * @param string $action Performed action in uppercase |
|
| 566 | + * @param string $ad_name Advertisement name |
|
| 567 | + * @return void |
|
| 568 | + */ |
|
| 569 | 569 | protected function log($action, $ad_name) |
| 570 | 570 | { |
| 571 | 571 | $this->log->add('admin', $this->user->data['user_id'], $this->user->ip, 'ACP_ADMANAGEMENT_' . $action . '_LOG', time(), array($ad_name)); |