This file contains hidden or 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
// display: inline-flex // | |
// applies to flex container | |
.inline-flexbox() { | |
// 2009 spec | |
display: -webkit-box; | |
display: -moz-box; | |
display: -ms-box; | |
display: -o-box; | |
display: box; |
This file contains hidden or 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
//=========================================== | |
// Gives a can't use return value in write context error | |
isset($vhm->getServiceLocator()->get('Config')['somevalue']); | |
//=========================================== | |
// Is this not wasteful? | |
$config = $vhm->getServiceLocator()->get('Config'); |
This file contains hidden or 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->add( | |
array( | |
'name' => 'date', | |
'type' => 'datetime', | |
'options' => array( | |
'format' => 'd/m/Y H:i:s', | |
'label' => 'Date (format: dd/mm/yyyy hh:mm:ss)', | |
), |