pressbooks aldine theme the theme used for the front page or default book
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
364 B

7 years ago
<?php
namespace App;
use Sober\Controller\Controller;
class Home extends Controller
{
function block_count() {
7 years ago
$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;
7 years ago
}
}