AlexxBlog.com


Colţul meu pe Internet

Archive for the ‘V6’ tag

Iconiţe în panoul Navigare - PHP-Fusion V6

without comments

 Iconiţe în panoul Navigare - PHP-Fusion V6Această infuzie adaugă în Panoul de Navigare, lângă legături, iconiţe ca în imaginea alăturată.

Download | Topic PHP-Fusion România

Written by Alex

October 12th, 2008 at 12:16 am

Posted in PHP-Fusion

Tagged with , , , ,

Yahoo! ID Panel 0.3 Beta pentru PHP-Fusion V7

without comments

Cu puţine întârzieri…dar am reuşit să termin infuzia Yahoo! ID Panel pentru .goofy-yahoo-logo Yahoo! ID Panel 0.3 Beta pentru PHP-Fusion V7

Am transformat şi toate panourile (yahoo_id_panel, yahoo_id_latest_panel si yahoo_id_random_panel) pentru .

Zilele următoare voi publica o versiune corectată pentru pentru că am găsit câteva greşeli.

Dacă găsiţi buguri sau aveţi idei pentru versiunile următoare aştept răspunsuri.

Download | Topic PHP-Fusion România

Written by Alex

October 11th, 2008 at 11:53 pm

Posted in PHP-Fusion

Tagged with , , , , ,

Forum Extension Panel 1.8 - PHP-Fusion V6

with one comment

Acest panou apare sub . Aveti si locale in romana.forum-ex Forum Extension Panel 1.8 - PHP-Fusion V6

Download | Topic PHP-Fusion România

Written by Alex

October 6th, 2008 at 10:11 am

Posted in PHP-Fusion

Tagged with , , , , , ,

Script înregistrări lunare

without comments

<?
/* Configure start/stop times */
$start = (time()-(3600*24*7*4));
$stop = time();
/* Output the times */
echo strftime("%m/%d/%y", $start)." to ".strftime("%m/%d/%y", $stop)."<br /><br />\n";
/* Set up the days */
$days = array();
$result = dbquery("select * from ".DB_USERS." where user_joined > {$start} and user_joined < {$stop} order by user_joined asc");
while($data = dbarray($result)){
$date = strftime("%m/%d/%y", $data['user_joined']);
if(!isset($days[$date])){
$days[$date] = 0;
}
$days[$date]++;
}
$total = dbrows($result);
/* Now output the table/bars */
echo “<table width=’100%’ cellspacing=’0′ cellpadding=’1′>\n”;
foreach($days as $day=>$count){
echo “<tr>\n<td width=’1%’ nowrap=’nowrap’>”.$day.”</td>\n<td>”.statBar($count, $total).”</td>\n<td align=’center’ width=’5%’ nowrap=’nowrap’>”.$count.”</td></tr>\n”;
}
echo “</table>\n”;
/* function for showing the bars */
function statBar($count, $total, $width=”200″){
$width_percent = ceil((($count/$total)*100)).”%”;
return “<div style=’width:100%;border:1px solid #696969;padding:1px;height:12px;’><div style=’background-color:#ccc;height:12px;width:”.$width_percent.”;’>&nbsp;</div></div>”;
}
?>

Topic PHP-Fusion România

Written by Alex

October 3rd, 2008 at 10:39 am

Posted in PHP-Fusion

Tagged with , , , ,

Lista membrilor banaţi - PHP-Fusion V6

without comments

Următorul cod afişează lista membrilor banaţi într-un panou sau întro pagină personalizată.

<?
openside(”Membri banaţi”);
$listaban = dbquery(”SELECT user_id, user_name FROM “.$db_prefix.”users WHERE user_status=’1′ ORDER BY user_id ASC”);
$totalbanati = dbrows($listaban);
if ($totalbanati > 0) {
while ($memban = dbarray($listaban)) {
echo “<img src=’”.THEME.”images/bullet.gif’ alt=’>’> <a href=’”.BASEDIR.”profile.?lookup=”.$memban['user_id'].”‘>”.$memban['user_name'].”</a<br/>\n”;
}
echo “<br />Total: <strong>”.$totalbanati.”</strong> membr”.($totalbanati == 1 ? “u” : “i”);
} else {
echo parsesmileys(”<div align=’center’>Momentan nu avem<br />membri banaţi.<br />Vrei să fii primul? :P</div>”);
}
closeside();
?>

Topic PHP-Fusion România

Written by Alex

September 27th, 2008 at 10:32 am

Posted in PHP-Fusion

Tagged with , , , , ,

Bot pentru reclame - PHP-Fusion V7

with one comment

Screenshot:

Bot pentru reclame - PHP-Fusion V7

Bot pentru reclame -

Download | Topic PHP-Fusion România

Pentru citiţi aici.

Written by Alex

September 26th, 2008 at 5:30 pm

Posted in PHP-Fusion

Tagged with , , , , , ,

Modificări yahoo_id_panel pentru PHP-Fusion V6

without comments

Am scris aici despre această infuzie.

La cererile unor membri am făcut câteva modificări.

Download | Topic PHP-Fusion România

Written by Alex

September 24th, 2008 at 5:11 pm

Posted in PHP-Fusion

Tagged with , , , , ,

Citeşte mai mult - Read more - PHP-Fusion V6

without comments

Această modificare adaugă legătura “Citeşte mai mult” în titlul ştirei.

  • Deschizi fişierul theme. şi la linia 49 trebuie să ai

echo "<td class='capmain'>".$subject."\n";

  • Înlocuieşti acea linie cu

echo "<td class='capmain'>".$subject." - \n";
echo newsopts($info,"·").itemoptions("N",$info['news_id']);

Dacă vrei să dispară “Citeşte mai mult” din josul ştirii:

  • Cauţi următorul cod (ar trebui să fie linia 60)

echo newsposter($info," ·").newsopts($info,"·").itemoptions("N",$info['news_id']);

  • Înlocuieşti cu

echo newsposter($info," ·");

Topic PHP-Fusion România

Written by Alex

September 6th, 2008 at 10:34 am

Posted in PHP-Fusion

Tagged with , , , , ,

Latest Downloads Panel - Ultimele descărcări - PHP-Fusion V6

without comments

La cererea unui membru am modificat acest panou pentru a afişa data adăugării fişierului şi categoria.

Download | Topic PHP-Fusion România

PHP-Fusion%20Powered%20Website Latest Downloads Panel - Ultimele descărcări - PHP-Fusion V6

Written by Alex

September 4th, 2008 at 5:39 pm

Posted in PHP-Fusion

Tagged with , , , , ,

Auto Resize Avatar - PHP-Fusion V6

without comments

Probabil aţi observat că atunci când utilizatorul încearcă să îşi pună un avatar mai mare decât limita permisă upload-ul eşuează. Această mică infuzie redimensionează imaginea şi o face astfel la limita permisă.

Download | Topic PHP-Fusion România

Written by Alex

September 4th, 2008 at 11:33 am

Posted in PHP-Fusion

Tagged with , , ,