vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB5 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=263)
-   -   Use of PHP function to load extra css (https://vborg.vbsupport.ru/showthread.php?t=309758)

activeinternet 03-21-2014 01:08 PM

Use of PHP function to load extra css
 
Hi,

an Agency is programming an Smartphone App for our Webseite with the possibility to load the VB 5 Board in an Web Container. The app is sending an special header.

In VB I want to hide some Elements with css, only when it's loading over the app.

We get an PHP function that return true or false to do so over this header.
Something like that:

function detect_app()
{
*******
}

But i can't use such PHP in VB Template? I guess i have to program it as hook? But don't know why. And how can I use the rerun of this PHP function in template over vb:if then?

I'm really new with vbulletin and fond nothing about this for VB5 in the forum or Documentation. I have skills in PHP and CSS. But I really don't know how to start this.

Thank you,
Tobi

Dead Eddie 03-23-2014 05:18 AM

Thinking about it quickly, vb5 lets you call API methods from the templates. So, if you put your code into an api call, you could grab it from the templates.

The call would look like:

{vb:data varName, apiClass, apiMethod, parameter1, parameter2}

where
varName is what you want to call in your template
apiClass is the last part of the API class (if it's vB_Api_MyCustomAPI, apiClass would be MyCustomAPI)
apiMethod is the class method you're calling

There hasn't been much released to developers on vb5.

activeinternet 03-24-2014 01:54 PM

Hi,

thank you for the quick answer.

In wish file I have to place the PHP CODE?

Have a nice day.

Dead Eddie 03-24-2014 11:16 PM

create a new file in core/vb/api called apheadcheck.php

within that file, add this code:

PHP Code:

class vB_Api_Apheadcheck extends vB_Api
{

    protected 
$disableWhiteList = array('headcheck');
    
    
/**
    * @return boolean
    **/
    
public function headcheck()
    {
        
//insert your code here
        //should return true/false
    
}



Make sure your code returns a true/false, you can then call it (as above), and use the variable to decide if you want to include your custom css or not.

(warning...untested)


All times are GMT. The time now is 08:17 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.00997 seconds
  • Memory Usage 1,716KB
  • 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_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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