You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
389 B
PHP
16 lines
389 B
PHP
<?php
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')){
|
|
return;
|
|
}
|
|
|
|
function accordion_jqueryui_plugins($plugins){
|
|
$plugins[] = "jquery.ui.accordion";
|
|
return $plugins;
|
|
}
|
|
|
|
function accordion_insert_head($flux) {
|
|
$flux .='<link rel="stylesheet" href="'.find_in_path('css/spip_accordion.css').'">';
|
|
$flux .='<script src="'.find_in_path('javascript/spip_accordion.js').'"></script>';
|
|
return $flux;
|
|
} |