本文整理汇总了PHP中Security类的典型用法代码示例。如果您正苦于以下问题:PHP Security类的具体用法?PHP Security怎么用?PHP Security使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Security类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: process
public static function process()
{
$security = new Security();
$security->verifyPre();
$data = stream_get_contents(fopen('php://input', 'r'));
$compressedSize = strlen($data);
$security->verifyCompressedData($data, $compressedSize);
$data = @gzdecode($data);
$uncompressedSize = strlen($data);
$security->validateData($data, $uncompressedSize);
$json = json_decode($data, true);
$security->validateJson($json);
if (isset($json['icon'])) {
$img = self::getServerIcon($json['icon']);
$json['icon'] = $img;
$data = json_encode($json);
$uncompressedSize = strlen($data);
}
$key = Util::uuid(false);
$cacheFile = Cache::getFile($key);
Log::info("Uploaded {$uncompressedSize} bytes as {$key} to {$cacheFile}");
Cache::put($key, $data);
header("Location: " . BASE_URL_VIEW . "/?id={$key}");
self::error("Compressed Size: {$compressedSize}\nUncompressed Size: {$uncompressedSize}\nRaw Upload: " . BASE_URL_VIEW . "/?id={$key}&raw=1");
}
开发者ID:ArcheonK,项目名称:timings,代码行数:25,代码来源:Uploader.php
示例2: init
function init()
{
// Get the member configuration
$oMemberModel = getModel('member');
$this->member_config = $oMemberModel->getMemberConfig();
Context::set('member_config', $this->member_config);
$oSecurity = new Security();
$oSecurity->encodeHTML('member_config.signupForm..');
$mskin = $this->member_config->mskin;
// Set the template path
if (!$mskin) {
$mskin = 'default';
$template_path = sprintf('%sm.skins/%s', $this->module_path, $mskin);
} else {
$template_path = sprintf('%sm.skins/%s', $this->module_path, $mskin);
}
// if member_srl exists, set memberInfo
$member_srl = Context::get('member_srl');
if ($member_srl) {
$oMemberModel = getModel('member');
$this->memberInfo = $oMemberModel->getMemberInfoByMemberSrl($member_srl);
if (!$this->memberInfo) {
Context::set('member_srl', '');
} else {
Context::set('member_info', $this->memberInfo);
}
}
$this->setTemplatePath($template_path);
$oLayoutModel = getModel('layout');
$layout_info = $oLayoutModel->getLayout($this->member_config->mlayout_srl);
if ($layout_info) {
$this->module_info->mlayout_srl = $this->member_config->mlayout_srl;
$this->setLayoutPath($layout_info->path);
}
}
开发者ID:kimkucheol,项目名称:xe-core,代码行数:35,代码来源:member.mobile.php
示例3: dispNcenterliteAdminSkinsetting
function dispNcenterliteAdminSkinsetting()
{
$oModuleModel = getModel('module');
$oLayoutModel = getModel('layout');
$oNcenterliteModel = getModel('ncenterlite');
$config = $oNcenterliteModel->getConfig();
Context::set('config', $config);
$layout_list = $oLayoutModel->getLayoutList();
Context::set('layout_list', $layout_list);
$mobile_layout_list = $oLayoutModel->getLayoutList(0, 'M');
Context::set('mlayout_list', $mobile_layout_list);
$skin_list = $oModuleModel->getSkins($this->module_path);
Context::set('skin_list', $skin_list);
$mskin_list = $oModuleModel->getSkins($this->module_path, "m.skins");
Context::set('mskin_list', $mskin_list);
if (!$skin_list[$config->skin]) {
$config->skin = 'default';
}
Context::set('colorset_list', $skin_list[$config->skin]->colorset);
if (!$mskin_list[$config->mskin]) {
$config->mskin = 'default';
}
Context::set('mcolorset_list', $mskin_list[$config->mskin]->colorset);
$security = new Security();
$security->encodeHTML('config..');
$security->encodeHTML('skin_list..title');
$security->encodeHTML('colorset_list..name', 'colorset_list..title');
}
开发者ID:rhymix,项目名称:rhymix,代码行数:28,代码来源:ncenterlite.admin.view.php
示例4: getCommunicationAdminColorset
/**
* the html to select colorset of the skin
* @return void
*/
function getCommunicationAdminColorset()
{
$skin = Context::get('skin');
$type = Context::get('type') == 'P' ? 'P' : 'M';
Context::set('type', $type);
if ($type == 'P') {
$dir = 'skins';
} else {
$dir = 'm.skins';
}
if (!$skin) {
$tpl = "";
} else {
$oModuleModel = getModel('module');
$skin_info = $oModuleModel->loadSkinInfo($this->module_path, $skin, $dir);
Context::set('skin_info', $skin_info);
$oModuleModel = getModel('module');
$communication_config = $oModuleModel->getModuleConfig('communication');
if (!$communication_config->colorset) {
$communication_config->colorset = "white";
}
Context::set('communication_config', $communication_config);
$security = new Security();
$security->encodeHTML('skin_info.colorset..title', 'skin_info.colorset..name');
$security->encodeHTML('skin_info.colorset..name');
$oTemplate = TemplateHandler::getInstance();
$tpl = $oTemplate->compile($this->module_path . 'tpl', 'colorset_list');
}
$this->add('tpl', $tpl);
$this->add('type', $type);
}
开发者ID:umjinsun12,项目名称:dngshin,代码行数:35,代码来源:communication.admin.model.php
示例5: dispTrackbackAdminList
/**
* Display output list (administrative)
* @return void
*/
function dispTrackbackAdminList()
{
// Wanted set
$oModuleModel =& getModel('module');
$config = $oModuleModel->getModuleConfig('trackback');
Context::set('config', $config);
// Options to get a list
$args->page = Context::get('page');
// / "Page
$args->list_count = 30;
// / "One page of posts to show the
$args->page_count = 10;
// / "Number of pages that appear in the page navigation
$args->sort_index = 'list_order';
// / "Sorting values
$args->module_srl = Context::get('module_srl');
// Get a list
$oTrackbackAdminModel =& getAdminModel('trackback');
$output = $oTrackbackAdminModel->getTotalTrackbackList($args);
// To write to a template parameter settings
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('trackback_list', $output->data);
Context::set('page_navigation', $output->page_navigation);
//Security
$security = new Security();
$security->encodeHTML('config.');
$security->encodeHTML('trackback_list..');
// Set a template
$this->setTemplatePath($this->module_path . 'tpl');
$this->setTemplateFile('trackback_list');
}
开发者ID:relip,项目名称:xe-core,代码行数:37,代码来源:trackback.admin.view.php
示例6: init
function init()
{
$oTimelineModel = getModel('timeline');
$module_srl = Context::get('module_srl');
$timeline_info = $oTimelineModel->getTimelineInfo($module_srl);
// 타임라인 게시판 정보 유효성 검증
if ($timeline_info) {
$standard_date = sscanf($timeline_info->standard_date, '%04d%02d%02d%02d%02d%02d');
$limit_date = sscanf($timeline_info->limit_date, '%04d%02d%02d%02d%02d%02d');
Context::set('timeline_info', $timeline_info);
Context::set('attach_info', $timeline_info->attach_info);
Context::set('standard_date', $standard_date);
Context::set('limit_date', $limit_date);
} else {
Context::set('module_srl', '');
}
// 모듈 분류 불러오기
$oModuleModel = getModel('module');
$module_category = $oModuleModel->getModuleCategories();
Context::set('module_category', $module_category);
$security = new Security();
$security->encodeHTML('module_category..');
// 모듈 설치 여부 불러오기
$is_installed = !$this->checkUpdate();
Context::set('is_installed', $is_installed);
// 템플릿 경로 설정
$this->setTemplatePath($this->module_path . 'tpl');
}
开发者ID:ajkj,项目名称:xe-module-timeline,代码行数:28,代码来源:timeline.admin.view.php
示例7: init
function init()
{
$oSecurity = new Security();
$oSecurity->encodeHTML('document_srl', 'comment_srl', 'vid', 'mid', 'page', 'category', 'search_target', 'search_keyword', 'sort_index', 'order_type', 'trackback_srl');
if ($this->module_info->list_count) {
$this->list_count = $this->module_info->list_count;
}
if ($this->module_info->search_list_count) {
$this->search_list_count = $this->module_info->search_list_count;
}
if ($this->module_info->page_count) {
$this->page_count = $this->module_info->page_count;
}
$this->except_notice = $this->module_info->except_notice == 'N' ? false : true;
// $this->_getStatusNameListecret option backward compatibility
$oDocumentModel = getModel('document');
$statusList = $this->_getStatusNameList($oDocumentModel);
if (isset($statusList['SECRET'])) {
$this->module_info->secret = 'Y';
}
// use_category <=1.5.x, hide_category >=1.7.x
$count_category = count($oDocumentModel->getCategoryList($this->module_info->module_srl));
if ($count_category) {
if ($this->module_info->hide_category) {
$this->module_info->use_category = $this->module_info->hide_category == 'Y' ? 'N' : 'Y';
} else {
if ($this->module_info->use_category) {
$this->module_info->hide_category = $this->module_info->use_category == 'Y' ? 'N' : 'Y';
} else {
$this->module_info->hide_category = 'N';
$this->module_info->use_category = 'Y';
}
}
} else {
$this->module_info->hide_category = 'Y';
$this->module_info->use_category = 'N';
}
/**
* check the consultation function, if the user is admin then swich off consultation function
* if the user is not logged, then disppear write document/write comment./ view document
**/
if ($this->module_info->consultation == 'Y' && !$this->grant->manager) {
$this->consultation = true;
if (!Context::get('is_logged')) {
$this->grant->list = $this->grant->write_document = $this->grant->write_comment = $this->grant->view = false;
}
} else {
$this->consultation = false;
}
$oDocumentModel = getModel('document');
$extra_keys = $oDocumentModel->getExtraKeys($this->module_info->module_srl);
Context::set('extra_keys', $extra_keys);
$template_path = sprintf("%sm.skins/%s/", $this->module_path, $this->module_info->mskin);
if (!is_dir($template_path) || !$this->module_info->mskin) {
$this->module_info->mskin = 'default';
$template_path = sprintf("%sm.skins/%s/", $this->module_path, $this->module_info->mskin);
}
$this->setTemplatePath($template_path);
Context::addJsFilter($this->module_path . 'tpl/filter', 'input_password.xml');
}
开发者ID:umjinsun12,项目名称:dngshin,代码行数:60,代码来源:board.mobile.php
示例8: logout
/**
* Logout current user
* Since the logout doesn't throw an error, we don't throw one either
*/
public function logout($message = array())
{
if ($member = Member::currentUser()) {
$security = new Security();
$security->logout(false);
}
return true;
}
开发者ID:silverstripe-supervillains,项目名称:silverstripe-origami,代码行数:12,代码来源:UserOrigamiApi.php
示例9: breakJSONObject
public function breakJSONObject()
{
try {
$queryCollection = "";
$shield = new Security();
$json_file = $_POST['jsonobject'];
$json_file = str_replace('{"dt_objectTable":[', '{"dt_objectTable":', $json_file);
$json_file = str_replace('{"dt_relatedTable":[', '{"dt_relatedTable":', $json_file);
$json_file = str_replace('}]}', '}}', $json_file);
if ($shield->shield($_POST['MODIFY_STATUS']) == "INS") {
$fieldtarget = '{"fieldName":"ROADOFSPK","fieldValue":"0","fieldType":"numeric","fieldKey":"0"}';
$additionalField = "";
if ($shield->shield($_POST['CARA_BAYAR']) == "KREDIT") {
$additionalField .= '{"fieldName":"SISA_BAYAR","fieldValue":"' . $_POST["DP_SYSTEM"] . '","fieldType":"numeric"}';
$additionalField .= ',{"fieldName":"STATUS_PO","fieldValue":"1. INDENT","fieldType":"string"}';
$additionalField .= ',{"fieldName":"AR_AMOUNT","fieldValue":"' . $_POST["DP_SYSTEM"] . '","fieldType":"numeric"}';
} else {
$additionalField .= '{"fieldName":"SISA_BAYAR","fieldValue":"' . $_POST["HARGA"] . '","fieldType":"numeric"}';
$additionalField .= ',{"fieldName":"AR_AMOUNT","fieldValue":"' . $_POST["HARGA"] . '","fieldType":"numeric"}';
}
$additionalField .= ',{"fieldName":"STATUS_SPK","fieldValue":"1","fieldType":"string"}';
$additionalField .= ',{"fieldName":"STATUS_JUAL","fieldValue":"1. SPK","fieldType":"string"}';
$additionalField .= ',{"fieldName":"STATUS_KIRIM","fieldValue":"N","fieldType":"string"}';
$additionalField .= ',{"fieldName":"STATUS_ARK","fieldValue":"N","fieldType":"string"}';
$additionalField .= ',{"fieldName":"CUSTOM_NO","fieldValue":"' . $shield->shield($_POST["NO_SPK"]) . '","fieldType":"string"}';
$additionalField .= ',{"fieldName":"ROADOFSPK","fieldValue":"0","fieldType":"numeric"}';
$json_file = str_replace($fieldtarget, $additionalField, $json_file);
}
//echo $json_file;
// convert the string to a json object
$jfo = json_decode($json_file);
$relField = "";
$relCount = 0;
$relTables = $jfo->dt_objectTable->dt_relatedTables;
foreach ($relTables as $relTbl) {
$myTable = $relTbl->dt_relatedTable;
$relTableName = $myTable->tableName;
$relautonumFormat = $myTable->autonumFormat;
$relModifyStatus = $myTable->modify_status;
$dt_relFields = $myTable->dt_relfieldCollection;
$queryCollection .= $this->generateQuery($dt_relFields, $relTableName, $relautonumFormat, $relModifyStatus, $relCount);
$relCount = $relCount + 1;
}
$tableName = $jfo->dt_objectTable->tableName;
$autonumFormat = $jfo->dt_objectTable->autonumFormat;
$modifystatus = $jfo->dt_objectTable->modify_status;
$dt_fields = $jfo->dt_objectTable->dt_fieldsCollection;
$queryCollection .= $this->generateQuery($dt_fields, $tableName, $autonumFormat, $modifystatus, 0);
//echo $queryCollection;
$model = new object_Model();
$result = $model->executeQuery($queryCollection);
$weblog = new objectupdate();
$result = $weblog->record_webaccess_log("DML : " . ${$modifystatus} . "-" . $tableName . "-" . $shield->shield($_POST["NO_SPK"]));
header("Location: entry-spk");
} catch (Exception $e) {
throw new Exception($e->getMessage());
}
}
开发者ID:edosatriani,项目名称:greensys,代码行数:58,代码来源:object_Controller.php
示例10: init
function init()
{
$oTextyleHubModel =& getModel('textylehub');
$this->module_info = $oTextyleHubModel->getTextyleHubInfo();
Context::set('module_info', $this->module_info);
Context::set('module_srl', $this->module_info->module_srl);
$this->setTemplatePath($this->module_path . 'tpl');
$security = new Security();
$security->encodeHTML('module_info.');
}
开发者ID:google-code-backups,项目名称:xe-textyle,代码行数:10,代码来源:textylehub.admin.view.php
示例11: dispSpamfilterAdminDeniedWordList
/**
* @brief Output the list of banned words
*/
function dispSpamfilterAdminDeniedWordList()
{
// Get the list of denied IP addresses and words
$oSpamFilterModel = getModel('spamfilter');
$word_list = $oSpamFilterModel->getDeniedWordList();
Context::set('word_list', $word_list);
$security = new Security();
$security->encodeHTML('word_list..word');
// Set a template file
$this->setTemplateFile('denied_word_list');
}
开发者ID:rhymix,项目名称:rhymix,代码行数:14,代码来源:spamfilter.admin.view.php
示例12: init
function init()
{
$init = new boot();
if (isset($_GET['app'])) {
if (empty($_GET['app'])) {
header("Location: dashboard");
}
//$sr = $_GET['sr'];
if (!isset($_SESSION['user-id'])) {
$app_get = "login";
} else {
$security = new Security();
$app_get = $security->shield($_GET['app']);
$app_get_sub = $security->shield($_GET['sub_app']);
}
switch ($app_get) {
case $app_get:
if (file_exists(LOCAL_DIR . "/apps/" . $app_get . "/" . $app_get . "_Controller.php")) {
$ldr = new autoloader($app_get);
if ($app_get_sub) {
$dynamic = "ajax_" . $app_get . "_Controller";
} else {
$dynamic = $app_get . "_Controller";
$weblog = new objectupdate();
$result = $weblog->record_webaccess_log("module : " . $app_get);
}
$object = new $dynamic();
if ($app_get == "object") {
$object->breakJSONObject();
}
if ($app_get == "ob_update") {
$object->breakJSONObject();
}
} else {
if ($app_get == "logout") {
//unset($_SESSION["user-id"]);
session_destroy();
//setcookie("user-id","", time()-3600);
header("Location: login");
} else {
$weblog = new objectupdate();
$result = $weblog->record_webaccess_log("Accessing wrong module");
header("Location: page-not-found");
}
}
break;
}
} else {
$weblog = new objectupdate();
$result = $weblog->record_webaccess_log("Accessing wrong module");
header("Location: dashboard");
}
}
开发者ID:edosatriani,项目名称:greensys,代码行数:53,代码来源:Router.php
示例13: __construct
public function __construct()
{
$model = new login_Model();
$shield = new Security();
if ($_GET["param"] == "exec") {
$username = $_POST["username"];
$myuserid = $shield->shield($username);
$mypassword = $shield->shield($_POST["password"]);
$datauser = $model->get_userinfo($myuserid, $mypassword);
} else {
$datauser = "[]";
}
require_once 'login_View.php';
}
开发者ID:edosatriani,项目名称:greensys,代码行数:14,代码来源:login_Controller.php
示例14: dispAndroidpushappAdminConfig
function dispAndroidpushappAdminConfig()
{
$oModuleModel = getModel('module');
$oAndroidpushappModel = getModel('androidpushapp');
$config = $oAndroidpushappModel->getConfig();
Context::set('config', $config);
$security = new Security();
$security->encodeHTML('config..');
$androidpushapp_module_info = $oModuleModel->getModuleInfoXml('androidpushapp');
Context::set('androidpushapp_module_info', $androidpushapp_module_info);
$mid_list = $oModuleModel->getMidList(null, array('module_srl', 'mid', 'browser_title', 'module'));
Context::set('mid_list', $mid_list);
$this->setTemplateFile('Config');
}
开发者ID:umjinsun12,项目名称:dngshin,代码行数:14,代码来源:androidpushapp.admin.view.php
示例15: init
public function init($var)
{
if (isset($_GET['sr'])) {
$sr = $_GET['sr'];
if (!isset($_GET['app'])) {
die(_GET_APP_DONT_EXIST);
}
//$class_methods = get_class_methods("appController");
$security = new Security();
$shield_var = $security->shield($_GET['app']);
$class_methods = get_class_methods($shield_var . "_Controller");
//var_dump($class_methods);
foreach ($class_methods as $method_name) {
//echo "$method_name\n";
if ($sr == $method_name) {
/**
($sr != "__construct") && _
($sr != "__call") && _
($sr != "__callStatic") && _
($sr != "__get") && _
($sr != "__set") && _
($sr != "__isset") && _
($sr != "__unset") && _
($sr != "__sleep") && _
($sr != "__get") && _
($sr != "__wakeup") && _
($sr != "__toString") && _
($sr != "__invoke") && _
($sr != "__destruct")) {
**/
switch ($sr) {
// llama staticamente
//appController::$sr();
//appModel::$sr();
//AppView::$sr();
case $sr:
$var->{$sr}();
break;
}
// switch
}
// if
}
// for each
} else {
if (!isset($_GET['sr'])) {
$var->main();
}
}
}
开发者ID:edosatriani,项目名称:greensys,代码行数:50,代码来源:ControllerHandler.php
示例16: dispNcenterliteAdminConfig
function dispNcenterliteAdminConfig()
{
$oModuleModel = getModel('module');
$oNcenterliteModel = getModel('ncenterlite');
$oLayoutModel = getModel('layout');
$config = $oNcenterliteModel->getConfig();
Context::set('config', $config);
$layout_list = $oLayoutModel->getLayoutList();
Context::set('layout_list', $layout_list);
$mobile_layout_list = $oLayoutModel->getLayoutList(0, 'M');
Context::set('mlayout_list', $mobile_layout_list);
$skin_list = $oModuleModel->getSkins($this->module_path);
Context::set('skin_list', $skin_list);
$mskin_list = $oModuleModel->getSkins($this->module_path, "m.skins");
Context::set('mskin_list', $mskin_list);
if (!$skin_list[$config->skin]) {
$config->skin = 'default';
}
Context::set('colorset_list', $skin_list[$config->skin]->colorset);
if (!$mskin_list[$config->mskin]) {
$config->mskin = 'default';
}
Context::set('mcolorset_list', $mskin_list[$config->mskin]->colorset);
$security = new Security();
$security->encodeHTML('config..');
$security->encodeHTML('skin_list..title');
$security->encodeHTML('colorset_list..name', 'colorset_list..title');
$mid_list = $oModuleModel->getMidList(null, array('module_srl', 'mid', 'browser_title', 'module'));
Context::set('mid_list', $mid_list);
// 사용환경정보 전송 확인
$ncenterlite_module_info = $oModuleModel->getModuleInfoXml('ncenterlite');
$agreement_file = FileHandler::getRealPath(sprintf('%s%s.txt', './files/ncenterlite/ncenterlite-', $ncenterlite_module_info->version));
$agreement_ver_file = FileHandler::getRealPath(sprintf('%s%s.txt', './files/ncenterlite/ncenterlite_ver-', $ncenterlite_module_info->version));
if (file_exists($agreement_file)) {
$agreement = FileHandler::readFile($agreement_file);
Context::set('_ncenterlite_env_agreement', $agreement);
$agreement_ver = FileHandler::readFile($agreement_ver_file);
if ($agreement == 'Y') {
$_ncenterlite_iframe_url = 'http://sosifam.com/index.php?mid=ncenterlite_iframe';
if (!$agreement_ver) {
$_host_info = urlencode($_SERVER['HTTP_HOST']) . '-NC' . $ncenterlite_module_info->version . '-PHP' . phpversion() . '-XE' . __XE_VERSION__;
}
Context::set('_ncenterlite_iframe_url', $_ncenterlite_iframe_url . '&_host=' . $_host_info);
Context::set('ncenterlite_module_info', $ncenterlite_module_info);
}
FileHandler::writeFile($agreement_ver_file, 'Y');
} else {
Context::set('_ncenterlite_env_agreement', 'NULL');
}
}
开发者ID:leehankyeol,项目名称:JaWeTip,代码行数:50,代码来源:ncenterlite.admin.view.php
示例17: dispStore_searchAdminContent
/**
* Module selection and skin set
*
* @return Object
*/
function dispStore_searchAdminContent()
{
// Get a list of skins(themes)
$oModuleModel =& getModel('module');
$skin_list = $oModuleModel->getSkins($this->module_path);
Context::set('skin_list', $skin_list);
// Get a list of module categories
$module_categories = $oModuleModel->getModuleCategories();
// Generated mid Wanted list
$obj = new stdClass();
$obj->site_srl = 0;
$security = new Security();
$security->encodeHTML('skin_list..title');
$this->setTemplateFile("index");
}
开发者ID:seoeun,项目名称:xe-module-store_search,代码行数:20,代码来源:store_search.admin.view.php
示例18: init
public function init()
{
parent::init();
if (!Director::is_cli() && !Permission::check('ADMIN')) {
return Security::permissionFailure();
}
}
开发者ID:normann,项目名称:sapphire,代码行数:7,代码来源:SapphireInfo.php
示例19: action_questions
public function action_questions()
{
$list = ORM::factory('Expert_Question')->where('is_answered', '=', 1);
$search = Security::xss_clean(Arr::get($_POST, 'search', ''));
if (!empty($search)) {
$list->and_where('question', 'LIKE', '%' . $search . '%');
}
$list = $list->order_by('date', 'DESC');
$paginate = Paginate::factory($list)->paginate(NULL, NULL, 10)->render();
$list = $list->find_all();
$this->set('search', $search);
$this->set('list', $list);
$this->set('paginate', $paginate);
if ($this->request->method() == Request::POST) {
if (Auth::instance()->logged_in()) {
try {
$user_id = Auth::instance()->get_user()->id;
$question = ORM::factory('Expert_Question');
$question->user_id = $user_id;
$question->question = Arr::get($_POST, 'question', '');
$question->date = date('Y-m-d H:i:s');
$question->save();
} catch (ORM_Validation_Exception $e) {
}
} else {
Message::success(i18n::get('You have to login'));
}
}
$this->add_cumb('Question-answer', '/');
}
开发者ID:HappyKennyD,项目名称:teest,代码行数:30,代码来源:Expert.php
示例20: action_Department
public function action_Department($Kid)
{
//CSRF対策
$this->data['token_key'] = Config::get('security.csrf_token_key');
$this->data['token'] = Security::fetch_token();
//カテゴリごとの投稿件数を取得
$count = Model_Post::query()->where('Kid', '=', $Kid)->count();
//ページネーションの設定(カテゴリごとの投稿表示仕様)
$config = array('pagination_url' => 'noteshare/list/' . $Kid, 'uri_segment' => 3, 'num_links' => 3, 'per_page' => $this->per_page, 'total_items' => $count, 'show_first' => true, 'show_last' => true);
$pagination = Pagination::forge('post_pagination', $config);
$this->data['posts'] = Model_Post::query()->where('Kid', '=', $Kid)->order_by('Ptime', 'desc')->limit($this->per_page)->offset($pagination->offset)->get();
$this->data['department'] = Model_Category::query()->where('Kid', '=', $Kid)->get();
$this->action_categorize();
//homeのビューオブジェクトを生成
if (!$count) {
$this->data['error'] = true;
$view = View::forge('list/DepartmentList', $this->data);
$view->set_safe('pagination', $pagination);
//メッセージの定義
} else {
$view = View::forge('list/DepartmentList', $this->data);
$view->set_safe('pagination', $pagination);
}
return $view;
}
开发者ID:nihonLoomba,项目名称:noteshare-,代码行数:25,代码来源:list.php
注:本文中的Security类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论