Skip to content

Instantly share code, notes, and snippets.

@dimkalinux
Created July 20, 2011 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dimkalinux/1094550 to your computer and use it in GitHub Desktop.
Save dimkalinux/1094550 to your computer and use it in GitHub Desktop.
Include CSS in PunBB 1.4 extensions
<hook id="hd_head"><![CDATA[
if ($forum_user['style'] != 'Oxygen' && file_exists($ext_info['path'].'/style/'.$forum_user['style'].'/style.css'))
$forum_loader->add_css($ext_info['url'].'/style/'.$forum_user['style'].'/style.css', array('type' => 'url'));
else
$forum_loader->add_css($ext_info['url'].'/style/Oxygen/style.css', array('type' => 'url'));
]]></hook>
@dimkalinux
Copy link
Author

For include CSS you can use any hook that called before hd_head.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment