20 lines
390 B
PHP
20 lines
390 B
PHP
<?php
|
|
/**
|
|
* Utilisations de pipelines par Redirect Mobile
|
|
*
|
|
* @plugin Redirect Mobile
|
|
* @copyright 2020
|
|
* @author tofulm
|
|
* @licence GNU/GPL
|
|
* @package SPIP\Redirectmobile\Pipelines
|
|
*/
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
|
|
function redirectmobile_jquery_plugins($scripts) {
|
|
$scripts[] = produire_fond_statique('redirectMobile.js');
|
|
return $scripts;
|
|
}
|