CwpSearchPage   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 2
eloc 7
c 3
b 0
f 0
dl 0
loc 15
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A canViewStage() 0 7 2
1
<?php
2
3
namespace CWP\Search;
4
5
use Page;
0 ignored issues
show
Bug introduced by
The type Page was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
use SilverStripe\Security\Permission;
7
use SilverStripe\Versioned\Versioned;
8
9
/**
10
 * Dummy page to assist with display of search results
11
 */
12
class CwpSearchPage extends Page
13
{
14
    private static $hide_ancestor = CwpSearchPage::class;
0 ignored issues
show
introduced by
The private property $hide_ancestor is not used, and could be removed.
Loading history...
15
16
    private static $plural_name = 'Search pages';
0 ignored issues
show
introduced by
The private property $plural_name is not used, and could be removed.
Loading history...
17
18
    private static $table_name = 'CwpSearchPage';
0 ignored issues
show
introduced by
The private property $table_name is not used, and could be removed.
Loading history...
19
20
    public function canViewStage($stage = Versioned::LIVE, $member = null)
21
    {
22
        if (Permission::checkMember($member, 'VIEW_DRAFT_CONTENT')) {
23
            return true;
24
        }
25
26
        return parent::canViewStage($stage, $member);
27
    }
28
}
29