当前位置: 首页>>代码示例>>PHP>>正文


PHP front::flash方法代码示例

本文整理汇总了PHP中front::flash方法的典型用法代码示例。如果您正苦于以下问题:PHP front::flash方法的具体用法?PHP front::flash怎么用?PHP front::flash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在front的用法示例。


在下文中一共展示了front::flash方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: manage_action

    function manage_action() {
        if(!config::get('sms_username') || !config::get('sms_password')){
            echo '<script>alert("您需要先设置用户名和密码才能使用短信管理功能!");window.location.href="'.url('config/system/set/sms').'";</script>';
            exit;
        }
        include_once("phprpc/phprpc_client.php");
        $client = new PHPRPC_Client();
        $client->setProxy(NULL);
        $client->useService('http://pay.cmseasy.cn/sms.php');
        $client->setKeyLength(128);
        $client->setEncryptMode(3);
        $info = $client->getInfo(config::get('sms_username'),md5(config::get('sms_password')));
        $info[0] = intval($info[0]);
        $info[1] = intval($info[1]);
        $this->view->info = $info;
        if (front::post('submit')) {
            if (front::post('act') == 'test') {
                $rs = sendMsg(front::post('mobile'),'test');
                if($rs->SendSMSResult == '0'){
                    front::flash('发送成功');
                }else{
                    front::flash('发送失败,请检查用户名、密码或剩余条数');
                }
            }
        }else{
			if($info[0] < 50) front::flash('你的剩余短信不足50条,请及时充值');
		}
    }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:28,代码来源:sms_admin.php

