Issues (86)

src/Admin/JobAdmin.php (3 issues)

1
<?php
2
3
namespace Dynamic\Jobs\Admin;
4
5
use Dynamic\Jobs\Model\JobCategory;
6
use Dynamic\Jobs\Model\JobSubmission;
7
use SilverStripe\Admin\ModelAdmin;
8
9
/**
10
 * Class JobAdmin
11
 * @package Dynamic\Jobs\Admin
12
 */
13
class JobAdmin extends ModelAdmin
14
{
15
    /**
16
     * @var array
17
     */
18
    private static $managed_models = [
0 ignored issues
show
The private property $managed_models is not used, and could be removed.
Loading history...
19
        JobSubmission::class,
20
        JobCategory::class,
21
    ];
22
23
    /**
24
     * @var string
25
     */
26
    private static $url_segment = 'jobs';
0 ignored issues
show
The private property $url_segment is not used, and could be removed.
Loading history...
27
28
    /**
29
     * @var string
30
     */
31
    private static $menu_title = 'Jobs';
0 ignored issues
show
The private property $menu_title is not used, and could be removed.
Loading history...
32
}
33