OSDN Git Service

add ACS webapp, sql, htdocs
[acs/acs.git] / webapp / modules / Community / views / EditBBSInputView.class.php
diff --git a/webapp/modules/Community/views/EditBBSInputView.class.php b/webapp/modules/Community/views/EditBBSInputView.class.php
new file mode 100644 (file)
index 0000000..d870a06
--- /dev/null
@@ -0,0 +1,56 @@
+<?php
+// $Id: EditBBSView::INPUT.class.php,v 1.1 2006/06/08 05:53:03 w-ota Exp $
+
+class EditBBSInputView extends BaseView
+{
+       function execute() {
+               $context = $this->getContext();
+               $controller = $context->getController();
+               $request =  $context->getRequest();
+               $user = $context->getUser();
+               $acs_user_info_row = $user->getAttribute('acs_user_info_row');
+
+               // get
+               $community_row = $request->getAttribute('community_row');
+               $bbs_row = $request->getAttribute('bbs_row');
+               $form = $request->getAttribute('form');
+
+               // ÆþÎÏ¥¨¥é¡¼»þ¤Î¥Ç¡¼¥¿Éü¸µ
+               if (is_array($form)) {
+                       $bbs_row['subject'] = $form['subject'];
+                       $bbs_row['body'] = $form['body'];
+               }
+
+               // get
+               if ($bbs_row['file_id'] != '') {
+                       $bbs_row['file_url'] = ACSBBSFile::get_image_url($bbs_row['bbs_id'], 'thumb');
+               }
+
+               // form action ³Îǧ²èÌ̤ؤÎÁ«°Ü
+               $action_url  = $this->getControllerPath('Community', 'EditBBS') . '&community_id=' . $community_row['community_id'] . '&bbs_id=' . $bbs_row['bbs_id'];
+
+               // ¥³¥ß¥å¥Ë¥Æ¥£¥È¥Ã¥×¥Ú¡¼¥¸¤ÎURL
+               $community_top_page_url = $this->getControllerPath('Community', DEFAULT_ACTION) . '&community_id=' . $community_row['community_id'];
+               // BBS URL
+               $bbs_url = $this->getControllerPath('Community', 'BBS') . '&community_id=' . $community_row['community_id'];
+
+               // set
+               $this->setAttribute('error_message', $this->getErrorMessage($controller, $request, $user));
+
+               $this->setAttribute('is_community_member', $is_community_member);
+               $this->setAttribute('community_row', $request->getAttribute('community_row'));
+               $this->setAttribute('bbs_row', $bbs_row);
+               $this->setAttribute('action_url', $action_url);
+
+               $this->setAttribute('community_top_page_url', $community_top_page_url);
+               $this->setAttribute('bbs_url', $bbs_url);
+
+               // ¥Æ¥ó¥×¥ì¡¼¥È
+               $this->setScreenId("0001");
+               $this->setTemplate('EditBBS.tpl.php');
+               
+               return parent::execute();
+       }
+}
+
+?>