PHP Classes

File: src/Contracts/Dialogs/Message.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon   src/Contracts/Dialogs/Message.php   Download  
File: src/Contracts/Dialogs/Message.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change:
Date: 4 years ago
Size: 2,000 bytes
 

Contents

Class file image Download
<?php

/**
 * Message.php - Interface for alert messages.
 *
 * @package jaxon-dialogs
 * @author Thierry Feuzeu <thierry.feuzeu@gmail.com>
 * @copyright 2016 Thierry Feuzeu <thierry.feuzeu@gmail.com>
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
 * @link https://github.com/jaxon-php/jaxon-core
 */

namespace Jaxon\Contracts\Dialogs;

interface
Message
{
   
/**
     * Tells if the library should return the javascript code or run it in the browser.
     *
     * @param boolean $return Whether to return the code
     *
     * @return void
     */
   
public function setReturn($return);

   
/**
     * Tells if the library should return the js code or run it in the browser.
     *
     * @return void
     */
   
public function getReturn();

   
/**
     * Print a success message.
     *
     * @param string $message The text of the message
     * @param string|null $title The title of the message
     *
     * @return void
     */
   
public function success($message, $title = null);

   
/**
     * Print an information message.
     *
     * @param string $message The text of the message
     * @param string|null $title The title of the message
     *
     * @return void
     */
   
public function info($message, $title = null);

   
/**
     * Print a warning message.
     *
     * @param string $message The text of the message
     * @param string|null $title The title of the message
     *
     * @return void
     */
   
public function warning($message, $title = null);

   
/**
     * Print an error message.
     *
     * @param string $message The text of the message
     * @param string|null $title The title of the message
     *
     * @return void
     */
   
public function error($message, $title = null);
}