Etiketler: newpagesbypath eklentisinde açılan konuları
| Author | Message |
hayalet
177 posts |
#40322 2008-09-30 07:40 GMT |
|
newpagesbypath eklentisinde açılan konuları yani konuların isimlerini nasıl tablo içerisine alabilirim son forum konuları gibi... |
|
MUST!
528 posts |
#40403 2008-10-01 23:47 GMT |
|
Code: <table border='1' width='100%' cellspacing='0' bordercolor='000000' cellpadding='0' align='center'> kodunu kullanarak yapabilirsinn
|
|
|
Web Sitene Reklam Alıp Para Kazanmak İçin Tıkla
BalaBirlik.com forumdaki reklamlara tıklayarak bana destek olabilirsiniz MUST! Security V.1 Kodlama Bitti, Yakında Yeni Bi tema daha Hazırlıcam |
|
hayalet
177 posts |
#41488 2008-10-10 12:29 GMT |
|
verdiğin kodları nereye eklicem ? |
|
hayalet
177 posts |
#41679 2008-10-11 13:37 GMT |
|
arkadaşlar sizleri bekliyorumm
|
|
MUST!
528 posts |
#41686 2008-10-11 15:07 GMT |
|
eklentinin kodlarını eklermisin?
|
|
|
Web Sitene Reklam Alıp Para Kazanmak İçin Tıkla
BalaBirlik.com forumdaki reklamlara tıklayarak bana destek olabilirsiniz MUST! Security V.1 Kodlama Bitti, Yakında Yeni Bi tema daha Hazırlıcam |
|
hayalet
177 posts |
#41706 2008-10-11 19:28 GMT |
|
newpagesbypath.php
Code: <?PHP /* ==================== Seditio - Website engine Copyright Neocrome http://www.neocrome.net [BEGIN_SED] File=plugins/newpagesbypath/newpagesbypath.php Version=100 Updated=2006-jan-24 Type=Plugin Author=Neocrome Description= [END_SED] [BEGIN_SED_EXTPLUGIN] Code=newpagesbypath Part=main File=newpagesbypath Hooks=index.tags Tags=index.tpl:{PLUGIN_NEWPAGESBYPATH.categorycodehere} Minlevel=0 Order=10 [END_SED_EXTPLUGIN] ==================== */ if (!defined('SED_CODE')) { die('Wrong URL.'); } /* ============ MASKS FOR THE HTML OUTPUTS =========== */ $cfg['plu_mask_newpagesbypath'] = "%1\$s"." "."%2\$s"." %3\$s<br />"; // %1\$s = Link to the category // %2\$s = Link to the page // %3\$s = Date $plu_empty = $L['None']."<br />"; function sed_get_newpagesbypath($c, $limit, $mask) { global $L, $db_pages, $usr, $cfg, $sed_cat, $sed_catacc, $plu_empty; $mtch = $sed_cat[$c]['path']."."; $mtchlen = strlen($mtch); $catsub = array(); $catsub[] = $c; @reset($sed_cat); while (list($i,$x) = each($sed_cat) ) { if (substr($x['path'],0,$mtchlen)==$mtch) { $catsub[] = $i; } } $sql = sed_sql_query("SELECT page_id,page_cat,page_title,page_date,page_alias FROM $db_pages WHERE page_state=0 AND page_cat NOT LIKE 'system' AND page_cat IN ('".implode("','", $catsub)."') ORDER by page_date DESC LIMIT $limit"); while ($row = sed_sql_fetcharray($sql)) { $row['page_urlpar'] = (empty($row['page_alias'])) ? "id=".$row['page_id'] : "al=".$row['page_alias']; $res .= (sed_auth('page', $row['page_cat'], 'R')) ? sprintf($mask, "", "<a href=\"page.php?".$row['page_urlpar']."\">".sed_cc(sed_cutstring(stripslashes($row['page_title']),36))."</a>", "" ) : ''; } $res = (empty($res)) ? $plu_empty : $res; return($res); } if ($cfg['plugin']['newpagesbypath']['maxpages']>0 && !empty($cfg['plugin']['newpagesbypath']['categories'])) { $cats = explode(',', $cfg['plugin']['newpagesbypath']['categories']); foreach($cats as $k => $i) { $i = trim($i); $newpagesbypath[$i] = sed_get_newpagesbypath( $i, $cfg['plugin']['newpagesbypath']['maxpages'], $cfg['plu_mask_newpagesbypath']); } } $t-> assign(array( "PLUGIN_NEWPAGESBYPATH" => $newpagesbypath, "PLUGIN_NEWPAGESBYPATH_MAXLINES" => $cfg['plugin']['newpagesbypath']['maxpages'] )); ?> newpagesbypath.setup.php Code: <?PHP
/* ==================== Seditio - Website engine Copyright Neocrome http://www.neocrome.net [BEGIN_SED] File=plugins/newpagesbypath/newpagesbypath.setup.php Version=100 Updated=2006-jan-24 Type=Plugin Author=Neocrome Description= [END_SED] [BEGIN_SED_EXTPLUGIN] Code=newpagesbypath Name=New pages by path Description=Recent pages, groupped by category, including the sub-levels Version=100 Date=2006-jan-24 Author=Neocrome Copyright= Notes= SQL= Auth_guests=R Lock_guests=W12345A Auth_members=R Lock_members=W12345A [END_SED_EXTPLUGIN] [BEGIN_SED_EXTPLUGIN_CONFIG] categories=01:text:::Category codes of the parents, separated by commas maxpages=02:select:0,1,2,3,4,5,6,7,8,9,10,15,20,25,30,50,100,200:5:Recent pages displayed [END_SED_EXTPLUGIN_CONFIG] ==================== */ if (!defined('SED_CODE')) { die('Wrong URL.'); } ?> |
|
MUST!
528 posts |
#41765 2008-10-12 09:59 GMT |
|
dene bi bakalım ben denemedim
Code: <?PHP
/* ==================== Seditio - Website engine Copyright Neocrome http://www.neocrome.net [BEGIN_SED] File=plugins/newpagesbypath/newpagesbypath.php Version=100 Updated=2006-jan-24 Type=Plugin Author=Neocrome Description= [END_SED] [BEGIN_SED_EXTPLUGIN] Code=newpagesbypath Part=main File=newpagesbypath Hooks=index.tags Tags=index.tpl:{PLUGIN_NEWPAGESBYPATH.categorycodehere} Minlevel=0 Order=10 [END_SED_EXTPLUGIN] ==================== */ <table border='1' width='100%' cellspacing='0' bordercolor='000000' cellpadding='0' align='center'> if (!defined('SED_CODE')) { die('Wrong URL.'); } /* ============ MASKS FOR THE HTML OUTPUTS =========== */ $cfg['plu_mask_newpagesbypath'] = "%1\$s"." "."%2\$s"." %3\$s<br />"; // %1\$s = Link to the category // %2\$s = Link to the page // %3\$s = Date $plu_empty = $L['None']."<br />"; function sed_get_newpagesbypath($c, $limit, $mask) { global $L, $db_pages, $usr, $cfg, $sed_cat, $sed_catacc, $plu_empty; $mtch = $sed_cat[$c]['path']."."; $mtchlen = strlen($mtch); $catsub = array(); $catsub[] = $c; @reset($sed_cat); while (list($i,$x) = each($sed_cat) ) { if (substr($x['path'],0,$mtchlen)==$mtch) { $catsub[] = $i; } } $sql = sed_sql_query("SELECT page_id,page_cat,page_title,page_date,page_alias FROM $db_pages WHERE page_state=0 AND page_cat NOT LIKE 'system' AND page_cat IN ('".implode("','", $catsub)."') ORDER by page_date DESC LIMIT $limit"); while ($row = sed_sql_fetcharray($sql)) { $row['page_urlpar'] = (empty($row['page_alias'])) ? "id=".$row['page_id'] : "al=".$row['page_alias']; $res .= (sed_auth('page', $row['page_cat'], 'R')) ? sprintf($mask, "", "<a href=\"page.php?".$row['page_urlpar']."\">".sed_cc(sed_cutstring(stripslashes($row['page_title']),36))."</a>", "" ) : ''; } $res = (empty($res)) ? $plu_empty : $res; return($res); } if ($cfg['plugin']['newpagesbypath']['maxpages']>0 && !empty($cfg['plugin']['newpagesbypath']['categories'])) { $cats = explode(',', $cfg['plugin']['newpagesbypath']['categories']); foreach($cats as $k => $i) { $i = trim($i); $newpagesbypath[$i] = sed_get_newpagesbypath( $i, $cfg['plugin']['newpagesbypath']['maxpages'], $cfg['plu_mask_newpagesbypath']); } } $t-> assign(array( "PLUGIN_NEWPAGESBYPATH" => $newpagesbypath, "PLUGIN_NEWPAGESBYPATH_MAXLINES" => $cfg['plugin']['newpagesbypath']['maxpages'] )); ?> |
|
|
Web Sitene Reklam Alıp Para Kazanmak İçin Tıkla
BalaBirlik.com forumdaki reklamlara tıklayarak bana destek olabilirsiniz MUST! Security V.1 Kodlama Bitti, Yakında Yeni Bi tema daha Hazırlıcam |
|
hayalet
177 posts |
#41840 2008-10-12 17:42 GMT |
|
yoq valla hata var kardeş düzenlemeye çalıştım ama beceremedim
|
|
Kript0
85 posts |
#41844 2008-10-12 18:23 GMT |
|
Kullandiginiz latestposts eklentisinin kodlarini ekleyinde ona göre yapalim. |
|
hayalet
177 posts |
#41845 2008-10-12 18:42 GMT |
|
latestposts değil kript0 kardeş newpagesbypath eklentisni tablo içine almak istiyorum senin sitende olduğu gibi
|
|
Benzer konular (Similar topics) #BETA
| Konular | Mesajlar | Son Yazar | Güncelleme |
| NEWPAGESBYPATH eklentisinde sorun | 3 | mustanq | 335 Gün |
| newpagesbypath eklentisinde gösterim sorunu | 2 | Aolkantin.com | 141 Gün |
| Newpagesbypath eklentisinde kategorileri gizlemek? | 5 | Dvdbil | 229 Gün |
| newpagesbypath eklentisinde gösterdiğim dosya ve döküman sayısı | 2 | serhat36 | 106 Gün |
| Yanda Açılan MEnü | 7 | mervan | 186 Gün |




