We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed91ce2 + c25380b commit c3a26e2Copy full SHA for c3a26e2
src/JoomlaBrowser.php
@@ -99,6 +99,24 @@ protected function instantiateLocator()
99
$this->locator = new $class;
100
}
101
102
+ /**
103
+ * Locator getter
104
+ *
105
+ * @param string $path Locator to get
106
107
+ * @return mixed|false
108
+ * @since 3.8.11
109
+ */
110
+ public function getLocatorPath($path)
111
+ {
112
+ if (!isset($this->locator->$path))
113
114
+ return false;
115
+ }
116
+
117
+ return $this->locator->$path;
118
119
120
/**
121
* Function to Do Admin Login In Joomla!
122
*
0 commit comments