| 
<?php
 /**
 * Message.php - Trait for alert messages.
 *
 * @package jaxon-dialogs
 * @author Thierry Feuzeu <[email protected]>
 * @copyright 2016 Thierry Feuzeu <[email protected]>
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
 * @link https://github.com/jaxon-php/jaxon-core
 */
 
 namespace Jaxon\Features\Dialogs;
 
 trait Message
 {
 /**
 *
 *
 * @var boolean
 */
 private $bReturn;
 
 /**
 * Set the library to return the javascript code or run it in the browser.
 *
 * @param boolean             $bReturn              Whether to return the code
 *
 * @return void
 */
 public function setReturn($bReturn)
 {
 $this->bReturn = $bReturn;
 }
 
 /**
 * Check if the library should return the js code or run it in the browser.
 *
 * @return boolean
 */
 public function getReturn()
 {
 return $this->bReturn;
 }
 }
 
 |