PHP Classes

File: upload/plugins/bulletinboard/api_libs/bb_account_save_profile_cover.php

Recommend this page to a friend!
  Classes of James Brows   PHP Bulletin Board   upload/plugins/bulletinboard/api_libs/bb_account_save_profile_cover.php   Download  
File: upload/plugins/bulletinboard/api_libs/bb_account_save_profile_cover.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Bulletin Board
Manage and post messages in multi-user forums
Author: By
Last change:
Date: 2 years ago
Size: 874 bytes
 

Contents

Class file image Download
<?php

function bb_account_save_profile_cover()
{

    if(
Configs::$_['user_data']['user_id']=='GUEST')
    {
        return
'NG';
    }
   
   
$cookie_username=isset(Configs::$_['user_data']['user_id'])?Configs::$_['user_data']['user_id']:'';

    if(!isset(
$cookie_username[1]))
    {
        return
'NG';
    }

   
$file_path=addslashes(getPost('file_path',''));

   
$file_path=str_replace(SITE_URL,'',$file_path);

   
$resize = new ResizeImage(ROOT_PATH.$file_path);
   
$resize->resizeTo(1200, 457, 'exact');
   
$resize->saveImage(ROOT_PATH.$file_path);

   
$db=new Database();

   
$db->nonquery("update bb_user_data set wall_banner='".$file_path."' where user_id='".Configs::$_['user_data']['user_id']."' ");

   
$savePath=BB_CACHES_PATH.'forums.php';

    if(
file_exists($savePath))
    {
       
unlink($savePath);
    }

    return
SITE_URL.$file_path;
}