Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [yogi] Directory Depth Global

Quote Reply
Re: [yogi] Directory Depth Global In reply to
Ok, I am attempting my first perl subs here. This one is meant to be called by the add and move hooks for determining the actual category depth.

Would someone mind looking at this for possible errors (as I am not sure how to test until full routines are completed).

Code:


sub {

#Determine the directory depth for the current category &find_depth($category_id);



my $category_id = shift;

my $level = 0;



my $FatherID = $DB->table('Category')->select( 'FatherID',{ 'ID' => $category_id})->fetchrow_array;

# Loop until father = 0, incrementing level each time, thus determining depth of category

until ( $FatherID == 0) {



my $FatherID = $DB->table('Category')->select( 'FatherID',{ 'ID' => $category_id})->fetchrow_array;

$category_id = $FatherID; #just edited this

$level++;


}

return $level;

}

Last edited by:

sooke: May 14, 2002, 1:39 PM
Subject Author Views Date
Thread; hot thread Directory Depth Global Ian 12385 May 12, 2002, 9:59 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12263 May 13, 2002, 12:32 AM
Post; hot thread Re: [yogi] Directory Depth Global
Ian 12303 May 13, 2002, 12:36 AM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12212 May 13, 2002, 6:36 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12263 May 13, 2002, 9:28 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12184 May 13, 2002, 9:41 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12223 May 13, 2002, 9:44 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12247 May 13, 2002, 9:49 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12311 May 13, 2002, 9:58 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12160 May 13, 2002, 10:03 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12181 May 13, 2002, 10:11 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12159 May 13, 2002, 10:22 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12259 May 13, 2002, 10:24 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12175 May 13, 2002, 10:35 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12280 May 13, 2002, 10:41 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12166 May 13, 2002, 10:42 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12213 May 13, 2002, 10:44 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12164 May 13, 2002, 10:53 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12258 May 13, 2002, 11:01 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12262 May 13, 2002, 11:06 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12181 May 13, 2002, 11:08 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12270 May 13, 2002, 11:13 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12182 May 13, 2002, 11:18 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 12191 May 13, 2002, 11:18 PM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 12224 May 13, 2002, 11:21 PM
Post; hot thread Re: [yogi] Directory Depth Global
Ian 2553 May 13, 2002, 11:23 PM
Thread; hot thread Re: [yogi] Directory Depth Global
Ian 2600 May 14, 2002, 8:59 AM
Thread; hot thread Re: [sooke] Directory Depth Global
yogi 2697 May 14, 2002, 9:08 AM
Post; hot thread Re: [yogi] Directory Depth Global
Ian 2577 May 14, 2002, 1:05 PM