Skip to content

gozoro/yii2-helpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii2-helpers

Helpers for Yii2 Framework as static functions.

HTML helpers

Html::rus2translit("привет мир"); // privet mir

Html::str2url("привет мир!") // privet-mir

Html::text("это ссылка http://example.com") // это ссылка <a href="http://example.com">http://example.com</a>

Html::csrfHiddenInput(); //  Return string with CSRF hidden input

Html::video("./example.mp4") // Returns string with video tag or youtube-iframe.

JSON helpers

$options = [
	'valueString' => 'string',
	'valueInt'    => 5,
	'valueFloat'  => 4.3,
	'valueNull'   => null,
	'valueBool'   => true,
	'valArray'    => ['a', 'b', 'c'],
	'valAssoc'    => ['a'=>'apple', 'b'=>2, 'c'=>1],
	'func'        => 'function(val){return val;}',
];

Json::optionsEncode($options);

Returns string with JavaScript code:

 
 {
 	"valueString": "string",
 	"valueInt": 5,
 	"valueFloat": 4.3,
 	"valueNull": null,
 	"valueBool": true,
 	"valArray": ["a", "b", "c"],
 	"valAssoc": {"a":"apple", "b":2, "c":1},
 	"func": function(val){return val;},
 }

URL helper

Now you can parse and edit URLs

$url = new Url("https://example.com/my-path");
echo $url->getScheme(); // https
echo $url->getHost(); // example.com
echo $url->getPath(); // /my-path
// etc

About

Helpers for Yii2 Framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages