|
@@ 1015-1021 (lines=7) @@
|
| 1012 |
|
|
| 1013 |
|
public function __viewNew() |
| 1014 |
|
{ |
| 1015 |
|
if (!$section_id = SectionManager::fetchIDFromHandle($this->_context['section_handle'])) { |
| 1016 |
|
Administration::instance()->throwCustomError( |
| 1017 |
|
__('The Section, %s, could not be found.', |
| 1018 |
|
array('<code>' . $this->_context['section_handle'] . '</code>')), |
| 1019 |
|
__('Unknown Section'), |
| 1020 |
|
Page::HTTP_STATUS_NOT_FOUND |
| 1021 |
|
); |
| 1022 |
|
} |
| 1023 |
|
|
| 1024 |
|
$section = SectionManager::fetch($section_id); |
|
@@ 1593-1599 (lines=7) @@
|
| 1590 |
|
|
| 1591 |
|
public function __viewEdit() |
| 1592 |
|
{ |
| 1593 |
|
if (!$section_id = SectionManager::fetchIDFromHandle($this->_context['section_handle'])) { |
| 1594 |
|
Administration::instance()->throwCustomError( |
| 1595 |
|
__('The Section, %s, could not be found.', |
| 1596 |
|
array('<code>' . $this->_context['section_handle'] . '</code>')), |
| 1597 |
|
__('Unknown Section'), |
| 1598 |
|
Page::HTTP_STATUS_NOT_FOUND |
| 1599 |
|
); |
| 1600 |
|
} |
| 1601 |
|
|
| 1602 |
|
$section = SectionManager::fetch($section_id); |