@@ 1411-1425 (lines=15) @@ | ||
1408 | } |
|
1409 | ||
1410 | ||
1411 | protected function _insert_or_update_category($new_category) |
|
1412 | { |
|
1413 | ||
1414 | $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
1415 | $success = 0; // we already have a success message so lets not send another. |
|
1416 | if ($cat_id) { |
|
1417 | $query_args = array( |
|
1418 | 'action' => 'edit_category', |
|
1419 | 'VEN_CAT_ID' => $cat_id, |
|
1420 | ); |
|
1421 | } else { |
|
1422 | $query_args = array('action' => 'add_category'); |
|
1423 | } |
|
1424 | $this->_redirect_after_action($success, '', '', $query_args, true); |
|
1425 | } |
|
1426 | ||
1427 | ||
1428 | private function _insert_category($update = false) |
@@ 2691-2706 (lines=16) @@ | ||
2688 | * |
|
2689 | * @param bool $new_category true means we're triggering the insert of a new category. |
|
2690 | */ |
|
2691 | protected function _insert_or_update_category($new_category) |
|
2692 | { |
|
2693 | $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2694 | $success = 0; // we already have a success message so lets not send another. |
|
2695 | if ($cat_id) { |
|
2696 | $query_args = array( |
|
2697 | 'action' => 'edit_category', |
|
2698 | 'EVT_CAT_ID' => $cat_id, |
|
2699 | ); |
|
2700 | } else { |
|
2701 | $query_args = array('action' => 'add_category'); |
|
2702 | } |
|
2703 | $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2704 | } |
|
2705 | ||
2706 | ||
2707 | /** |
|
2708 | * Inserts or updates category |
|
2709 | * |