You are here

public function dsDisplay::regionShow in Display Suite 6.3

Helper to show a region

1 call to dsDisplay::regionShow()
dsDisplay::assignActiveRegions in includes/dsDisplay.php
Given an array of region information from a node, assign active and hidden regions.

File

includes/dsDisplay.php, line 463
Class definition for a Display Suite Display object

Class

dsDisplay
The Display Suite Display object

Code

public function regionShow($name) {
  if (isset($this->regions[$name])) {
    $this->regions[$name]['#hidden'] == FALSE;
  }
}