mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
84 lines
2.6 KiB
PHP
84 lines
2.6 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/newforumposts_main/plugin.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
// Plugin info -------------------------------------------------------------------------------------------------------
|
|
$eplug_name = "New Forum Posts";
|
|
$eplug_version = "1";
|
|
$eplug_author = "e107 Inc.";
|
|
$eplug_url = "http://e107.org";
|
|
$eplug_email = "jalist@e107.org";
|
|
$eplug_description = "This plugin displays a list of new forum posts on your front page";
|
|
$eplug_compatible = "1.x";
|
|
$eplug_date = "2012-08-01";
|
|
$eplug_readme = "";
|
|
// leave blank if no readme file
|
|
|
|
// Name of the plugin's folder -------------------------------------------------------------------------------------
|
|
$eplug_folder = "newforumposts_main";
|
|
|
|
// Mane of menu item for plugin ----------------------------------------------------------------------------------
|
|
$eplug_menu_name = "newforumposts_main";
|
|
|
|
// Name of the admin configuration file --------------------------------------------------------------------------
|
|
$eplug_conffile = "admin_config.php";
|
|
|
|
// Icon image and caption text ------------------------------------------------------------------------------------
|
|
$eplug_icon = $eplug_folder."/images/new_forum_32.png";
|
|
$eplug_icon_small = $eplug_folder."/images/new_forum_16.png";
|
|
$eplug_caption = "Configure New Forum Posts";
|
|
|
|
// List of preferences -----------------------------------------------------------------------------------------------
|
|
$eplug_prefs = array(
|
|
"nfp_display" => 0,
|
|
"nfp_caption" => "Latest Forum Posts",
|
|
"nfp_amount" => 5,
|
|
);
|
|
|
|
// List of table names -----------------------------------------------------------------------------------------------
|
|
$eplug_table_names = "";
|
|
|
|
// List of sql requests to create tables -----------------------------------------------------------------------------
|
|
$eplug_tables = "";
|
|
|
|
|
|
// Create a link in main menu (yes=TRUE, no=FALSE) -------------------------------------------------------------
|
|
$eplug_link = FALSE;
|
|
$eplug_link_name = "";
|
|
$ec_dir = e_PLUGIN."";
|
|
$eplug_link_url = "";
|
|
|
|
|
|
// Text to display after plugin successfully installed ------------------------------------------------------------------
|
|
$eplug_done = "To configure please click on the link in the plugins section of the admin front page";
|
|
|
|
|
|
// upgrading ... //
|
|
|
|
$upgrade_add_prefs = "";
|
|
|
|
$upgrade_remove_prefs = "";
|
|
|
|
$upgrade_alter_tables = "";
|
|
|
|
$eplug_upgrade_done = "";
|
|
|
|
|
|
|
|
|
|
|