| @@ 265-271 (lines=7) @@ | ||
| 262 | if ($singleParam) { |
|
| 263 | $this->_param_pool[$key][] = $entry->get('id'); |
|
| 264 | } |
|
| 265 | } elseif ($param === 'system:author') { |
|
| 266 | $this->_param_pool[$param_key][] = $entry->get('author_id'); |
|
| 267 | ||
| 268 | if ($singleParam) { |
|
| 269 | $this->_param_pool[$key][] = $entry->get('author_id'); |
|
| 270 | } |
|
| 271 | } elseif ($param === 'system:creation-date' || $param === 'system:date') { |
|
| 272 | $this->_param_pool[$param_key][] = $entry->get('creation_date'); |
|
| 273 | ||
| 274 | if ($singleParam) { |
|
| @@ 277-283 (lines=7) @@ | ||
| 274 | if ($singleParam) { |
|
| 275 | $this->_param_pool[$key][] = $entry->get('creation_date'); |
|
| 276 | } |
|
| 277 | } elseif ($param === 'system:modification-date') { |
|
| 278 | $this->_param_pool[$param_key][] = $entry->get('modification_date'); |
|
| 279 | ||
| 280 | if ($singleParam) { |
|
| 281 | $this->_param_pool[$key][] = $entry->get('modification_date'); |
|
| 282 | } |
|
| 283 | } |
|
| 284 | } |
|
| 285 | } |
|
| 286 | ||