22 lines
305 B
PHP
22 lines
305 B
PHP
<?php
|
|
|
|
class pluginTimeMachine extends Plugin {
|
|
|
|
public function init()
|
|
{
|
|
|
|
}
|
|
|
|
public function beforeAdminLoad()
|
|
{
|
|
global $L;
|
|
|
|
$notifyText = '';
|
|
if($_SERVER['REQUEST_METHOD']=='POST') {
|
|
if($GLOBALS['ADMIN_CONTROLLER']=='new-page') {
|
|
$notifyText = $L->g('New page created');
|
|
}
|
|
}
|
|
}
|
|
}
|