[xoops-cvslog 3413] CVS update: xoops2jp/html/modules/pm/actions

Back to archive index

Minahito minah****@users*****
2006年 7月 4日 (火) 18:47:51 JST


Index: xoops2jp/html/modules/pm/actions/PmliteAction.class.php
diff -u /dev/null xoops2jp/html/modules/pm/actions/PmliteAction.class.php:1.1.2.1
--- /dev/null	Tue Jul  4 18:47:51 2006
+++ xoops2jp/html/modules/pm/actions/PmliteAction.class.php	Tue Jul  4 18:47:51 2006
@@ -0,0 +1,93 @@
+<?php
+/**
+ * @package Pm
+ * @version $Id: PmliteAction.class.php,v 1.1.2.1 2006/07/04 09:47:51 minahito Exp $
+ */
+
+if (!defined('XOOPS_ROOT_PATH')) exit();
+
+require_once XOOPS_MODULE_PATH . "/pm/class/AbstractEditAction.class.php";
+require_once XOOPS_MODULE_PATH . "/pm/forms/PmliteEditForm.class.php";
+
+class Pm_PmliteAction extends Pm_AbstractEditAction
+{
+	var $_mSendType = 0;
+	
+	function prepare(&$controller, &$xoopsUser, &$moduleConfig)
+	{
+		$this->_mSendType = $moduleConfig['send_type'];
+		parent::prepare($controller, $xoopsUser, $moduleConfig);
+		
+		if (is_object($xoopsUser)) {
+			$this->mObject->set('from_userid', $xoopsUser->get('uid'));
+		}
+	}
+	
+	function _getId()
+	{
+		return 0;
+	}
+
+	function &_getHandler()
+	{
+		$handler =& xoops_gethandler('privmessage');
+		return $handler;
+	}
+
+	function _setupActionForm()
+	{
+		//
+		// Create action form object by reply mode? or not?
+		//
+		$this->mActionForm = $this->_mSendType == 0 ? new Pm_PmliteComboEditForm() : new Pm_PmliteDirectEditForm();
+		if (isset($_GET['reply']) && $_GET['reply'] == 1) {
+			$this->mActionForm->changeStateReply();
+		}
+
+		$this->mActionForm->prepare();
+	}
+
+	function _setupObject()
+	{
+		$this->mObjectHandler =& $this->_getHandler();
+		$this->mObject =& $this->mObjectHandler->create();
+	}
+
+	function getDefaultView(&$controller,&$xoopsUser)
+	{
+		//
+		// Fetch request only (no validate).
+		//
+		$this->mActionForm->fetch();
+
+		return PM_FRAME_VIEW_INPUT;
+	}
+	
+	function executeViewInput(&$controller, &$xoopsUser, &$render)
+	{
+		$render->setTemplateName("pmlite.html");
+		$render->setAttribute("actionForm", $this->mActionForm);
+		$render->setAttribute("send_type", $this->_mSendType);
+
+		//
+		// If the request doesn't have uid, list up users to template.
+		//
+		if ($this->_mSendType == 0 && $this->mActionForm->getVar('to_userid') == 0) {
+			$handler =& xoops_gethandler('user');
+			$userObjectArr =& $handler->getObjectsByLevel(0);
+			$render->setAttribute("userList", $userObjectArr);
+		}
+	}
+
+	function executeViewSuccess(&$controller, &$xoopsUser, &$render)
+	{
+		$render->setTemplateName("pm_pmlite_success.html");
+	}
+
+	function executeViewError(&$controller, &$xoopsUser, &$render)
+	{
+		XCube_Utils::redirectHeader("pmlite.php", 3, _MD_PM_ERROR_MESSAGE_SEND);
+	}
+}
+
+?>


xoops-cvslog メーリングリストの案内
Back to archive index