CwpSearchPage::canViewStage()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 7
rs 10
cc 2
nc 2
nop 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