@@ 397-410 (lines=14) @@ | ||
394 | /** |
|
395 | * @return array |
|
396 | */ |
|
397 | public function getBefore() |
|
398 | { |
|
399 | return array_merge( |
|
400 | [ |
|
401 | 'root_ul' => '', |
|
402 | 'first_root_li' => '', |
|
403 | 'li_a' => '', |
|
404 | 'li_a_text' => '', |
|
405 | 'li_with_ul_a' => '', |
|
406 | 'li_with_ul_a_text' => '', |
|
407 | ], |
|
408 | $this->before |
|
409 | ); |
|
410 | } |
|
411 | ||
412 | /** |
|
413 | * Put string before elements. |
|
@@ 431-444 (lines=14) @@ | ||
428 | /** |
|
429 | * @return array |
|
430 | */ |
|
431 | public function getAfter() |
|
432 | { |
|
433 | return array_merge( |
|
434 | [ |
|
435 | 'root_ul' => '', |
|
436 | 'last_root_li' => '', |
|
437 | 'li_a' => '', |
|
438 | 'li_a_text' => '', |
|
439 | 'li_with_ul_a' => '', |
|
440 | 'li_with_ul_a_text' => '', |
|
441 | ], |
|
442 | $this->after |
|
443 | ); |
|
444 | } |
|
445 | ||
446 | /** |
|
447 | * Put string after elements. |