I am fairly new to CodeIgniter framework and PHP, and I am trying to figure out what the following source code does:
isset($this->page->data->Metadata->Metadata->View);
From my understanding, isset()
checks if the variable View
is set or not, but what confuses me is that I couldn't find page
class (the location of the .php file that contains View
variable) anywhere in my project folder, nor can I find page
class in the CodeIgniter libraries.
Can someone break down this code, and explain it in detail?