17 lines
359 B
PHP
Executable File
17 lines
359 B
PHP
Executable File
<?php
|
|
|
|
class photoSwipePlugin extends PluginBase{
|
|
function __construct(){
|
|
parent::__construct();
|
|
}
|
|
public function regiest(){
|
|
$this->hookRegiest(array(
|
|
'user.commonJs.insert' => 'photoSwipePlugin.echoJs',
|
|
));
|
|
}
|
|
public function echoJs($st,$act){
|
|
if($this->isFileExtence($st,$act)){
|
|
$this->echoFile('static/main.js');
|
|
}
|
|
}
|
|
} |