Skip to content

Instantly share code, notes, and snippets.

@shannah
Created April 12, 2014 16:18
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 shannah/10543939 to your computer and use it in GitHub Desktop.
Save shannah/10543939 to your computer and use it in GitHub Desktop.
Custom stylesheet included only for dashboard table.
<?php
class conf_ApplicationDelegate {
function beforeHandleRequest(){
$app = Dataface_Application::getInstance();
$query = $app->getQuery();
$app->addHeadContent('<link rel="stylesheet" type="text/css" href="style.css"/>');
if ( $query['-table'] == 'dashboard' ){
$app->addHeadContent('<link rel="stylesheet" type="text/css" href="dashboard.css"/>');
}
}
div#top-search-form {display:none;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment