thd/apps/frontend/modules/editor/actions/components.class.php
changeset 35 94a1dc255022
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/thd/apps/frontend/modules/editor/actions/components.class.php	Tue Sep 22 16:40:38 2009 +0200
@@ -0,0 +1,29 @@
+<?php 
+
+class editorComponents extends sfComponents
+{
+  public function executeLeftPanel() {
+
+  }
+  public function executePlayer() {
+	$ref = $this->getRequestParameter('ref');
+  	$film_slug = $this->getRequestParameter('film_slug');	
+  	
+  	// retrieve infos in database
+  	$query = Doctrine_Query::create()
+      ->from('ThdFilm F')
+      ->leftJoin('F.images I ')
+      ->leftJoin('F.videos V')
+      ->where("F.ref='{$ref}'");
+    $this->film = $query->execute()->getFirst();
+	
+	// retrieve video infos
+  	$this->videos = $this->film->getVideos();
+      
+  	return sfView::SUCCESS;
+  }
+  
+  public function executeSegmentList() {
+
+  }  
+}
\ No newline at end of file