-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 0.9.6 beta - added new form elements, also added a nibiru bin…
…ary in order to create modules and plugins.
- Loading branch information
Showing
60 changed files
with
204 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
namespace Nibiru; | ||
|
||
class Nibiru | ||
{ | ||
//TODO: Generator Class in order to generate Modules fast | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
namespace Nibiru\Form; | ||
use Nibiru\Adapter; | ||
/** | ||
* Copyright 2020 Nibiru Framework | ||
* Licence: BSD 4-Old License | ||
* Author: Stephan Kasdorf | ||
* File: typeclosediv.php | ||
* Date: 05.09.20 | ||
*/ | ||
class TypeCloseAny extends FormAttributes implements IForm | ||
{ | ||
private $_attributes = array( | ||
self::FORM_VALUE => '', | ||
self::FORM_ATTRIBUTE_ID => '', | ||
self::FORM_ATTRIBUTE_CLASS => '', | ||
self::FORM_ATTRIBUTE_ANY => '' | ||
); | ||
|
||
/** | ||
* @param $attributes | ||
* @return mixed | ||
*/ | ||
public function loadElement($attributes) | ||
{ | ||
parent::__construct( $this->_attributes ); | ||
$this->_setElement(); | ||
$this->_setAttributes( self::loadAttributeValues( $attributes ) ); | ||
return $this->getElement(); | ||
} | ||
|
||
/** | ||
* just a closing div element | ||
*/ | ||
private function _setElement( ) | ||
{ | ||
$this->_element = '</ANY>' . "\n"; | ||
} | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
namespace Nibiru\Form; | ||
use Nibiru\Adapter; | ||
/** | ||
* Copyright 2020 Nibiru Framework | ||
* Licence: BSD 4-Old License | ||
* Author: Stephan Kasdorf | ||
* File: typeopendiv.php | ||
* Date: 05.09.20 | ||
*/ | ||
class TypeOpenAny extends FormAttributes implements IForm | ||
{ | ||
private $_attributes = array( | ||
self::FORM_VALUE => '', | ||
self::FORM_ATTRIBUTE_ID => '', | ||
self::FORM_ATTRIBUTE_CLASS => '', | ||
self::FORM_ATTRIBUTE_ANY => '', | ||
self::FORM_ATTRIBUTE_HREF => '' | ||
); | ||
|
||
/** | ||
* @param $attributes | ||
* @return mixed | ||
*/ | ||
public function loadElement($attributes) | ||
{ | ||
parent::__construct( $this->_attributes ); | ||
$this->_setElement(); | ||
$this->_setAttributes( self::loadAttributeValues( $attributes ) ); | ||
return $this->getElement(); | ||
} | ||
|
||
/** | ||
* just the opening div element | ||
*/ | ||
private function _setElement( ) | ||
{ | ||
$this->_element = '<ANY href="HREF" ID CLASS>' . 'VALUE' . "\n"; | ||
} | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.