From 2772130cba777553c5f8abeec082f28d52e7a089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Thu, 6 Aug 2009 13:47:35 +0200 Subject: [PATCH] category: Make currently viewed category the default parent for new categories --- include/category.php | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/include/category.php b/include/category.php index 45b8010..daab5be 100644 --- a/include/category.php +++ b/include/category.php @@ -313,12 +313,28 @@ class Category { return 0; } - function outputEditor() + function objectGetCustomVars($sAction) + { + switch($sAction) + { + case 'add': + return array('iParentId'); + + default: + return null; + } + } + + function outputEditor($aValues = null) { $aCategories = category::getOrderedList(true); $aCatNames = array(); $aCatIds = array(); + $iParentId = $this->iParentId; + if(!$iParentId && $aValues) + $iParentId = getInput('iParentId', $aValues); + foreach($aCategories as $oCategory) { $aCatNames[] = $oCategory->sName; @@ -341,7 +357,7 @@ class Category { Parent - ".html_select("iParentId",$aCatIds,$this->iParentId, $aCatNames)." + ".html_select("iParentId",$aCatIds,$iParentId, $aCatNames)." "; @@ -394,7 +410,7 @@ class Category { $oM = new objectManager('category', '', $this->iCatId); $oM->setReturnTo($this->objectMakeUrl()); echo "

\n"; - echo 'Add'; + echo 'iCatId}\">Add";; if($this->iCatId) // We can't edit the 'Main' category { echo '     ';