File: /var/www/intranet.kauko.lt/wp-content/plugins/file-away/lib/inc/inc.styles.php
<?php
defined('fileaway') or die('Water, water everywhere, but not a drop to drink.');
$color = ($type === "table" && !$color ? "classic" : ($type === "table" && $color === "random" ? false : $color));
$iconcolor = ($type === "table" && !$iconcolor ? "classic" : ($type === "table" && $iconcolor === "random" ? false : $iconcolor));
$randcolor = array("red","green","blue","brown","black","orange","silver","purple","pink");
$paginated = $paginate ? " data-page-navigation='.ssfa-pagination'" : null;
$pagearea = $paginate ? "<div class='ssfa-pagination ssfa-pagination-centered hide-if-no-paging'></div>" : null;
$pagesized = $paginate ? " data-page-size='$pagesize'" : null;
$page = $paginate ? $paginated.$pagesized : "$paginated data-page-size='100000'";
$display = $display ? ($display === 'inline' ? 'ssfa-inline' : ($display === '2col' ? 'ssfa-twocol' : null )) : null;
$ellipsis = $display === 'ssfa-twocol' ? ' ssfa-ellipsis' : null;
$bordercolor = $color ? $color : $randcolor[array_rand($randcolor)];
$bordercolor = $theme === 'silk' || $theme === 'minimal-list' ? null : " ssfa-$bordercolor";
$noicons = $icons === 'none' ? ' noicons' : null;
$corners = $theme === 'minimal-list' ? null : ($corners ? " ssfa-$corners" : null);
$theme = "ssfa-$theme";
$textalign = $textalign ? ' ssfa-'.$textalign : null;
$width = preg_replace('[\D]', '', $width);
$width = $width ? "width:$width$perpx;" : null;
$float = " float:$align;";
$margin = $width !== 'width:100%;' ? ($align === 'right' ? ' margin-left:15px;' : ' margin-right:15px;') : null;
$howshouldiputit = $width.$float.$margin;