Home
last modified time | relevance | path

Searched refs:imageFolder (Results 1 – 2 of 2) sorted by relevance

/plugin/confmanager/configTypes/
H A DConfigManagerTwoLineLeftImageConfigCascade.php9 protected $imageFolder; variable in ConfigManagerTwoLineLeftImageConfigCascade
18 public function __construct($name, $imageFolder, $extension) { argument
20 $this->setImageFolder($imageFolder);
47 $path = $this->imageFolder . "$key." . $ext;
71 * @param string $imageFolder
73 public function setImageFolder($imageFolder) { argument
74 if (substr($imageFolder, strlen($imageFolder) -1) !== '/') {
75 $imageFolder = "$imageFolder/";
77 $this->imageFolder = $imageFolder;
132 if (!@move_uploaded_file($icon['tmp_name'], DOKU_INC . $this->imageFolder . $destination)) {
H A DConfigManagerTwoLineRightImageConfigCascade.php13 * @param string $imageFolder
16 public function __construct($name, $imageFolder, $extension) { argument
17 parent::__construct($name, $imageFolder, $extension);
30 $path = $this->imageFolder . $configs[$configtype][$key];