PHP Classes

File: libs/config.php

Recommend this page to a friend!
  Classes of ASCOOS CMS   PHPClasses Feed Viewer   libs/config.php   Download  
File: libs/config.php
Role: Configuration script
Content type: text/plain
Description: Configuration class source
Class: PHPClasses Feed Viewer
Display the latest PHP Classes packages on a page
Author: By
Last change: Updated tp 1.0.1
Date: 3 days ago
Size: 1,021 bytes
 

Contents

Class file image Download
<?php
/**
 * @package : Latest classes from PHPClasses.org
 * @source : /phpclasses-feed/libs/config.php
 * @version : 1.0.1
 * @created : 2024-10-14 07:00:00 UTC+3
 * @updated : 2024-10-15 07:00:00 UTC+3
 * @author : Drogidis Christos
 * @authorSite : www.alexsoft.gr
 * @license : AGL-F
 *
 * @since PHP 5.6.40
 */

class TPHPClassesConfig {

    public
$params = [
       
'lang' => 'en', // Current Language of package
       
'show_title' => true, // Show Title in block element.
       
'method' => 'rss', // What feed method is used (XML or RSS)?
       
'count' => 10, // How many classes will be displayed.
       
'user' => 'bigfriend', // PHPClasses User
       
'show_summary' => true, // Show Summary Description
       
'show_days' => true, // Show Days
       
'theme' => 'cleargray' // The Block theme
   
];



}
 
?>