2012-05-23 168 views
0

問題是在索引函數內部,我將抓取兩個變量並使用它們來運行一個函數,該函數根據數據庫檢查值並查看它們是否與記錄匹配,如果是,則驗證激活從電子郵件,但我想弄清楚我應該怎麼處理這裏的消息。我想要做的是顯示一個成功激活的消息,並顯示一條消息,指出在相同的頁面加載情況下它不是成功的激活。這應該如何嘗試?顯示消息

<?php if (! defined('BASEPATH')) exit('No direct script access allowed'); 

class Activate extends CI_Controller { 

public function __construct() 
{ 
    parent::__construct(); 
    $this->load->library('auth'); 
} 

public function index($param1 = NULL, $param2 = NULL) 
{ 
    //Config Defaults Start 
    $msgBoxMsgs = array();//msgType = dl, info, warn, note, msg 
    $cssPageAddons = '';//If you have extra CSS for this view append it here 
    $jsPageAddons = '';//If you have extra JS for this view append it here 
    $metaAddons = '';//Sometimes there is a need for additional Meta Data such in the case of Facebook addon's 
    $siteTitle = '';//alter only if you need something other than the default for this view. 
    //Config Defaults Start 


    //examples of how to use the message box system (css not included). 
    //$msgBoxMsgs[] = array('msgType' => 'dl', 'theMsg' => 'This is a Blank Message Box...'); 

    /**********************************************************Your Coding Logic Here, Start*/ 

    $x = 0; 
    if(($param1 !== NULL)&&($param2 !== NULL)) 
    { 

     //params not null yay.. 
     if((isset($param1))&&((trim($param1) !== '')||(!empty($param1)))) 
     { 
      if(!is_numeric($param1)) 
      { 
       $x++; 
      } 
     } 
     if((isset($param2))&&((trim($param2) !== '')||(!empty($param2)))) 
     { 
      if(!preg_match('/^[A-Za-z0-9]+$/', $param2)) 
      { 
       $x++; 
      } 
     } 


     if($x !== 0) 
     { 
      $bodyContent = $this->config->item('defaultTemplate') ."error_page"; 
     } 
     else 
     { 
      $bodyContent = $this->config->item('defaultTemplate') ."/usermanagement/forms/activate";//which view file 
     } 

    } 
    else 
    { 
     $bodyContent = "error_page"; 
    } 
    $bodyType = "full";//type of template 

    /***********************************************************Your Coding Logic Here, End*/ 

    //Double checks if any default variables have been changed, Start. 
    //If msgBoxMsgs array has anything in it, if so displays it in view, else does nothing.  
    if(count($msgBoxMsgs) !== 0) 
    { 
     $msgBoxes = $this->msgboxes->buildMsgBoxesOutput(array('display' => 'show', 'msgs' =>$msgBoxMsgs)); 
    } 
    else 
    { 
     $msgBoxes = array('display' => 'none'); 
    } 

    if($siteTitle == '') 
    { 
     $siteTitle = $this->metatags->SiteTitle(); //reads 
    } 

    //Double checks if any default variables have been changed, End. 

    $this->data['msgBoxes'] = $msgBoxes; 
    $this->data['cssPageAddons'] = $cssPageAddons;//if there is any additional CSS to add from above Variable this will send it to the view. 
    $this->data['jsPageAddons'] = $jsPageAddons;//if there is any addictional JS to add from the above variable this will send it to the view. 
    $this->data['siteTitle'] = $siteTitle;//defaults can be changed via models/metatags.php 
    $this->data['bodyType'] = $bodyType; 
    $this->data['bodyContent'] = $bodyContent; 
    $this->load->view($this->config->item('defaultTemplate') .'/usermanagement/index', $this->data); 
} 

} 

/* End of file activate.php */ 
/* Location: ./application/controllers/activate.php */ 

編輯:

我想弄清楚,我需要運行我的函數獲得兩個參數並檢查他們對數據庫,然後如果結果那麼用戶驗證返回true 。

<?php if (! defined('BASEPATH')) exit('No direct script access allowed'); 

class Activate extends CI_Controller { 

public function __construct() 
{ 
    parent::__construct(); 
    $this->load->library('auth'); 
} 

public function index($param1 = NULL, $param2 = NULL) 
{ 
    //Config Defaults Start 
    $msgBoxMsgs = array();//msgType = dl, info, warn, note, msg 
    $cssPageAddons = '';//If you have extra CSS for this view append it here 
    $jsPageAddons = '';//If you have extra JS for this view append it here 
    $metaAddons = '';//Sometimes there is a need for additional Meta Data such in the case of Facebook addon's 
    $siteTitle = '';//alter only if you need something other than the default for this view. 
    //Config Defaults Start 


    //examples of how to use the message box system (css not included). 
    //$msgBoxMsgs[] = array('msgType' => 'dl', 'theMsg' => 'This is a Blank Message Box...'); 

    /**********************************************************Your Coding Logic Here, Start*/ 

    $x = 0; 
    if(($param1 !== NULL)&&($param2 !== NULL)) 
    { 

     //params not null yay.. 
     if((isset($param1))&&((trim($param1) !== '')||(!empty($param1)))) 
     { 
      if(!is_numeric($param1)) 
      { 
       $x++; 
      } 
     } 
     if((isset($param2))&&((trim($param2) !== '')||(!empty($param2)))) 
     { 
      if(!preg_match('/^[A-Za-z0-9]+$/', $param2)) 
      { 
       $x++; 
      } 
     } 


     if($x !== 0) 
     { 
      $bodyContent = $this->config->item('defaultTemplate') ."error_page"; 
      $message = 'User was not activated successfully! Please try again with the right credentials!'; 
     } 
     else 
     { 
      $bodyContent = $this->config->item('defaultTemplate') ."/usermanagement/forms/activate";//which view file 
      $message = 'User was activated successfully! You may now login!'; 
     } 

    } 
    else 
    { 
     $bodyContent = "error_page"; 
    } 
    $this->data['message'] = $message; 
    $bodyType = "full";//type of template 

    /***********************************************************Your Coding Logic Here, End*/ 

    //Double checks if any default variables have been changed, Start. 
    //If msgBoxMsgs array has anything in it, if so displays it in view, else does nothing.  
    if(count($msgBoxMsgs) !== 0) 
    { 
     $msgBoxes = $this->msgboxes->buildMsgBoxesOutput(array('display' => 'show', 'msgs' =>$msgBoxMsgs)); 
    } 
    else 
    { 
     $msgBoxes = array('display' => 'none'); 
    } 

    if($siteTitle == '') 
    { 
     $siteTitle = $this->metatags->SiteTitle(); //reads 
    } 

    //Double checks if any default variables have been changed, End. 

    $this->data['msgBoxes'] = $msgBoxes; 
    $this->data['cssPageAddons'] = $cssPageAddons;//if there is any additional CSS to add from above Variable this will send it to the view. 
    $this->data['jsPageAddons'] = $jsPageAddons;//if there is any addictional JS to add from the above variable this will send it to the view. 
    $this->data['siteTitle'] = $siteTitle;//defaults can be changed via models/metatags.php 
    $this->data['bodyType'] = $bodyType; 
    $this->data['bodyContent'] = $bodyContent; 
    $this->load->view($this->config->item('defaultTemplate') .'/usermanagement/index', $this->data); 
} 

} 

/* End of file activate.php */ 
/* Location: ./application/controllers/activate.php */ 

任何想法?

+0

你試過了嗎? – jugnu

+0

檢查我的更新 –

回答

1

你可以嘗試使用$this->session->flashdata()

+0

看看我的編輯評論。 –