| Current Path : /home/poneycluc/www/plugins/system/t4/src/t4/Helper/ |
| Current File : /home/poneycluc/www/plugins/system/t4/src/t4/Helper/T4Bootstrap.php |
<?php
namespace T4\Helper;
class T4Bootstrap {
public static function getAttrs($data = array()){
if(empty($data)) return "";
$attribs = " ";
foreach ($data as $name => $value) {
if(J3J4::isJ4() || defined('T4_BS5')){
$attribs .= "data-bs-".$name."=".$value;
}else{
$attribs .= "data-".$name."=".$value;
}
$attribs .= " ";
}
return $attribs;
}
}