extending.php 394 B

1234567891011121314
  1. <?php
  2. include 'common.php';
  3. $panel = $request->get('panel');
  4. $panelTable = unserialize($options->panelTable);
  5. if (!isset($panelTable['file']) || !in_array(urlencode($panel), $panelTable['file'])) {
  6. throw new \Typecho\Plugin\Exception(_t('页面不存在'), 404);
  7. }
  8. [$pluginName, $file] = explode('/', trim($panel, '/'), 2);
  9. require_once $options->pluginDir($pluginName) . '/' . $file;