Selected item in nav using _isSelectedBranch

6 posts by 3 authors in: Forums > CMS Builder
Last Post: January 10, 2012   (RSS)

Re: [theclicklab] Selected item in nav using _isSelectedBranch

By Jason - January 8, 2012

Hi,

So, if you remove the _isSelectedBranch portion, does the if statement work?

One thing I noticed is that $selectedCat and $thispagedepth are getting their value from $pagesRecord, but I don't see $pagesRecord being set anywhere in your code.

Let me know.

Thanks.
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

Re: [Jason] Selected item in nav using _isSelectedBranch

By theclicklab - January 9, 2012

Yep, everything works without it.

I assume that Im not setting $pagesRecord correctly?

I have attached the whole file. See around line 126.

Many thanks
Attachments:

page_004.php 9K

Re: [theclicklab] Selected item in nav using _isSelectedBranch

By Jason - January 9, 2012

Hi Jan,

_isSelectedBranch will only ever be set if $selectedCategory has a value. This will either be set if there is a record number at the end of the URL or if you set 'selectedCategoryNum' in your getCategories.

Hope this helps
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

Re: [Jason] Selected item in nav using _isSelectedBranch

By davidcmsb - January 9, 2012 - edited: January 10, 2012

Hi Jason,
I have a question about what you wrote --

Hi Jan,

_isSelectedBranch will only ever be set if $selectedCategory has a value. This will either be set if there is a record number at the end of the URL or if you set 'selectedCategoryNum' in your getCategories.

Hope this helps




Does _isSelectedBranch work if you use
'selectedCategoryNum' => @$_REQUEST['category'],
instead of the default behavior of looking at the number at the end of the URL or setting a static 'selectedCategoryNum'
?

What you wrote seems to say that _isSelectedBranch will only ever be set if $selectedCategory has a value, and the $selectedCategory has a value ONLY if (a) there is a record number at the end of the URL or (b) if you set 'selectedCategoryNum' in your getCategories. But what about using instead of these two ways, using 'selectedCategoryNum' => @$_REQUEST['category'],
?

Re: [davidcmsb] Selected item in nav using _isSelectedBranch

By Jason - January 10, 2012

Hi Jan,

Yes, you can set "selectedCategoryNum" they way you describe,

ie
list($categoryRecords, $selectedCategory) = getCategories(array(
'tableName' => 'categories',
'selectedCategoryNum' => @$_REQUEST['category'],
));


However, this will only work when $_REQUEST['category'] is the record number of category you want $selectedCategory to be.

Hope this helps
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/