You are here

public function Element::isVisible in Express 8

Determines if an element is visible.

Return value

bool TRUE if the element is visible, otherwise FALSE.

File

themes/contrib/bootstrap/src/Utility/Element.php, line 474
Contains \Drupal\bootstrap\Utility\Element.

Class

Element
Provides helper methods for Drupal render elements.

Namespace

Drupal\bootstrap\Utility

Code

public function isVisible() {
  return \Drupal\Core\Render\Element::isVisibleElement($this->array);
}