コード例 #1
0
 /**
  * Returns the last user form input array.
  * 
  * @remark      This temporary data is not always set. This is only set when the form needs to show a confirmation message to the user such as for sending an email.
  * @since       3.3.0
  * @since       3.4.1       Moved from `AdminPageFramework_Property_Page`.
  * @internal
  * @return      array   The last input array.
  */
 protected function _getLastInput()
 {
     $_vValue = AdminPageFramework_WPUtility::getTransient('apf_tfd' . md5('temporary_form_data_' . $this->sClassName . get_current_user_id()));
     if (is_array($_vValue)) {
         return $_vValue;
     }
     return array();
 }