Reputation: 9621
I'm looking at this file:
what does:
$this
and
$this->
refer to?
Upvotes: 2
Views: 1359
Reputation: 2449
It refers to the object "Mage_Catalog_ProductController
" in that case. "$this
" refers to the current object, so it's relative to which class it's called from.
Upvotes: 6