Something profound about AreteX™ and product delivery goes here.
Product Delivery
 ?>)
New Manifest
(Delivery Code)
 ?>)
Manifest
Management
if (! function_exists('delivery_feature_icons'))
{
function delivery_feature_icons()
{
$str = '';
global $wpdb;
$table_name = $wpdb->prefix .'aretex_features';
$rows = $wpdb->get_results( "SELECT * FROM $table_name WHERE load_feature='Y' AND feature_installed='Y'", ARRAY_A );
foreach($rows as $row)
{
$parameters = unserialize($row['parameters']);
extract($parameters);
if ($FeatureType == 'Delivery')
{
$class = $row['feature_class'];
if (method_exists($class,'IconURL'))
{
$icon_src = $class::IconURL($IconPath);
}
$click = 'onclick="load_feature_screen('."'{$row['feature_name']}'".','."'main'".');" ';
}
$str .= '
';
$str .= '
';
$str .= $IconName;
$str .= ' ';
}
return $str;
}
}
echo delivery_feature_icons();
?>