Файл: onlinepoisk.wm-scripts.ru/controller/meta.php
Строк: 42
<?php
use SymfonyComponentHttpFoundationRequest;
use SymfonyComponentHttpFoundationResponse;
$app->get('/part/{file}', function($file) use($app) {
$avparts = array("menu");
return $app['view']->render(null, "part/{$file}.phtml");
});
$app->get('/part/{file}', function($file) use($app) {
$avparts = array("main");
if ( !in_array($file, $avparts) ) {
return new Response("WTF?");
}
return $app['view']->render(null, "part/{$file}.phtml");
});
$app->get('/kill', function() use($app) {
$cache = ModelCache::find('all');
foreach ( $cache as $c ) {
$c->delete();
}
foreach (glob(ROOT . "/assets/*") as $file) {
unlink($file);
}
return new Response("Кэш очищен");
});
$app->get('/plslist', function() use($app) {
$pls = ModelPl::find_all_by_userid( $app['user']::get('id') );
return $app['view']->render(null, "part/plslist.phtml", array(
'pls' => $pls
));
});
/*
Техническая поддержка и обновления
http://wm-scripts.ru
*/