new pisilinux web sites
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
<?php namespace ZN\Hypertext;
|
||||
/**
|
||||
* ZN PHP Web Framework
|
||||
*
|
||||
* "Simplicity is the ultimate sophistication." ~ Da Vinci
|
||||
*
|
||||
* @package ZN
|
||||
* @license MIT [http://opensource.org/licenses/MIT]
|
||||
* @author Ozan UYKUN [ozan@znframework.com]
|
||||
*/
|
||||
|
||||
trait HtmlElementsTrait
|
||||
{
|
||||
/**
|
||||
* Sets aria attribute
|
||||
*
|
||||
* @param string $type
|
||||
* @param string $element
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function aria(string $type, string $element)
|
||||
{
|
||||
$this->settings['attr']['aria-'.$type] = $element;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets data attribute
|
||||
*
|
||||
* @param string $type
|
||||
* @param string $element
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function data(string $type, string $element)
|
||||
{
|
||||
$this->settings['attr']['data-'.$type] = $element;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets ice:repeating attribute
|
||||
*
|
||||
* @param string $element
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function iceRepeating(string $element)
|
||||
{
|
||||
$this->settings['attr']['ice:repeating'] = $element;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets spry attribute
|
||||
*
|
||||
* @param string $type
|
||||
* @param string $element
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function spry(string $type, string $element)
|
||||
{
|
||||
$this->settings['attr']['spry-'.$type] = $element;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets src attribute
|
||||
*
|
||||
* @param string $element
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function source(string $element)
|
||||
{
|
||||
$this->settings['attr']['src'] = $element;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets title attribute
|
||||
*
|
||||
* @param string $element
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function title(string $element)
|
||||
{
|
||||
$this->settings['attr']['title'] = $element;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user