本文整理汇总了PHP中Jobs::getSeoTitle方法的典型用法代码示例。如果您正苦于以下问题:PHP Jobs::getSeoTitle方法的具体用法?PHP Jobs::getSeoTitle怎么用?PHP Jobs::getSeoTitle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Jobs
的用法示例。
在下文中一共展示了Jobs::getSeoTitle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
$app->get('(/(:page))', 'validateUser', function ($page = 1) use($app) {
$a = new Applications();
$start = getPaginationStart($page);
$count = $a->countApplications();
$number_of_pages = ceil($count / LIMIT);
$applications = $a->getApplications($start);
$app->render(ADMIN_THEME . 'applications.php', array('applications' => $applications, 'number_of_pages' => $number_of_pages, 'current_page' => $page, 'page_name' => 'applications', 'count' => $count));
});
// get job applications
$app->get('/jobs/:id(/:page)', 'validateUser', function ($id, $page = 1) use($app) {
$a = new Applications($id);
$start = getPaginationStart($page);
$count = $a->countApplications($id);
$number_of_pages = ceil($count / LIMIT);
$j = new Jobs($id);
$title = $j->getSeoTitle();
$applications = $a->getApplications($start);
$app->render(ADMIN_THEME . 'applications.job.php', array('applications' => $applications, 'number_of_pages' => $number_of_pages, 'current_page' => $page, 'page_name' => 'applications', 'count' => $count, 'title' => $title, 'id' => $id));
});
});
$app->group('/subscribers', function () use($app) {
$app->get('(/(:page))', 'validateUser', function ($page = 1) use($app) {
$s = new Subscriptions('');
$start = getPaginationStart($page);
$count = $s->countSubscriptions();
$number_of_pages = ceil($count / LIMIT);
$users = $s->getAllSubscriptions($start);
$app->render(ADMIN_THEME . 'subscribers.php', array('users' => $users, 'number_of_pages' => $number_of_pages, 'current_page' => $page, 'count' => $count, 'page_name' => 'subscribers'));
});
$app->get('/:id/:action/:token', 'validateUser', function ($id, $action, $token) use($app) {
$s = new Subscriptions('');