Skip to content

Instantly share code, notes, and snippets.

View Deele's full-sized avatar

Nils Deele

View GitHub Profile
@Deele
Deele / horizontal-bootstrap-activeform-checkbox-view.php
Last active December 3, 2015 11:35
Yii2 Bootstrap ActiveForm horizontal layout checkbox syntax
<?php
use yii\bootstrap\ActiveForm;
use yii\bootstrap\ActiveField;
$activeField = new ActiveField();
?><div class="tour-form">
<?php $form = ActiveForm::begin(); ?>
<div class="form-horizontal">
<?php
echo <<<HTML
{$form->field(
@Deele
Deele / baseHtml.js
Created January 7, 2015 22:24
Port of Yii2 BaseHtml class that provides a set of static methods for generating commonly used HTML tags
/**
* Returns whether given variable is undefined
*
* @author Nils Lindentals <nils@dfworks.lv>
* @license GNU GPL v2.0
*
* @param variable
* @returns {boolean}
*/
function isUndefined(variable) {