1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-14 03:26:20 +02:00

Use new capability of check_class

This commit is contained in:
e107steved
2007-12-30 14:18:30 +00:00
parent 0f510888b0
commit 47e8c582e6
2 changed files with 36 additions and 90 deletions

View File

@ -42,17 +42,14 @@ else
{
$uc = substr($postID,6);
}
else
{
$uc = $postID;
}
if ($pref['image_post'])
{
if(!isset($uc) || ($uc == ''))
{
if (!function_exists('e107_userGetuserclass'))
{
require_once(e_HANDLER.'user_func.php');
}
$uc = e107_userGetuserclass($postID);
}
if (check_class($pref['image_post_class'],$uc))
if (check_class($pref['image_post_class'],'',$uc))
{
return "<img src='".$code_text."' {$parmStr} />";
}

View File

@ -1,51 +0,0 @@
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| <20>Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/user_func.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:33:59 $
| $Author: mcfly_e107 $
+----------------------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
function e107_userGetuserclass($user_id)
{
global $cachevar;
$key = 'userclass_'.$user_id;
$val = getcachedvars($key);
if ($val)
{
return $cachevar[$key];
}
else
{
$uc_sql = new db;
if ($uc_sql->db_Select("user", "user_class, user_admin", "user_id=".intval($user_id)))
{
$row = $uc_sql->db_Fetch();
$uc = $row['user_class'];
$uc .= ",".e_UC_MEMBER;
if($row['user_admin'])
{
$uc .= ",".e_UC_ADMIN;
}
return $uc;
}
else
{
return "";
}
}
}
?>