Home
last modified time | relevance | path

Searched refs:isInPath (Results 1 – 4 of 4) sorted by relevance

/plugin/farmer/_test/
H A Dhelper.test.php66 $this->assertTrue($helper->isInPath('/var/www/foo', '/var/www'));
67 $this->assertFalse($helper->isInPath('/var/www/../foo', '/var/www'));
70 $this->assertFalse($helper->isInPath('/var/www/foo', '/var/www/foo'));
71 $this->assertFalse($helper->isInPath('/var/www/foo/', '/var/www/foo'));
72 $this->assertFalse($helper->isInPath('/var/www/foo/bar/../', '/var/www/foo'));
75 $this->assertFalse($helper->isInPath('/var/lib/dokuwiki.animals', '/var/lib/dokuwiki'));
/plugin/farmer/admin/
H A Ddelete.php53 if (!$this->helper->isInPath($animaldir, DOKU_FARMDIR) || !is_dir($animaldir)) {
H A Dsetup.php44 } elseif ($this->helper->isInPath($farmdir, DOKU_INC) !== false) {
/plugin/farmer/
H A Dhelper.php108 public function isInPath($path, $container) function in helper_plugin_farmer