Вход Регистрация
Файл: forum/attach_mod/attachment_mod.php
Строк: 149
<?php
/***************************************************************************
 *                               attachment_mod.php
 *                            -------------------
 *   begin                : Monday, Jan 07, 2002
 *   copyright            : (C) 2002 Meik Sievertsen
 *   email                : acyd.burn@gmx.de
 *
 *   $Id: attachment_mod.php,v 1.1.1.1 2005/09/13 05:58:17 eugene Exp $
 *
 *
 ***************************************************************************/

/***************************************************************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 ***************************************************************************/

if ( !defined('IN_PHPBB') )
{
    die(
'Hacking attempt');
    exit;
}

include(
$phpbb_root_path 'attach_mod/includes/constants.'.$phpEx);
include(
$phpbb_root_path 'attach_mod/includes/functions_includes.'.$phpEx);
include(
$phpbb_root_path 'attach_mod/includes/functions_attach.'.$phpEx);
include(
$phpbb_root_path 'attach_mod/includes/functions_delete.'.$phpEx);
include(
$phpbb_root_path 'attach_mod/includes/functions_thumbs.'.$phpEx);
include(
$phpbb_root_path 'attach_mod/includes/functions_filetypes.'.$phpEx);

if ( 
defined('ATTACH_INSTALL') )
{
    return;
}

function 
include_attach_lang()
{
    global 
$phpbb_root_path$phpEx$lang$board_config$attach_config;
    
    
//
    // Include Language
    //
    
$language $board_config['default_lang'];

    if ( !@
file_exists(@amod_realpath($phpbb_root_path 'language/lang_' $language '/lang_main_attach.'.$phpEx)) )
    {
        
$language $attach_config['board_lang'];
    }

    include(
$phpbb_root_path 'language/lang_' $language '/lang_main_attach.' $phpEx);

    if ( 
defined('IN_ADMIN') )
    {
        if( !@
file_exists(@amod_realpath($phpbb_root_path 'language/lang_' $language '/lang_admin_attach.'.$phpEx)) )
        {
            
$language $attach_config['board_lang'];
        }

        include(
$phpbb_root_path 'language/lang_' $language '/lang_admin_attach.' $phpEx);
    }

}

function 
get_config()
{
    global 
$db$board_config;

    
$attach_config = array();

    
$sql 'SELECT *
    FROM ' 
ATTACH_CONFIG_TABLE;
     
    if ( !(
$result $db->sql_query($sql)) )
    {
        
message_die(GENERAL_ERROR'Could not query attachment information'''__LINE____FILE__$sql);
    }

    while (
$row $db->sql_fetchrow($result))
    {
        
$attach_config[$row['config_name']] = trim($row['config_value']);
    }

    
$attach_config['board_lang'] = trim($board_config['default_lang']);

    return (
$attach_config);
}

//
// Get Attachment Config
//
$cache_dir $phpbb_root_path '/cache';
$cache_file $cache_dir '/attach_config.php';
$attach_config = array();

if (
file_exists($cache_dir) && is_dir($cache_dir) && is_writable($cache_dir))
{
    if (
file_exists($cache_file))
    {
        include(
$cache_file);
    }
    else
    {
        
$attach_config get_config();
        
$fp = @fopen($cache_file'wt+');
        if (
$fp)
        {
            @
reset($attach_config);
            
fwrite($fp"<?phpn");
            while (list(
$key$value) = @each($attach_config) )
            {
                
fwrite($fp'$attach_config['' . $key . ''] = '' . trim($value) . '';' "n");
            }
            
fwrite($fp'?>');
            
fclose($fp);
        }
    }
}
else
{
    
$attach_config get_config();
}

// Please do not change the include-order, it is valuable for proper execution.
// Functions for displaying Attachment Things
include($phpbb_root_path 'attach_mod/displaying.'.$phpEx);
// Posting Attachments Class (HAVE TO BE BEFORE PM)
include($phpbb_root_path 'attach_mod/posting_attachments.'.$phpEx);
// PM Attachments Class
include($phpbb_root_path 'attach_mod/pm_attachments.'.$phpEx);

if (!
intval($attach_config['allow_ftp_upload']))
{
    
$upload_dir $attach_config['upload_dir'];
}
else
{
    
$upload_dir $attach_config['download_path'];
}

?>
Онлайн: 0
Реклама