View previous topic :: View next topic |
Author |
Message |
Keepoer Apprentice
Joined: 30 Mar 2004 Posts: 293 Location: Zwischen Kassel und Edewecht pendelnd
|
Posted: Sun Dec 31, 2006 12:31 pm Post subject: einfacher Web-Kalender |
|
|
Hi,
ich bin gerade auf der Suche nach einem einfachen Webkalender. Ich brauche nur die Termineeingabe und als optionales Feature noch Nutzerverwaltung.
Ich kann zwar auch egroupware und Konsorten aufsetzen, doch allein die Konfig ist für das Projekt viel zu überdimensioniert.
Kennt jemand von euch da ein gutes Produkt?
Guten Rutsch!
Keep
P.S.: Mir ist gerade aufgefallen, dass unter FF2 die Shotkeys für die Textformatierungen nicht mehr funktionieren... Hat noch jemand das Problem? |
|
Back to top |
|
|
firefly Watchman
Joined: 31 Oct 2002 Posts: 5328
|
|
Back to top |
|
|
b3cks Veteran
Joined: 23 Mar 2004 Posts: 1481 Location: Bremen (GER)
|
|
Back to top |
|
|
blice Guru
Joined: 12 Feb 2005 Posts: 598 Location: D- 26188
|
Posted: Sun Dec 31, 2006 4:13 pm Post subject: |
|
|
Code: |
// Klickable Calender 2006 n.krueger
if (!isset($monat)) $monat=date("n");
if (!isset($selday)) $selday=1;
$jahr=date("Y");
$erster=date("w", mktime(0,0,0,$monat,1,$jahr));
$insgesamt=date("t",mktime(0,0,0,$monat,1,$jahr));
$monate=array("Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez");
if($erster==0){$erster=7;}
echo ('<table border="0" style="font-size:10pt;">');
echo ('<th colspan="7" align="center" style="color:#ff9900;">'.$monate[$monat-1].' <b>'.$jahr.'</b></th>');
echo ('<tr style="color:#666666"><td >Mo</td><td >Di</td><td >Mi</td><td >Do</td><td >Fr</td><td >Sa</td><td >So</td> </tr>');
echo('<tr>');
$i=1; while($i<$erster){echo ('<td> </td>'); $i++;}
$i=1; while($i<=$insgesamt){
$rest=($i+$erster-1)%7;
if ($i==$selday) echo('<td style="background:#ddffdd;color:black;" align="center">'.$i.'</td>');
else {
if ($rest!=0) echo ('<td style="background:#cccccc;" align="center"><a href="index.php?seite=calender&selday='.$i.'&monat='.$monat.'" style="color:black;">'.$i.'</a></td>');
else echo ('<td align="center"><b style="background:brown;color:yellow;">'.$i.'</b></td>');
}
if($rest==0){echo ('</tr><tr>');}
$i++;
}
echo ('</tr>');
echo ('<tr>
<td colspan="3"><a href="index.php?seite=calenderd&monat='.($monat-1).'">'.$monate[$monat-2].'</a></td>
<td> </td>
<td colspan="3" align="right"><a href="index.php?seite=calenderd&monat='.($monat+1).'">'.$monate[$monat].'</a></td>
</tr>');
echo ('</table>');
/*Ende des Calendermoduls***********************/
|
_________________ Gentoo seit 2004.3
Skype: bodokhan
SecondLife: Bodokhan Fall
Email: blice@gmx.de |
|
Back to top |
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|