44 : array
45 {
46 foreach ($mount_instructions as $title => $mount_instruction) {
47 $mount_instruction = str_replace("[WEBFOLDER_ID]", (string) $this->ref_id, $mount_instruction);
48 $mount_instruction = str_replace("[WEBFOLDER_TITLE]", $this->obj_title, $mount_instruction);
49 $mount_instruction = str_replace(
50 "[WEBFOLDER_URI]",
51 $this->uri_builder->getWebDavDefaultUri($this->ref_id),
52 $mount_instruction
53 );
54 $mount_instruction = str_replace(
55 "[WEBFOLDER_URI_KONQUEROR]",
56 $this->uri_builder->getWebDavKonquerorUri($this->ref_id),
57 $mount_instruction
58 );
59 $mount_instruction = str_replace(
60 "[WEBFOLDER_URI_NAUTILUS]",
61 $this->uri_builder->getWebDavNautilusUri($this->ref_id),
62 $mount_instruction
63 );
64 $mount_instruction = str_replace(
"[ADMIN_MAIL]", $this->
settings->get(
"admin_email"), $mount_instruction);
65
66 $mount_instructions[$title] = $mount_instruction;
67 }
68
69
70 return $mount_instructions;
71 }