bootstrap3-1.0.1/src/Plugin/Setting/Components/Breadcrumbs/BreadcrumbHome.php
src/Plugin/Setting/Components/Breadcrumbs/BreadcrumbHome.php
<?php
namespace Drupal\bootstrap3\Plugin\Setting\Components\Breadcrumbs;
use Drupal\bootstrap3\Plugin\Setting\SettingBase;
use Drupal\bootstrap3\Utility\Element;
use Drupal\Core\Form\FormStateInterface;
/**
* The "breadcrumb_home" theme setting.
*
* @ingroup plugins_setting
*
* @BootstrapSetting(
* id = "breadcrumb_home",
* type = "checkbox",
* title = @Translation("Show 'Home' breadcrumb link"),
* description = @Translation("If your site has a module dedicated to handling breadcrumbs already, ensure this setting is enabled."),
* defaultValue = 0,
* groups = {
* "components" = @Translation("Components"),
* "breadcrumbs" = @Translation("Breadcrumbs"),
* },
* )
*/
class BreadcrumbHome extends SettingBase {
/**
* {@inheritdoc}
*/
public function alterFormElement(Element $form, FormStateInterface $form_state, $form_id = NULL) {
$setting = $this->getSettingElement($form, $form_state);
$setting->setProperty('states', [
'invisible' => [
':input[name="breadcrumb"]' => ['value' => 0],
],
]);
}
}
