You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
378 B
19 lines
378 B
7 years ago
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Sober\Controller\Controller;
|
||
|
|
||
|
class Home extends Controller
|
||
|
{
|
||
|
function sidebar_count() {
|
||
|
$c = 0;
|
||
|
foreach(['home-block-one', 'home-block-two', 'home-block-three', 'home-block-four', 'home-block-five'] as $block) {
|
||
|
if (is_active_sidebar($block)) {
|
||
|
$c++;
|
||
|
}
|
||
|
}
|
||
|
return $c;
|
||
|
}
|
||
|
}
|