OSDN Git Service

add ACS webapp, sql, htdocs
[acs/acs.git] / webapp / modules / User / views / DiaryPreSuccessView.class.php
diff --git a/webapp/modules/User/views/DiaryPreSuccessView.class.php b/webapp/modules/User/views/DiaryPreSuccessView.class.php
new file mode 100644 (file)
index 0000000..bba245f
--- /dev/null
@@ -0,0 +1,83 @@
+<?php
+/**
+ * ¥À¥¤¥¢¥ê¡¼¡¡ÅÐÏ¿¡¦É½¼¨µ¡Ç½¡¡View¥¯¥é¥¹
+ * Æüµ­¾ðÊó¡¡³Îǧ¡¦ÅÐÏ¿²èÌÌ
+ * @package  acs/webapp/modules/Usery/views
+ * @author   akitsu
+ * @since    PHP 4.0
+ * @version  $Revision: 1.4 $ $Date: 2006/03/01
+ */
+// $Id: DiaryPreView_confirm.class.php,v 1.4 2006/03/30 12:07:10 kuwayama Exp $
+
+
+class DiaryPreSuccessView extends BaseView
+{
+       function execute() {
+               $context = $this->getContext();
+               $controller = $context->getController();
+               $request =  $context->getRequest();
+               $user = $context->getUser();
+               
+               //get
+               //$target_user_info_row = $request->getAttribute('target_user_info_row');
+               //$diary_row = $request->getAttribute('diary_row_array');
+               //$open_level_master_row_array = $request->getAttribute('open_level_master_row_array');
+               //$friends_group_row_array = $request->getAttribute('friends_group_row_array');
+               
+               //$acs_user_info_row = $user->getAttribute('acs_user_info_row');
+               // ÂоݤȤʤëUserID¤ò¼èÆÀ
+               $user_id = $request->getParameter('id');
+               // Diary¾ðÊó
+               //$diary_row_array = $request->getAttribute('diary_row_array');
+               // ¥Õ¥¡¥¤¥ë¾ðÊó
+               $new_file_obj = $user->getAttribute('new_file_obj');
+               $new_file_info = $user->getAttribute('new_file_info');
+               //¥æ¡¼¥¶ÆþÎϾðÊó
+               $form = $user->getAttribute('new_form_obj');
+
+               // form action
+               $action_url  = $this->getControllerPath('User', 'DiaryPre') .'&id=' .$user_id .'&move_id=2';
+               $back_url = $this->getControllerPath('User', 'Diary') . '&id=' .$user_id .'&move_id=3';
+
+               // Diary¥È¥Ã¥×¥Ú¡¼¥¸¤ÎURL
+               $diary_top_page_url = $this->getControllerPath('User', 'Diary') . '&id=' .$user_id;
+
+               // ²Ã¹©
+                       //¥Õ¥¡¥¤¥ë¤Î²èÁüURL
+                       $form['file_url'] = "";
+                       if($form['file_name'] != ""){
+                               $file_name = $form['file_name'];
+                               $type = $new_file_obj['type'];
+                               $form['file_url_alink'] =  $this->getControllerPath('User', 'DiaryPreImage') . '&type=' . $type ."&new_file_info=" . $new_file_info;
+                       }
+               // set
+
+               // ÁªÂò¤µ¤ì¤¿¥Þ¥¤¥Õ¥ì¥ó¥º¥°¥ë¡¼¥×¾ðÊó¼èÆÀ
+               if ($form['trusted_community_id_array']) {
+                       $form['trusted_community_row_array'] = array();
+                       foreach ($form['trusted_community_id_array'] as $trusted_community_id) {
+                               $selected_friends_group_community_row = ACSCommunity::get_community_row($trusted_community_id);
+                               array_push($form['trusted_community_row_array'], $selected_friends_group_community_row);
+                       }
+               }
+
+               $this->setAttribute('action_url', $action_url);
+               $this->setAttribute('back_url', $back_url);
+               $this->setAttribute('diary_top_page_url', $diary_top_page_url);
+               $this->setAttribute('form', $form);
+               //$this->setAttribute('new_file_obj', $new_file_obj);
+               //$this->setAttribute('new_file_info', $new_file_info);
+               //$this->setAttribute('diary_row', $diary_row);
+
+               // ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸
+               $this->setAttribute('error_message', $this->getErrorMessage($controller, $request, $user));
+
+               // ¥Æ¥ó¥×¥ì¡¼¥È
+               $this->setScreenId("0001");
+               $this->setTemplate('DiaryPre.tpl.php');
+
+               return parent::execute();
+       }
+}
+
+?>