當前位置: 首頁>>代碼示例>>PHP>>正文


PHP url::modify方法代碼示例

本文整理匯總了PHP中url::modify方法的典型用法代碼示例。如果您正苦於以下問題:PHP url::modify方法的具體用法?PHP url::modify怎麽用?PHP url::modify使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在url的用法示例。


在下文中一共展示了url::modify方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: delete_action

 function delete_action() {
 	chkpw('defined_form_del');
     $table=new defind(front::get('table'));
     $delete=archive::getInstance()->query("DROP TABLE {$table->name}");
     if($delete)  front::flash("刪除表單成功!");
     front::redirect(url::modify('act/listform/table/'.$table->name));
 }
開發者ID:jiangsuei8,項目名稱:public_php_shl,代碼行數:7,代碼來源:form_admin.php

示例2: batch_action

 function batch_action(){
     if(front::post('batch') == 'delete'){
         $sql = "DELETE FROM `".config::get('database', 'prefix')."event`";
         $this->_table->query($sql);
         event::log('日誌清除','成功');
         front::refresh(url::modify('act/manage',true));
     }
 }
開發者ID:jiangsuei8,項目名稱:public_php_shl,代碼行數:8,代碼來源:adminlogs_admin.php

示例3: 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

示例4: link

 function link($string,$page) {
     if ($this->page_current == $page)
         return $string;
     $url=url::modify('page/'.$page,true);
     return "<a href='$url'>$string</a>";
 }
開發者ID:jiangsuei8,項目名稱:public_php_shl,代碼行數:6,代碼來源:front_class.php

示例5: uri

echo uri();
?>
" method="post">

<div style="float:right;width:190px;overflow:hidden;">
<input type="button" value="添加內容" onClick="javascript:location.href='<?php 
echo $base_url;
?>
/index.php?case=table&act=add&table=archive&admin_dir=<?php 
echo get('admin_dir');
?>
'"  class="btn_d" /><input type="button" value="審核內容" onclick="javascript:window.location.href='<?php 
echo url::create('table/list/table/archive/needcheck/1');
?>
'"  class="btn_d" /><input type="button" value="回收站" onclick="javascript:window.location.href='<?php 
echo url::modify("table/" . get('table') . "/deletestate/1/page/1");
?>
'"  class="btn_e" />
</div>

<div class="blank5"></div>
<div id="tagscontent" class="right_box">

    <table border="0" cellspacing="0" cellpadding="0" name="table1" id="table1" width="100%">
        <thead>
            <tr class="th">
                <th><input title="點擊可全選本頁的所有項目"  onclick="CheckAll(this.form)" type="checkbox" name="chkall" class="checkbox" /> </th>
                <th>排序</th>
                <th><!--aid-->編號</th>
                <th><!--catid-->欄目</th>
                <th><!--title-->標題</th>
開發者ID:jiangsuei8,項目名稱:public_php_shl,代碼行數:31,代碼來源:#list.php

示例6: delete_action

 function delete_action() {
     $this->manage->delete_before(front::get('id'));
     $delete=$this->_table->rec_delete(front::get('id'));
     if ($delete) front::flash("刪除{$this->tname}成功!");
     front::redirect(url::modify('act/list/table/'.$this->table.'/bid/'.session::get('bid')));
 }
開發者ID:jiangsuei8,項目名稱:public_php_shl,代碼行數:6,代碼來源:logistics_admin.php

示例7: delete_action

 function delete_action() {
 	if($this->table == 'category'){
 		chkpw('category_del');
 	}
 	if($this->table == 'type'){
 		chkpw('type_del');
 	}
 	if($this->table == 'special'){
 		chkpw('special_del');
 	}
 	if($this->table == 'user'){
 		chkpw('user_del');
 	}
 	if($this->table == 'usergroup'){
 		chkpw('usergroup_del');
 	}
 	if($this->table == 'orders'){
 		chkpw('order_del');
 	}
 	if($this->table == 'comment'){
 		chkpw('func_book_pldel');
 	}
 	if($this->table == 'guestbook'){
 		chkpw('func_book_del');
 	}
 	if($this->table == 'announcement'){
 		chkpw('func_announc_del');
 	}
 	if($this->table == 'linkword'){
 		chkpw('seo_linkword_del');
 	}
 	if($this->table == 'friendlink'){
 		chkpw('seo_friendlink_del');
 	}
 	
     $this->manage->delete_before(front::get('id'));
     $delete=$this->_table->rec_delete(front::get('id'));
     if ($delete){
         front::flash("刪除{$this->tname}成功!");
         event::log("刪除{$this->tname}",'成功 id='.front::get('id'));
     }
     front::redirect(url::modify('act/list/table/'.$this->table.'/bid/'.session::get('bid')));
 }
開發者ID:jiangsuei8,項目名稱:public_php_shl,代碼行數:43,代碼來源:table_admin.php

示例8: delete_action

 function delete_action() {
     front::check_type(front::get('id'));
     $row = $this->_table->getrow(array('id'=>front::get('id')));
     if($row['mid'] != $this->view->user['userid']){
     	exit('你沒權限刪除');
     }
     $delete=$this->_table->rec_delete(front::get('id'));
     if($delete)  front::flash(lang('刪除記錄成功!'));
     front::redirect(url::modify('act/list/manage/'.$this->table));
 }
開發者ID:jiangsuei8,項目名稱:public_php_shl,代碼行數:10,代碼來源:manage_act.php

示例9: batch_action

 function batch_action(){
 	if(is_array(front::$post['select']) && !empty(front::$post['select'])){
 		foreach(front::$post['select'] as $v){
 			if(!preg_match('/^my_.+/',$v)) {
 				front::flash('字段名稱不正確!');
 			}
 			$delete=$this->_table->query("ALTER TABLE `{$this->_table->name}` DROP `".$v."`");
 			if(!$delete) {
 				front::flash('字段刪除失敗!');
 			}else {
 				unset(setting::$var[$this->table][$v]);
 				setting::save();
 				front::flash('字段刪除成功!');
 				front::redirect(url::modify('act/list',true));
 			}
 		}
 	}
 }
開發者ID:jiangsuei8,項目名稱:public_php_shl,代碼行數:18,代碼來源:field_admin.php


注:本文中的url::modify方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。