Файл: concrete5.7.5.6/concrete/blocks/horizontal_rule/controller.php
Строк: 24
<?php
namespace ConcreteBlockHorizontalRule;
use ConcreteCoreBlockBlockController;
class Controller extends BlockController {
protected $btCacheBlockRecord = true;
protected $btCacheBlockOutput = true;
protected $btCacheBlockOutputOnPost = true;
protected $btCacheBlockOutputForRegisteredUsers = true;
protected $btIgnorePageThemeGridFrameworkContainer = true;
public function getBlockTypeDescription() {
return t("Adds a thin hairline horizontal divider to the page.");
}
public function getBlockTypeName() {
return t("Horizontal Rule");
}
}