Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Any reason why Mage::registry(‘current_category’) would return NULL?
Reference - What does this error mean in PHP?

Fatal error: Call to a member function getParentCategory() on a non-object in...

the code:

$_category_detail=Mage::registry('current_category');
$id=$_category_detail->getParentCategory()->getId(); 

now, when the page can't use getParentCategory() i using the following but can't work.

 if( isset(getParentCategory()){
        $id=$_category_detail->getParentCategory()->getId();  
    }

why? thank you

share|improve this question

marked as duplicate by Gordon, Jack, j0k, NullPoiиteя, Leigh Dec 19 '12 at 9:56

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 1 down vote accepted

You need to use method_exists() rather than trying to call a non-existent function:

if (method_exists($_category_detail, "getParentCategory"))
share|improve this answer
Doesn't it trigger an error if $_category_detail is not a valid object? – Jeffrey Dec 19 '12 at 8:46
It won't - Just tested it myself... Neither documentation nor test metion or trigger an error ;) Just returns false – Hikaru-Shindo Dec 19 '12 at 9:01

It appears that $_category_detail is not an object. Therefore Mage::registry('current_category') is not returning an object.

It's most likely returning some sort of NULL or false value upon fail. And PHP is making you notice that (NULL)->getParentCategory() is meaningless.

In your particular case it returns NULL because current_category is not set in your registry.

share|improve this answer

isset() only checks for member variables. Use method_exists().

PHP Manual: http://php.net/manual/de/function.method-exists.php

if (method_exists($_category_detail, 'getParentCategory')) {
    $id = $_category_detail->getParentCategory()->getId()
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.