本文整理汇总了PHP中L::getAllCurrency方法的典型用法代码示例。如果您正苦于以下问题:PHP L::getAllCurrency方法的具体用法?PHP L::getAllCurrency怎么用?PHP L::getAllCurrency使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类L
的用法示例。
在下文中一共展示了L::getAllCurrency方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
<?php
$app->group('/dashboard', function () use($app) {
$app->group('/admin', function () use($app) {
/***********************************************************START Add/Create*********************************/
$app->get('/create', function () use($app) {
$app->view->setData('currencies', L::getAllCurrency());
$app->view->setData('form_action', "dashboard/admin/confirm");
$app->view->setData('page_title', "Create admin");
$app->render(new u('admin.create'));
});
$app->post('/confirm', function () use($app) {
$POST = $app->request()->post();
$admin = new admin();
$admin->form_post_value = $POST;
$admin->save();
if ($admin->fails()) {
$app->view->setData('error', "1");
$app->view->setData('msg', $admin->getError());
$app->render(new u('msg'));
} else {
$app->view->setData('success', "1");
$app->view->setData('msg', "Successfully User Created");
$app->render(new u('msg'));
}
});
/*****************************************VIEW************************************************/
$app->get('/view(/:page)', function ($page = 0) use($app) {
$getAdminList = new admin();
$cols = $getAdminList->getAdminList();
$app->view->setData('form_action', "/dashboard/admin/search");