| @@ 131-137 (lines=7) @@ | ||
| 128 | */ |
|
| 129 | public function set_sections($config) |
|
| 130 | { |
|
| 131 | foreach ($config as $method => $enable) |
|
| 132 | { |
|
| 133 | if (in_array($method, $this->_available_sections)) |
|
| 134 | { |
|
| 135 | $this->_compile_{$method} = ($enable !== FALSE) ? TRUE : FALSE; |
|
| 136 | } |
|
| 137 | } |
|
| 138 | } |
|
| 139 | ||
| 140 | // -------------------------------------------------------------------- |
|
| @@ 134-140 (lines=7) @@ | ||
| 131 | unset($config['query_toggle_count']); |
|
| 132 | } |
|
| 133 | ||
| 134 | foreach ($config as $method => $enable) |
|
| 135 | { |
|
| 136 | if (in_array($method, $this->_available_sections)) |
|
| 137 | { |
|
| 138 | $this->_compile_{$method} = ($enable !== FALSE); |
|
| 139 | } |
|
| 140 | } |
|
| 141 | } |
|
| 142 | ||
| 143 | // -------------------------------------------------------------------- |
|