| @@ 583-589 (lines=7) @@ | ||
| 580 | if ($singleParam) { |
|
| 581 | $this->_param_pool[$key][] = $entry->get('id'); |
|
| 582 | } |
|
| 583 | } elseif ($param === 'system:author') { |
|
| 584 | $this->_param_pool[$param_key][] = $entry->get('author_id'); |
|
| 585 | ||
| 586 | if ($singleParam) { |
|
| 587 | $this->_param_pool[$key][] = $entry->get('author_id'); |
|
| 588 | } |
|
| 589 | } elseif ($param === 'system:creation-date' || $param === 'system:date') { |
|
| 590 | $this->_param_pool[$param_key][] = $entry->get('creation_date'); |
|
| 591 | ||
| 592 | if ($singleParam) { |
|
| @@ 595-601 (lines=7) @@ | ||
| 592 | if ($singleParam) { |
|
| 593 | $this->_param_pool[$key][] = $entry->get('creation_date'); |
|
| 594 | } |
|
| 595 | } elseif ($param === 'system:modification-date') { |
|
| 596 | $this->_param_pool[$param_key][] = $entry->get('modification_date'); |
|
| 597 | ||
| 598 | if ($singleParam) { |
|
| 599 | $this->_param_pool[$key][] = $entry->get('modification_date'); |
|
| 600 | } |
|
| 601 | } |
|
| 602 | } |
|
| 603 | } |
|
| 604 | ||