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.
18 lines
364 B
18 lines
364 B
<?php |
|
|
|
namespace App; |
|
|
|
use Sober\Controller\Controller; |
|
|
|
class Home extends Controller |
|
{ |
|
function block_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; |
|
} |
|
}
|
|
|