| Total Complexity | 0 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class TestimonialsAdmin extends ModelAdmin |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | private static $managed_models = [ |
||
|
|
|||
| 19 | Testimonial::class => [ |
||
| 20 | 'title' => 'Testimonials', |
||
| 21 | ], |
||
| 22 | TestimonialCategory::class => [ |
||
| 23 | 'title' => 'Testimonial Categories', |
||
| 24 | ], |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | private static $url_segment = 'testimonials'; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | private static $menu_title = 'Testimonials'; |
||
| 36 | } |
||
| 37 |