Lines Matching refs:project_path

22 	public function path($project_path) {   argument
23 return $project_path . $this->name;
26 public function delete($project_path) { argument
27 $path = $this->path($project_path);
29 $this->delete_media_file($project_path);
34 public function copy($project_path, $file) { argument
40 public function equal($project_path, $file) { argument
50 public function time($project_path) { argument
51 $path = $this->path($project_path);
56 public function content($project_path) { argument
57 $path = $this->path($project_path);
63 protected function update_media_file($project_path) { argument
64 $path = $this->path($project_path);
85 protected function delete_media_file($project_path) { argument
105 public function equal($project_path, $file) { argument
106 if (!parent::equal($project_path, $file)) return false;
107 return $this->content($project_path) == $file->content();
110 private function set_content($project_path, $content) { argument
111 file_put_contents($this->path($project_path), $content);
112 $this->update_media_file($project_path);
115 public function copy($project_path, $file) { argument
116 parent::copy($project_path, $file);
117 $this->set_content($project_path, $file->content());
132 public function equal($project_path, $file) { argument
133 return parent::equal($project_path, $file)
140 public function copy($project_path, $file) { argument
141 parent::copy($project_path, $file);
145 public function delete($project_path, $delete_log = false) { argument
146 parent::delete($project_path);
148 $path = $this->path($project_path) . '.make.log';
211 public function equal($project_path, $file) { argument
212 return parent::equal($project_path, $file)
216 public function copy($project_path, $file) { argument
217 parent::copy($project_path, $file);