OSDN Git Service

add ACS webapp, sql, htdocs
[acs/acs.git] / webapp / modules / Public / views / NewOpenDiaryInputView.class.php
diff --git a/webapp/modules/Public/views/NewOpenDiaryInputView.class.php b/webapp/modules/Public/views/NewOpenDiaryInputView.class.php
new file mode 100644 (file)
index 0000000..1a6b8f8
--- /dev/null
@@ -0,0 +1,38 @@
+<?php
+
+class NewOpenDiaryInputView extends BaseView
+{
+       public function execute ()
+       {
+               $context = &$this->getContext();
+               $user = $context->getUser();
+               $request = $context->getRequest();
+               $acs_user_info_row = $user->getAttribute('acs_user_info_row');
+               // get
+               $new_open_diary_row_array = $request->getAttribute('new_open_diary_row_array');
+
+               // ²Ã¹©
+               foreach ($new_open_diary_row_array as $index => $new_open_diary_row) {
+                       // Åê¹Æ¼Ô¤Î¥È¥Ã¥×¥Ú¡¼¥¸URL
+                       $new_open_diary_row_array[$index]['top_page_url'] = $this->getControllerPath(DEFAULT_MODULE, DEFAULT_ACTION) . '&id=' . $new_open_diary_row['user_community_id'];
+                       // Åê¹Æ¼Ô¤Î¼Ì¿¿
+                       $new_open_diary_row_array[$index]['image_url'] = ACSUser::get_image_url($new_open_diary_row['user_community_id'], 'thumb');
+                       // ¥À¥¤¥¢¥ê¡¼¥³¥á¥ó¥ÈURL
+                       $new_open_diary_row_array[$index]['diary_comment_url'] = $this->getControllerPath(DEFAULT_MODULE, 'DiaryComment') . '&id=' . $new_open_diary_row['user_community_id'] . '&diary_id=' . $new_open_diary_row['diary_id'];
+                       $new_open_diary_row_array[$index]['post_date'] = ACSLib::convert_pg_date_to_str($new_open_diary_row['post_date']);
+               }
+               // set
+               $this->setAttribute('new_open_diary_row_array', $new_open_diary_row_array);
+
+               // ¥Æ¥ó¥×¥ì¡¼¥È¤ò¥»¥Ã¥È¤¹¤ë
+               $this->setTemplate('NewOpenDiary.tpl.php');
+               $context->getController()->setRenderMode(View::RENDER_VAR);
+               $request->setAttribute("NewOpenDiary", $this->render());
+
+               return parent::execute();
+
+       }
+
+}
+
+?>
\ No newline at end of file