當前位置: 首頁>>代碼示例>>PHP>>正文


PHP message_box類代碼示例

本文整理匯總了PHP中message_box的典型用法代碼示例。如果您正苦於以下問題:PHP message_box類的具體用法?PHP message_box怎麽用?PHP message_box使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了message_box類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _valid_perform

 function _valid_perform()
 {
     $object =& wrap_with_site_object(fetch_mapped_by_url());
     if (!$object->delete()) {
         message_box::write_notice('Can not be deleted!');
         return new failed_response();
     }
     return new close_popup_response(RESPONSE_STATUS_FORM_SUBMITTED, RELOAD_SELF_URL, true);
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:9,代碼來源:form_delete_site_object_action.class.php

示例2: perform

 function perform()
 {
     $object =& site_object_factory::create('user_object');
     if (!$object->activate_password()) {
         message_box::write_notice('Password activation failed!');
         reload('/');
     }
     return true;
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:9,代碼來源:activate_password_action.class.php

示例3: perform

 function perform()
 {
     $object =& site_object_factory::create('user_object');
     if (!$object->activate_password()) {
         message_box::write_notice('Password activation failed!');
         return new redirect_response(RESPONSE_STATUS_FAILED, '/');
     }
     return new response();
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:9,代碼來源:activate_password_action.class.php

示例4: perform

 function perform(&$request, &$response)
 {
     $object =& site_object_factory::create('user_object');
     if (!$object->activate_password()) {
         message_box::write_notice('Password activation failed!');
         $request->set_status(REQUEST_STATUS_FAILED);
         $response->redirect('/');
     }
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:9,代碼來源:activate_password_action.class.php

示例5: _valid_perform

 function _valid_perform()
 {
     $object =& site_object_factory::create('poll_container');
     $data = $this->_export();
     if (!isset($data['answer'])) {
         message_box::write_notice(strings::get('no_answer', 'poll'));
         return false;
     }
     return $object->register_answer($data['answer']);
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:10,代碼來源:vote_action.class.php

示例6: _valid_perform

 function _valid_perform()
 {
     $this->_update_items_amount();
     $this->_update_items_notes();
     $cart =& cart::instance();
     if ($cart->count_items() == 0) {
         message_box::write_error(strings::get('no_items_in_cart', 'cart'));
         return new close_popup_response(RESPONSE_STATUS_FAILURE);
     }
     return new redirect_response(RESPONSE_STATUS_FORM_SUBMITTED, '/root/cart?action=checkout&popup=1');
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:11,代碼來源:send_cart_order_action.class.php

示例7: _init_dataspace

 function _init_dataspace()
 {
     $object_data =& fetch_mapped_by_url();
     $object =& site_object_factory::create($this->definition['site_object']);
     $object->import_attributes($object_data);
     if ($object->can_delete()) {
         return true;
     } else {
         message_box::write_notice('Can not be deleted!');
         close_popup();
     }
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:12,代碼來源:form_delete_site_object_action.class.php

示例8: _valid_perform

 function _valid_perform()
 {
     $object_data =& fetch_mapped_by_url();
     $object =& site_object_factory::create($this->definition['site_object']);
     $object->import_attributes($object_data);
     if (!$object->delete()) {
         message_box::write_notice('Can not be deleted!');
         return new failed_response();
     }
     $parent_object_data = fetch_one_by_node_id($object_data['parent_node_id']);
     return new close_popup_response(RESPONSE_STATUS_FORM_SUBMITTED, RELOAD_SELF_URL, true);
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:12,代碼來源:form_delete_site_object_action.class.php

示例9: _valid_perform

 function _valid_perform(&$request, &$response)
 {
     $object =& site_object_factory::create('poll_container');
     $data = $this->dataspace->export();
     $request->set_status(REQUEST_STATUS_FAILURE);
     if (!isset($data['answer'])) {
         message_box::write_notice(strings::get('no_answer', 'poll'));
         return;
     }
     $object->register_answer($data['answer']);
     $request->set_status(REQUEST_STATUS_FORM_SUBMITTED);
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:12,代碼來源:vote_action.class.php

示例10: _valid_perform

 function _valid_perform()
 {
     $mail_data = $this->dataspace->export();
     $body = sprintf(strings::get('body_template', 'feedback'), $mail_data['sender_name'], $mail_data['sender_email'], $mail_data['body']);
     $body = str_replace('<br>', "\n", $body);
     $subject = sprintf(strings::get('message_subject', 'feedback'), $mail_data['subject'], $_SERVER['HTTP_HOST']);
     $recipient_email = constant('ADMINISTRATOR_EMAIL');
     if (!$recipient_email || !send_plain_mail(array($recipient_email), $mail_data['sender_email'], $subject, $body)) {
         message_box::write_error(strings::get('mail_not_sent', 'feedback'));
         return false;
     }
     return true;
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:13,代碼來源:send_feedback_action.class.php

示例11: _create_object_operation

 function _create_object_operation()
 {
     if (isset($_FILES[$this->name]['tmp_name']['file'])) {
         if ($_FILES[$this->name]['size']['file'] > ini_get('upload_max_filesize') * 1024 * 1024) {
             message_box::write_warning('uploaded file size exceeds limit');
             return false;
         }
         $this->object->set_attribute('tmp_file_path', $_FILES[$this->name]['tmp_name']['file']);
         $this->object->set_attribute('file_name', $_FILES[$this->name]['name']['file']);
         $this->object->set_attribute('mime_type', $_FILES[$this->name]['type']['file']);
     }
     return parent::_create_object_operation();
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:13,代碼來源:create_file_action.class.php

示例12: run

  function run(&$filter_chain, &$request, &$response)
  {
    $filter_chain->next();

    if( $response->get_content_type() == 'text/html' &&
        $response->get_status() == 200)//only 200?
    {
      if (debug :: is_console_enabled())
        $response->write(debug :: parse_html_console());

      $response->write(message_box :: parse());//It definetly should be somewhere else!
    }
  }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:13,代碼來源:response_processing_filter.class.php

示例13: _valid_perform

 function _valid_perform(&$request, &$response)
 {
     $object =& wrap_with_site_object(fetch_requested_object());
     if (!$object->delete()) {
         message_box::write_notice(strings::get('cant_be_deleted', 'error'));
         $request->set_status(REQUEST_STATUS_FAILURE);
         return;
     }
     $request->set_status(REQUEST_STATUS_FORM_SUBMITTED);
     if ($request->has_attribute('popup')) {
         $response->write(close_popup_response($request, RELOAD_SELF_URL, true));
     }
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:13,代碼來源:form_delete_site_object_action.class.php

示例14: _valid_perform

 function _valid_perform()
 {
     $mail_data = $this->dataspace->export();
     $body = sprintf(strings::get('body_template', 'feedback'), $mail_data['sender_name'], $mail_data['sender_email'], $mail_data['body']);
     $body = str_replace('<br>', "\n", $body);
     $subject = sprintf(strings::get('message_subject', 'feedback'), $mail_data['subject'], $_SERVER['HTTP_HOST']);
     $recipient_email = $this->_get_email();
     if (!$recipient_email || !send_plain_mail(array($recipient_email), $mail_data['sender_email'], $subject, $body)) {
         message_box::write_error(strings::get('mail_not_sent', 'feedback'));
         return new failed_response();
     }
     message_box::write_error(strings::get('message_was_sent', 'feedback'));
     return new redirect_response(RESPONSE_STATUS_FORM_SUBMITTED, PHP_SELF);
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:14,代碼來源:send_feedback_action.class.php

示例15: _valid_perform

 function _valid_perform()
 {
     $object =& site_object_factory::create('poll_container');
     $data = $this->dataspace->export();
     if (!isset($data['answer'])) {
         message_box::write_notice(strings::get('no_answer', 'poll'));
         return new failed_response();
     }
     if ($object->register_answer($data['answer'])) {
         return new redirect_response(RESPONSE_STATUS_FORM_SUBMITTED, '/root/polls');
     } else {
         return new failed_response();
     }
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:14,代碼來源:vote_action.class.php


注:本文中的message_box類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。