示例2: check_mytable

 private function check_mytable() {
     if(!preg_match('/^my_.+/',front::post('name'))) {
         front::flash('表名格式必须是是"my_abc"!');
         return false;
     }
     return true;
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:7,代码来源:form_admin.php

示例3: vaild

 function vaild() {
     if (!front::post('name')) {
         front::flash('请填写名称!');
         return false;
     }
     return true;
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:7,代码来源:table_templatetag.php

示例4: add_action

    function add_action() {
        if(front::post('submit') &&front::post('aid')) {
        	if(config::get('verifycode')) {
	            if(front::post('verify')<>session::get('verify')) {
	                 alertinfo('验证码错误。', front::$from);
	                //front::redirect(front::$from);
	            }
        	}
            if(!front::post('username')) {
                /*front::flash(lang('请留下你的名字!'));
                front::redirect(front::$from);*/
            	alertinfo('请留下你的名字!', front::$from);
            }
            if(!front::post('content')) {
                /*front::flash(lang('请填写评论内容!'));
                front::redirect(front::$from);*/
                alertinfo('请填写评论内容!', front::$from);
            }
            $this->manage->filter();
            $comment=new comment();
            $archive=new archive();
            front::$post['state'] = '0';
            front::$post['adddate']=date('Y-m-d H:i:s');
            $comment->rec_insert(front::$post);
            $archive->rec_update('comment=comment+1',front::post('aid'));
            //front::flash(lang('提交成功!'));
            alertinfo('评论提交成功。', front::$from);
            //front::redirect(front::$from);
        }else {
            front::flash(lang('提交失败!'));
            front::redirect(front::$from);
        }
    }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:33,代码来源:comment_act.php

示例5: ctsitemap_action

 function ctsitemap_action(){
 	$category = category::getInstance();
 	$category->sitemap();
 	front::flash('生成网站地图成功');
 	front::redirect(front::$from);
     /*echo "<script>alert('生成网站地图成功!');window.close();</script>";
     exit;*/
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:8,代码来源:cache_act.php

示例6: vaild

 function vaild() {
     if(!front::post('typename')) {
         front::flash('请填写类别标题等!');
         return false;
     }
     if(!front::post('htmldir'))
         front::$post['htmldir']=pinyin::get(front::post('typename'));
     return true;
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:9,代码来源:table_type.php

示例7: vaild

 function vaild() {
     if(!front::post('title')) {
         front::flash('请填写标题!');
         return false;
     }
     if(!front::post('catid')) {
         front::flash('请选择分类!');
         return false;
     }
     return true;
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:11,代码来源:table_archive.php

示例8: deleteimg_action

 function deleteimg_action() {
     if (!front::get('dir') || !front::get('imgname'))
         return;
     $img = ROOT . '/upload/images/' . front::get('dir') . '/' . str_replace('___', '.', front::get('imgname'));
     if (!file_exists($img))
         front::flash('图片不存在');
     if (!unlink($img))
         front::flash('删除失败,请检查权限');
     else
         front::flash('图片已删除');
     front::redirect(url::modify('act/listimg/dir/' . front::get('dir')));
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:12,代码来源:image_admin.php

示例9: __construct

 function __construct() {
     if (ADMIN_DIR!=config::get('admin_dir')) {
         config::modify(array('admin_dir'=>ADMIN_DIR));
         front::flash('后台目录更改成功!');
     }
     front::$rewrite=false;
     parent::__construct();
     $servip = gethostbyname($_SERVER['SERVER_NAME']);
     //if($this instanceof file_admin && in_array(front::get('act'), array('updialog','upfile','upfilesave','netfile','netfilesave','swfsave'))) return;
     if($servip==front::ip()&&front::get('ishtml')==1) return;
     $this->check_admin();
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:12,代码来源:admin.php

示例10: delete_before

 function delete_before() {
     $user = new user();
     $row = $user->getrow(front::get('id'));
     if($row['username'] == config::get('install_admin')) {
         front::flash("不能删除安装管理员!");
         front::redirect(front::$from);
     }
     if(front::get('id')==front::$user['userid']) {
         front::flash("不能删除当前用户!");
         front::redirect(front::$from);
     }
     if(is_array(front::post('select')) &&in_array(front::$user['userid'],front::post('select'))) {
         front::flash("不能删除当前用户!");
         front::redirect(front::$from);
     }
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:16,代码来源:table_user.php

示例11: downfile_action

    function downfile_action() {
    	$base_url = config::get('base_url');
        if(front::post('submit')) {
            if(!session::get('verify') ||front::post('verify')<>session::get('verify')) {
                front::flash(lang('验证码错误!'));
                return;
            }else {
                front::check_type(front::get('aid'));
                $aid=front::get('aid');
                $name=archive_attachment($aid,'intro');
                $path=archive_attachment($aid,'path');
                if(!$name) $name=preg_replace('%(.*)[\\\\\/](.*)_\d+(\.[a-z]+)$%i','$2',$path);
				@cookie::set('allowdown',md5(url::create('attachment/downfile/aid/'.$aid.'/v/ce')));
                if(!rank::arcget($aid,$this->view->usergroupid,'down'))
                    $link="<p align='center'><a id='att' href='javascript:alert(\"未取得授权,无法下载!\");'><img src='{$base_url}/images/download.gif' alt='$name' border='0' /></a></p>";
                else $link="<p align='center'><a id='att' href='".url::create('attachment/down/aid/'.$aid)."'><img src='{$base_url}/images/download.gif' alt='$name' border='0' /></a></p>";
                echo $link;
                exit;
            }
        }
    }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:21,代码来源:attachment_act.php

示例12: do_action

 function do_action() {
     if(front::post('submit') &&front::post('vote') &&front::post('aid')) {
         front::check_type(front::post('aid'));
         if(!isset($this->view->user)) front::flash(lang('请登陆!'));
         $vote=new vote();
         $_vote=$vote->getrow('aid='.front::post('aid'));
         if(eregi($this->view->user['username'].',',$_vote['users'])) {
             front::flash(lang('不能重复投票!'));
             front::redirect(front::$from);
         }
         $_votes=$_vote['votes'];
         if(!$_votes) $_votes=array();
         else $_votes=unserialize($_votes);
         $_votes[front::post('vote')]=$_votes[front::post('vote')]+1;
         $votes=serialize($_votes);
         $vote_data=array_merge($_vote,array('votes'=>$votes,'aid'=>front::post('aid'),'users'=>$_vote['users'].$this->view->user['username'].','));
         $vote->rec_replace($vote_data,front::post('aid'));
         front::flash(lang('投票成功!'));
     }else {
         front::flash(lang('投票失败!'));
     }
     front::redirect(front::$from);
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:23,代码来源:vote_act.php

示例13: emailpost_action

 function emailpost_action() {
 	if(!front::post('guestemail')) {
 		front::flash(lang('请填写联系电话!'));
 		return false;
 	}
 	if(!front::post('title')) {
 		front::flash(lang('请填写标题!'));
 		return false;
 	}
 	if(!front::post('content')) {
 		front::flash(lang('请选择内容!'));
 		return false;
 	}
 	if(config::get('verifycode')) {
 		if(front::post('verify')<>session::get('verify')) {
 			front::flash(lang('验证码错误!'));
 			return false;
 		}
 	}
 	$smtpemailto = config::get('email'); 
 	$title = "网站留言:".front::post('title'); 
 	
 	$mailbody = "客户邮箱: ".front::post('content'); 
 		
 	$this->sendmail($smtpemailto, $title, $mailbody); 
 	
 	front::flash(lang('留言成功!'));	
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:28,代码来源:guestbook_act.php

示例14: sendMsg

function sendMsg($mobile, $content) {
    $tc = file_get_contents('config/sms.tmp.php');
    $tmp = explode('@', $tc);
    if ($tmp[0] >= config::get('sms_maxnum') && $tmp[1] == date('Y-m-d')) {
    	front::flash('发送失败,请检查用户名、密码或剩余条数');
        return;
    }
    include_once("phprpc/phprpc_client.php");
    $client = new PHPRPC_Client();
    $client->setProxy(NULL);
    $client->useService('http://pay.cmseasy.cn/sms.php');
    $client->setKeyLength(128);
    $client->setEncryptMode(3);
    $keys = config::get('sms_keyword');
    if ($keys != '') {
        $keys = explode(',', $keys);
        $content = str_ireplace($keys, '*', $content);
    }
    $rs = $client->sendMsg($mobile, $content, config::get('sms_username'), md5(config::get('sms_password')));
    if ($rs->SendSMSResult == '0') {
        $num = $tmp[0] + 1;
        file_put_contents('config/sms.tmp.php', $num . '@' . date('Y-m-d'));
    }
    return $rs;
}
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:25,代码来源:userfunction.php

示例15: checkstr

 function checkstr($str) {
     if (preg_match("/<(\/?)(script|i?frame|style|html|body|title|link|meta)([^>]*?)>/is",$str,$match)) {
         front::flash(print_r($match,true));
         return false;
     }
     if (preg_match("/(<[^>]*)on[a-zA-Z]+\s*=([^>]*>)/is",$str,$match)) {
         return false;
     }
     return true;
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:10,代码来源:front_class.php


注:本文中的front::flash方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。