Sindbad~EG File Manager
<?php
namespace JeroenNoten\LaravelAdminLte\Menu\Filters;
class DataFilter implements FilterInterface
{
/**
* Transforms a menu item. Adds the compiled data attributes when suitable.
*
* @param array $item A menu item
* @return array The transformed menu item
*/
public function transform($item)
{
if (isset($item['data']) && is_array($item['data'])) {
$item['data-compiled'] = $this->compileData($item['data']);
}
return $item;
}
/**
* Compile an array of data attributes into a data string.
*
* @param array $dataArray Array of html data attributes
* @return string The compiled version of data attributes
*/
protected function compileData($dataArray)
{
$compiled = [];
foreach ($dataArray as $key => $value) {
$compiled[] = 'data-'.$key.'="'.$value.'"';
}
return implode(' ', $compiled);
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists