First commit, version 0.1 beta base nibiru framework
This commit is contained in:
30
core/l/Dwoo/IElseable.php
Normal file
30
core/l/Dwoo/IElseable.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (c) 2013-2016
|
||||
*
|
||||
* @category Library
|
||||
* @package Dwoo
|
||||
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||
* @author David Sanchez <david38sanchez@gmail.com>
|
||||
* @copyright 2008-2013 Jordi Boggiano
|
||||
* @copyright 2013-2016 David Sanchez
|
||||
* @license http://dwoo.org/LICENSE Modified BSD License
|
||||
* @version 1.3.0
|
||||
* @date 2016-09-19
|
||||
* @link http://dwoo.org/
|
||||
*/
|
||||
|
||||
namespace Dwoo;
|
||||
|
||||
/**
|
||||
* Interface that represents a block plugin that supports the else functionality.
|
||||
* the else block will enter an "hasElse" parameter inside the parameters array
|
||||
* of the closest parent implementing this interface, the hasElse parameter contains
|
||||
* the else output that should be appended to the block's content (see foreach or other
|
||||
* block for examples)
|
||||
* This software is provided 'as-is', without any express or implied warranty.
|
||||
* In no event will the authors be held liable for any damages arising from the use of this software.
|
||||
*/
|
||||
interface IElseable
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user