Lines Matching refs:active
56 'active' => 'true',
97 //Looking if this block is active
98 preg_match("/active *= *\"([^\"]*)\" ?/i", $match, $active);
99 if( count($active) != 0 ){
100 $match = str_replace($active[0], '', $match);
101 $active = strtolower(trim($active[1]));
102 if($active=='false' || $active=='f' || $active=='0' || $active=='n'){
103 $return['active'] = false;
178 $renderer->doc .= $data['active'] ? ' hiddenActive' : '';