Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | function addYoastRequiredNotice() |
||
27 | { |
||
28 | if (!checkYoastActivated()) { |
||
29 | $manager = AdminNoticeManager::getInstance(); |
||
30 | $message = ["This component requires the Yoast SEO plugin. Please install and active Yoast SEO."]; |
||
31 | $options = [ |
||
32 | 'type' => 'error', |
||
33 | 'title' => 'NavigationBreadcrumb Error', |
||
34 | 'dismissible' => false, |
||
35 | 'filenames' => 'functions.php' |
||
36 | ]; |
||
37 | $manager->addNotice($message, $options); |
||
38 | } |
||
39 | } |
||
40 | |||
49 |