Below is the scenario:
class PopupsAdminSettingsPage extends AbstractAdminSubPage
{
protected $menuTitle = 'Settings';
public static function getMenuTitle()
{
/* I want to access $menuTitle property here ...
}
}
I want to access the $menuTitle property inside the static function getMenuTitle so that I could access the protected variable outside of the Class PopupsAdminSettingsPage too.