vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   defining an array and $istyles (https://vborg.vbsupport.ru/showthread.php?t=105636)

sabret00the 01-18-2006 03:00 PM

defining an array and $istyles
 
first off can someone tell me where $istyles is defined please?

secondly, what's wrong with this?
PHP Code:

    if (!$istyles)
    {
        
$istyles = array(
            [
pi_button_down] => array(
                [
0] => '#98B5E2',
                [
1] => '#000000',
                [
2] => '0px',
                [
3] => '1px solid #316AC5'
            
),
            [
pi_button_hover] => array(
                [
0] => '#C1D2EE',
                [
1] => '#000000',
                [
2] => '0px',
                [
3] => '1px solid #316AC5'
            
),
            [
pi_button_normal] => array(
                [
0] => '#E1E1E2',
                [
1] => '#000000',
                [
2] => '1px',
                [
3] => 'none'
            
),
            [
pi_button_selected] => array(
                [
0] => '#F1F6F8',
                [
1] => '#000000',
                [
2] => '0px',
                [
3] => '1px solid #316AC5'
            
),
            [
pi_menu_down] => array(
                [
0] => '#98B5E2',
                [
1] => '#316AC5',
                [
2] => '0px',
                [
3] => '1px solid #316AC5'
            
),
            [
pi_menu_hover] => array(
                [
0] => '#C1D2EE',
                [
1] => '#316AC5',
                [
2] => '0px',
                [
3] => '1px solid #316AC5',
            ),
            [
pi_menu_normal] => array(
                [
0] => '#FFFFFF',
                [
1] => '#000000',
                [
2] => '0px',
                [
3] => '1px solid #FFFFFF'
            
),
            [
pi_popup_down] => array(
                [
0] => '#98B5E2',
                [
1] => '#000000',
                [
2] => '0px',
                [
3] => '1px solid #316AC5'
            
)
        );
    } 

it's telling me
Code:

Parse error: parse error, expecting `')'' in K:\Network\xampp\htdocs\3.5.x\xxx\submit.php on line 217
theirs clearly not :(

Andreas 01-18-2006 03:17 PM

First of all, i'd try to use correct PHP

PHP Code:

if (!$istyles)
{
    
$istyles = array(
        
'pi_button_down' => array(
            
=> '#98B5E2',
            
=> '#000000',
            
=> '0px',
            
=> '1px solid #316AC5'
        
),
        
'pi_button_hover' => array(
            
=> '#C1D2EE',
            
=> '#000000',
            
=> '0px',
            
=> '1px solid #316AC5'
        
),
        
'pi_button_normal' => array(
            
=> '#E1E1E2',
            
=> '#000000',
            
=> '1px',
            
=> 'none'
        
),
        
'pi_button_selected' => array(
            
=> '#F1F6F8',
            
=> '#000000',
            
=> '0px',
            
=> '1px solid #316AC5'
        
),
        
'pi_menu_down' => array(
            
=> '#98B5E2',
            
=> '#316AC5',
            
=> '0px',
            
=> '1px solid #316AC5'
        
),
        
'pi_menu_hover' => array(
            
=> '#C1D2EE',
            
=> '#316AC5',
            
=> '0px',
            
=> '1px solid #316AC5',
        ),
        
'pi_menu_normal' => array(
            
=> '#FFFFFF',
            
=> '#000000',
            
=> '0px',
            
=> '1px solid #FFFFFF'
        
),
        
'pi_popup_down' => array(
            
=> '#98B5E2',
            
=> '#000000',
            
=> '0px',
            
=> '1px solid #316AC5'
        
)
    );


Quote:

Originally Posted by showthread.php
PHP Code:

$istyles_js construct_editor_styles_js(); 


Quote:

Originally Posted by functions_editor.php
PHP Code:

function construct_editor_styles_js($editorstyles false)
{
    
// istyles - CSS in order: background / color / padding / border
    
global $istyles;

    if (!
is_array($istyles))
    {
        if (!
$editorstyles)
        {
            
$istyles unserialize($GLOBALS['style']['editorstyles']);
        }
        else
        {
            
$istyles unserialize($editorstyles);
        }
    }

    
$istyle = array();
    foreach (
$istyles AS $key => $array)
    {
        
$istyle[] = "\"$key\" : [ \"$array[0]\", \"$array[1]\", \"$array[2]\", \"$array[3]\" ]";
    }

    return 
implode(", "$istyle);




sabret00the 01-19-2006 07:50 PM

lol, thanks kirby, i have no idea what happened there :o)


All times are GMT. The time now is 04:56 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01130 seconds
  • Memory Usage 1,780KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (4)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete