示例#1
0
 function SearchSphinxForm()
 {
     Form::Form('SearchResultForm');
     $this->link_css('style/listItem.css');
     $keywords = AZLib::getParam('keywords');
     if ($keywords != '') {
         CGlobal::$website_title = "{$keywords} - Tìm bởi " . WEB_NAME;
         CGlobal::$meta_desc = "Tìm kiếm nội dung liên quan tới {$keywords} - Tìm bởi " . WEB_NAME;
     } else {
         CGlobal::$website_title = "Trang tìm kiếm sản phẩm";
         CGlobal::$meta_desc = "Trang tìm kiếm sản phẩm";
     }
     $this->search_catid = (int) Url::get('search_catid', -1);
     if ($this->search_catid <= 0 || !isset(CGlobal::$allCategories[$this->search_catid]) || CGlobal::$allCategories[$this->search_catid]['status'] == 'HIDE') {
         $this->search_catid = 0;
     }
     if ($this->search_catid) {
         $curCategory = CGlobal::$allCategories[$this->search_catid];
         if ($curCategory['parent_id'] && isset(CGlobal::$allCategories[$curCategory['parent_id']])) {
             $parent_cat = CGlobal::$allCategories[$curCategory['parent_id']];
             $this->search_top_catid = $curCategory['parent_id'];
             $this->search_sec_catid = $this->search_catid;
         } else {
             $this->search_top_catid = $this->search_catid;
         }
     }
 }
示例#2
0
 function __construct()
 {
     Form::Form('NewsDetailForm');
     $id = Url::get('news_id', 0);
     if ($id) {
         if (!CGlobal::$news_details) {
             CGlobal::$news_details = DB::select("news", "id={$id}");
         }
         if (CGlobal::$news_details && (CGlobal::$news_details['status'] == 1 || CGlobal::$news_details['status'] == 0 && User::have_permit(ADMIN_NEWS))) {
             $this->news = CGlobal::$news_details;
         }
     }
     if (!$this->news) {
         Url::redirect('news_list', array('news_catid', 'azname'));
     } else {
         DB::query("UPDATE news SET view_num=view_num+1 WHERE id =" . $this->news['id']);
     }
     $news_title = $this->news['title'];
     $catid = $this->news['news_catid'];
     $str_keywords = '';
     $str_catSub = '';
     $meta_keywords = '';
     $meta_desc = '';
     if (isset(CGlobal::$allNewsCategories[$catid])) {
         $news_title .= " - " . CGlobal::$allNewsCategories[$catid]['name'];
         $curMainCat = CGlobal::$allNewsCategories[$catid];
         $str_catSub = $curMainCat['name'];
         if ($curMainCat['keywords']) {
             $meta_keywords .= ($meta_keywords ? ', ' : '') . $curMainCat['keywords'];
         }
         if ($curMainCat['description']) {
             $meta_desc .= ($meta_desc ? ', ' : '') . $curMainCat['description'];
         }
     }
     if ($this->news['brief']) {
         CGlobal::$meta_desc = AZLib::cleanHtml($this->news['brief']);
     } elseif ($meta_desc != '') {
         CGlobal::$meta_desc = $meta_desc;
     }
     if ($meta_keywords != '') {
         CGlobal::$keywords = $meta_keywords;
     } elseif ($str_catSub != '') {
         CGlobal::$keywords = $str_catSub;
     }
     CGlobal::$website_title = stripslashes($news_title) . ' - Tin tức';
     //CGlobal::$website_title = AznetLib::subString($news_title,0,100,true);
     //		$this->link_css('style/aznet/jquery.lightbox.css');
     //		$this->link_js('javascript/jquery/lightbox/jquery.lightbox.js');
 }
示例#3
0
文件: class.php 项目: hqd276/bigs
	function __construct($row){

		Module::Module($row);
		require_once 'forms/header.php';
		
		$str_keywords 	= '';
		$str_catSub 	= '';		
		$meta_desc 		= '';
		
		//limit character description and keyword
		CGlobal::$keywords = EClassApi::word_limit(CGlobal::$keywords,20,'');
		CGlobal::$meta_desc = EClassApi::word_limit(CGlobal::$meta_desc,250,'');
			
		//Gán title cho các trang trong!
		if(isset($page_title_arr[EClass::$page['name']])){
			CGlobal::$website_title = $page_title_arr[EClass::$page['name']].' | '.CGlobal::$website_title;
		}

		$this->add_form(new HeaderForm);
	}
示例#4
0
文件: list.php 项目: hqd276/bigs
 function __construct()
 {
     $this->link_css('style/listItem.css');
     $this->link_js('javascript/default/list.js');
     $this->link_css('style/home/list-supplier.css');
     $this->link_css('style/home/nav-filter.css');
     // Start Import Autocomplete
     $this->link_js('javascript/autocomplete/jquery.autocomplete.min.js');
     $this->link_css('javascript/autocomplete/jquery.autocomplete.css');
     // End Import Autocomplete
     $slug = Url::get('slug');
     $sql = 'SELECT * FROM seo_keywords WHERE safe_key="' . $slug . '"';
     $keyword = mysql_fetch_assoc(DB::query($sql));
     $district_id = $keyword['did'];
     if (is_numeric($district_id) && $district_id > 0) {
         $sql = 'SELECT * FROM district WHERE id=' . $district_id;
         $district = mysql_fetch_assoc(DB::query($sql));
     }
     CGlobal::$website_title = " Danh sách nhà cung cấp với từ khóa " . $keyword['keyword'];
     CGlobal::$meta_desc = $keyword['description'];
     CGlobal::$keywords = $keyword['meta_keyword'];
 }
示例#5
0
 function __construct()
 {
     Form::Form('NewsListForm');
     $news_cat_id = Url::get('news_catid', 'id', 0);
     AZLib::getNewsCats();
     if ($news_cat_id && isset(CGlobal::$allNewsCategories[$news_cat_id]) && (CGlobal::$allNewsCategories[$news_cat_id]['public'] || User::have_permit(ADMIN_NEWS))) {
         $this->news_cat = CGlobal::$allNewsCategories[$news_cat_id];
     } else {
         Url::redirect('news');
     }
     $news_title = '';
     $catid = $news_cat_id;
     $str_keywords = '';
     $str_catSub = '';
     $meta_keywords = '';
     $meta_desc = '';
     if (isset(CGlobal::$allNewsCategories[$catid])) {
         $news_title .= CGlobal::$allNewsCategories[$catid]['name'];
         $curMainCat = CGlobal::$allNewsCategories[$catid];
         $str_catSub .= $curMainCat['name'];
         if ($curMainCat['keywords']) {
             $meta_keywords .= ($meta_keywords ? ', ' : '') . $curMainCat['keywords'];
         }
         if ($curMainCat['description']) {
             $meta_desc .= ($meta_desc ? ', ' : '') . $curMainCat['description'];
         }
     }
     if ($meta_desc != '') {
         CGlobal::$meta_desc = $meta_desc;
     }
     if ($meta_keywords != '') {
         CGlobal::$keywords = $meta_keywords;
     } elseif ($str_catSub != '') {
         CGlobal::$keywords = $str_catSub;
     }
     CGlobal::$website_title = stripslashes($news_title) . " - Tin tức";
 }
示例#6
0
文件: Init.php 项目: hqd276/bigs
        }
    } else {
        if (isset($_GET['login_as']) || isset($_GET['login_as_id'])) {
            if (User::is_admin()) {
                $user_id = (int) Url::get('login_as_id', 0);
                $user = array();
                if ($user_id) {
                    $user = User::getUser($user_id);
                } else {
                    $user_name = Url::get('login_as');
                    if ($user_name != '') {
                        $user = User::getByUserName($user_name);
                    }
                }
                if ($user) {
                    if (User::is_root() || !$user['gids'] || $user['gids'] && !preg_match("/([\\D])9([\\D])/i", "|{$user['gids']}|")) {
                        User::LogIn($user);
                    }
                }
            }
            Url::redirect_url(Url::build_all(array('login_as', 'login_as_id')));
        }
    }
}
//Title mac dinh cho website
CGlobal::$website_title = "Big School";
CGlobal::$keywords = 'Big School, Study, Học hành, Giáo viên, Học sinh, Thi cử';
CGlobal::$meta_desc = 'Big School';
register_shutdown_function(array("DB", "close"));
register_shutdown_function(array("EClassApi", "ftp_image_close"));
$display = new EBDisplay();
示例#7
0
文件: class.php 项目: duynhan07/elink
 function __construct($row)
 {
     Module::Module($row);
     require_once 'forms/header.php';
     if (AZNet::$page['name'] == 'zone') {
         $zone_id = (int) Url::get("zone_id");
         if (!$zone_id || $zone_id && !isset(CGlobal::$allZones[$zone_id])) {
             //Url::access_denied();
             Url::redirect('home');
         }
     }
     if (AZNet::$page['name'] == 'item_detail') {
         $item_id = (int) Url::get('id', 0);
         if (Item::$id == -1) {
             Item::$id = $item_id;
             Item::$item = Item::get_item($item_id);
             AZLib::checkItem();
             if (Item::$item && Item::$item['display']) {
                 CGlobal::$curCategory = Item::$item['category_id'];
             }
         }
     }
     $curCategory = false;
     if (CGlobal::$curCategory && isset(CGlobal::$allCategories[CGlobal::$curCategory])) {
         $curCategory = CGlobal::$allCategories[CGlobal::$curCategory];
     }
     $str_keywords = '';
     $str_catSub = '';
     $meta_desc = '';
     if ($curCategory) {
         if ($curCategory['parent_id'] && isset(CGlobal::$allCategories[$curCategory['parent_id']])) {
             $parent_cat = CGlobal::$allCategories[$curCategory['parent_id']];
             CGlobal::$curMainCat = CGlobal::$allCategories[$curCategory['parent_id']];
             CGlobal::$curLevel2Cat = $curCategory;
         } else {
             CGlobal::$curMainCat = $curCategory;
         }
     }
     if (CGlobal::$curMainCat && isset(CGlobal::$curMainCat['zones'])) {
         foreach (CGlobal::$curMainCat['zones'] as $zid) {
             if ($zid && isset(CGlobal::$allZones[$zid])) {
                 CGlobal::$curZone = CGlobal::$allZones[$zid];
                 if (CGlobal::$curMainCat['id'] != 100) {
                     break;
                 }
             }
         }
     }
     if (!CGlobal::$curZone) {
         $zid = (int) Url::get("zone_id", 0);
         if ($zid && isset(CGlobal::$allZones[$zid])) {
             CGlobal::$curZone = CGlobal::$allZones[$zid];
         }
     }
     if (AZNet::$page['name'] == 'zone') {
         if (REWRITE_ON) {
             //tuannk add 2010.07.28 fix redirect 301 với các url link sai
             $ebname = CGlobal::$curZone['ebname'];
             $eburl = WEB_DIR . "z" . CGlobal::$curZone['id'] . "/{$ebname}.html";
             if ($ebname != '' && strpos($_SERVER['REQUEST_URI'], $eburl) !== 0) {
                 Url::redirect_url($eburl, 301);
             }
         }
         ##########################################
         #For SEO
         if (isset(CGlobal::$curZone['cats'])) {
             foreach (CGlobal::$curZone['cats'] as $catid) {
                 if (isset(CGlobal::$allCategories[$catid])) {
                     $str_catSub .= ($str_catSub ? ', ' : '') . CGlobal::$allCategories[$catid]['name'];
                     if (CGlobal::$allCategories[$catid]['keywords']) {
                         $str_keywords .= ($str_keywords ? ', ' : '') . CGlobal::$allCategories[$catid]['keywords'];
                     }
                     if (CGlobal::$allCategories[$catid]['description']) {
                         $meta_desc .= ($meta_desc ? ', ' : '') . CGlobal::$allCategories[$catid]['description'];
                     }
                 }
             }
         }
         if (!$str_keywords) {
             if ($str_catSub) {
                 $str_keywords = $str_catSub;
             } else {
                 $str_keywords = CGlobal::$curZone['name'];
             }
         }
         if (!$meta_desc) {
             if ($str_catSub) {
                 $meta_desc = $str_catSub;
             } else {
                 $meta_desc = CGlobal::$curZone['name'];
             }
         }
         CGlobal::$keywords = $str_keywords;
         CGlobal::$meta_desc = $meta_desc;
         CGlobal::$website_title = CGlobal::$curZone['name'];
         #For SEO
         ##########################################
     } else {
         $catid = CGlobal::$curCategory;
         if (isset(CGlobal::$allCategories[$catid]) && CGlobal::$allCategories[$catid]['ref_id']) {
             //redirected
             $ref_id = CGlobal::$allCategories[$catid]['ref_id'];
             $ebname = '';
             if (isset(CGlobal::$allCategories[$ref_id])) {
                 $ebname = CGlobal::$allCategories[$ref_id]['ebname'];
                 if (CGlobal::$allCategories[$ref_id]['parent_id']) {
                     //DM cấp 2 hoặc 3
                     $pid = CGlobal::$allCategories[$ref_id]['parent_id'];
                     if (isset(CGlobal::$allCategories[$pid])) {
                         $pcat = CGlobal::$allCategories[$pid];
                         $ebname = "{$pcat['ebname']}-" . CGlobal::$allCategories[$ref_id]['ebname'];
                         if (CGlobal::$allCategories[$pid]['parent_id']) {
                             //DM cấp 3
                             $ppid = CGlobal::$allCategories[$pid]['parent_id'];
                             if (isset(CGlobal::$allCategories[$ppid])) {
                                 $ppcat = CGlobal::$allCategories[$ppid];
                                 $ebname = "{$ppcat['ebname']}-{$pcat['ebname']}-" . CGlobal::$allCategories[$ref_id]['ebname'];
                             }
                         }
                     }
                 }
                 Url::redirect_url(WEB_DIR . "c{$ref_id}/{$ebname}", 301);
             }
         }
         if (AZNet::$page['name'] == 'list_detail' && REWRITE_ON) {
             //tuannk add 2010.07.28 fix redirect 301 với các url link sai
             $ebname_req = Url::get("ebname");
             $page_no = (int) Url::get("page_no", 1);
             if ($page_no <= 1) {
                 $page_no = 0;
             }
             $ebname = '';
             $eburl = '';
             if (CGlobal::$curMainCat) {
                 $ebname = CGlobal::$curMainCat['ebname'];
                 if (CGlobal::$curLevel2Cat) {
                     $ebname .= "-" . CGlobal::$curLevel2Cat['ebname'];
                     $eburl = WEB_DIR . "c" . CGlobal::$curLevel2Cat['id'] . "/" . $ebname;
                 } else {
                     $eburl = WEB_DIR . "c" . CGlobal::$curMainCat['id'] . "/" . $ebname;
                 }
             }
             if ($ebname != '') {
                 if ($page_no) {
                     $eburl .= "/page-{$page_no}";
                 }
                 if (strpos($_SERVER['REQUEST_URI'], $eburl) !== 0 || $ebname_req != $ebname || isset($_GET['page_no']) && $page_no <= 1) {
                     Url::redirect_url($eburl, 301);
                 }
             }
         }
         if (CGlobal::$curLevel2Cat) {
             //Nếu có cả 2 cấp
             $str_catSub = CGlobal::$curLevel2Cat['name'] . ', ' . CGlobal::$curMainCat['name'];
             //Cho subcat
             if (CGlobal::$curLevel2Cat['keywords']) {
                 CGlobal::$keywords = CGlobal::$curLevel2Cat['keywords'];
             }
             if (CGlobal::$curLevel2Cat['description']) {
                 $meta_desc = CGlobal::$curLevel2Cat['description'];
             }
             //End Cho subcat
             if (CGlobal::$curMainCat['description']) {
                 $meta_desc .= ($meta_desc ? ', ' : '') . CGlobal::$curMainCat['description'];
             }
             //End Cho maincat
         } elseif (CGlobal::$curMainCat) {
             //Nếu chỉ có 1 cấp
             if (isset(CGlobal::$allCategories[CGlobal::$curMainCat['id']]) && isset(CGlobal::$subCategories[CGlobal::$curMainCat['id']])) {
                 $subCats = CGlobal::$subCategories[CGlobal::$curMainCat['id']];
                 foreach ($subCats as $catSub) {
                     if ($catSub['name']) {
                         $str_catSub .= ($str_catSub ? ', ' : '') . $catSub['name'];
                     }
                     if ($catSub['description']) {
                         $meta_desc .= ($meta_desc ? ', ' : '') . $catSub['description'];
                     }
                 }
             }
             $str_catSub .= ($str_catSub ? ', ' : '') . CGlobal::$curMainCat['name'];
             if (CGlobal::$curMainCat['keywords']) {
                 CGlobal::$keywords = CGlobal::$curMainCat['keywords'];
             }
             if (CGlobal::$curMainCat['description']) {
                 $meta_desc .= ($meta_desc ? ', ' : '') . CGlobal::$curMainCat['description'];
             }
         }
         //CGlobal::$curCategory
         if (AZNet::$page['name'] == 'item_detail') {
             if (Item::$item && Item::$item['status'] == 1) {
                 CGlobal::$meta_desc = AZLib::word_limit(AZLib::descriptionText(Item::$item['brief'] . ' ' . Item::$item['description']), 30, '');
             } elseif ($meta_desc) {
                 CGlobal::$meta_desc = $meta_desc;
             }
         } elseif ($meta_desc) {
             CGlobal::$meta_desc = $meta_desc;
         }
     }
     //limit character description and keyword
     CGlobal::$keywords = AZLib::word_limit(CGlobal::$keywords, 20, '');
     CGlobal::$meta_desc = AZLib::word_limit(CGlobal::$meta_desc, 250, '');
     //Gán title cho các trang trong!
     $page_title_arr = array();
     $page_title_arr['post_item'] = "Đăng sản phẩm";
     $page_title_arr['sign_in'] = "Đăng nhập - Đăng ký thành viên";
     if (isset($page_title_arr[AZNet::$page['name']])) {
         CGlobal::$website_title = $page_title_arr[AZNet::$page['name']] . ' | ' . CGlobal::$website_title;
     }
     $this->add_form(new HeaderForm());
 }
示例#8
0
文件: Init.php 项目: duynhan07/elink
                $user_id = (int) Url::get('login_as_id', 0);
                $user = array();
                if ($user_id) {
                    $user = User::getUser($user_id);
                } else {
                    $user_name = Url::get('login_as');
                    if ($user_name != '') {
                        $user = User::getByUserName($user_name);
                    }
                }
                if ($user) {
                    if (User::is_root() || !$user['gids'] || $user['gids'] && !preg_match("/([\\D])9([\\D])/i", "|{$user['gids']}|")) {
                        User::LogIn($user);
                    }
                }
            }
            Url::redirect_url(Url::build_all(array('login_as', 'login_as_id')));
        }
    }
}
//Title mac dinh cho website
CGlobal::$website_title = WEB_TITLE;
CGlobal::$keywords = META_KEYWORDS;
CGlobal::$meta_desc = META_DESCRIPTION;
//Tiền tệ:
CGlobal::$currency = array('1' => 'VNĐ', '2' => '$');
//CGlobal::$currency = array('1'=>'VNĐ','2'=>'$','3'=>'€');//'3'=>'&euro;');
register_shutdown_function(array("DB", "close"));
register_shutdown_function(array("AZLib", "ftp_image_close"));
global $display;
$display = new AZDisplay();