css_includes[__CLASS__] with any new paths added. * * that way later modules can remove css from the path, or replace it compeletly.. * */ class Pman_BAdmin_Pman { function outputCSSIncludes($pg) { $ff = HTML_FlexyFramework2::get(); $css_path = empty($ff->Pman['css_path']) ? "{$pg->rootURL}/roojs1/css-bootstrap" : ($pg->rootURL.'/'.$ff->Pman['css_path']); $pg->assetArrayToHtml(array( "{$pg->rootURL}/roojs1/css-bootstrap/font-awesome.css", "{$css_path}/bootstrap.min.css", "{$css_path}/roojs-bootstrap.css" ), 'css'); } function applyCSSIncludes($pg) { if (isset($ff->Pman['css_path'])) { return; // temporary until we migrate the live site } $pg->css_includes[__CLASS__] = array( "{$pg->rootURL}/roojs1/css-bootstrap/font-awesome.css", "{$pg->rootURL}/bootstrap.min.css", "{$pg->rootURL}/roojs-bootstrap.css" ); } }