Skip to content

Instantly share code, notes, and snippets.

@DrMabuse23
Created November 21, 2013 10:03
Show Gist options
  • Save DrMabuse23/7578999 to your computer and use it in GitHub Desktop.
Save DrMabuse23/7578999 to your computer and use it in GitHub Desktop.
<?php
namespace app\helpers;
use yii\helpers\ArrayHelper;
use yii\helpers\Html;
use yii\helpers\VarDumper;
/**
* Class Typo
* @author: Pascal Brewing < [email protected] >
* @see http://getbootstrap.com/
* @since 2.0
* @package common\helpers
*/
class Typo {
/**
* @param string $title
* @param string $small
* @param array $htmlOptions
* @return string
*/
public static function pageHeader($title ="",$small="",$htmlOptions = array('class' => 'page-header')){
$headerOptions = ArrayHelper::getValue($htmlOptions,'headerOptions',false);
if($headerOptions)
$htmlOptions = $headerOptions;
$content = '';
if(!empty($title) || !empty($small))
$content .= Html::beginTag('h1')."\n".$title."\n";
if(!empty($small))
$content .= Html::tag('small',$small)."\n";
if(!empty($title) || !empty($small))
$content .= Html::endTag('h1')."\n";
return Html::tag('div',$content,$htmlOptions);
}
/**
* @param string $title
* @param string $small
* @param array $htmlOptions
* @return string
*/
public function pageHeaderTwig($title ="",$small="",$htmlOptions = array('class' => 'page-header')){
$headerOptions = ArrayHelper::getValue($htmlOptions,'headerOptions',false);
if($headerOptions)
$htmlOptions = $headerOptions;
$content = '';
if(!empty($title) || !empty($small))
$content .= Html::beginTag('h1')."\n".$title."\n";
if(!empty($small))
$content .= Html::tag('small',$small)."\n";
if(!empty($title) || !empty($small))
$content .= Html::endTag('h1')."\n";
return Html::tag('div',$content,$htmlOptions);
}
/**
* <strong $htmlOptions>$strong</strong>$body
* @param bool $strong
* @param bool $body
* @param array $htmlOptions
* @return bool|string
*/
public static function AlertBodyHelper($strong = false,$body=false,$htmlOptions=[]){
if($strong)
$body = Html::tag('strong',$strong,$htmlOptions).' '.$body;
return $body;
}
/**
* @see http://getbootstrap.com/css/#type-blockquotes
* <blockquote>
* <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
* </blockquote>
* ´´´php
* htmlOptions
* [
* 'smallOptions' => ['class'...]
* 'blockOptions' => ['class'...]
* 'emphasisOption' => ['class'...]
* 'pull' => ['right']
* ]
* ´´´
* @param bool $body
* @param bool $small
* @param array $htmlOptions
* @return string
*/
public static function blockquote($body=false,$small=false,$htmlOptions=[]){
$smallOptions = ArrayHelper::getValue($htmlOptions,'smallOptions',false);
$blockOptions = ArrayHelper::getValue($htmlOptions,'blockOptions',[]);
$emphasisOption = ArrayHelper::getValue($htmlOptions,'emphasisOption',false);
$pull = ArrayHelper::getValue($htmlOptions,'pull',false);
if($pull)
Html::addCssClass($blockOptions,'pull-'.$pull);
$content = Html::beginTag('blockquote',$blockOptions);
$content .= Html::tag('p',$body,$emphasisOption?$emphasisOption:[]);
if(!empty($small))
$content .= Html::tag('small',$small,$smallOptions?$smallOptions:[]);
$content.=Html::endTag('blockquote');
return $content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment