Seditio Source
Root |
./othercms/slaed_cms_6.2_pro/blocks/block-keywords.php
<?php
# Copyright © 2005 - 2015 SLAED
# Website: http://www.slaed.net

if (!defined("BLOCK_FILE")) {
   
header("Location: ../index.php");
    exit;
}

global
$conf;
$words = $conf['keywords'];
if (
is_array($words)) {
   
$kwords = "<style scoped>.keyw { background: none; color: #000000; font-size: 12px; font-weight: normal; font-family: Verdana, Helvetica; text-decoration: none; margin: 0 0 0 3; float: left }</style>";
    foreach (
$words as $val) {
        if (
$val != "") {
           
$num = mt_rand(1, 5);
           
$kwords .= "<h".$num." class=\"keyw\">".$val."</h".$num.">";
        }
    }
   
$content = $kwords;
}
?>