Main menu

Forum


× Help Forum English

[WISH LIST] show a specific month

  • vaughan
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 3 Settimane fa - 12 Anni 3 Settimane fa #1740 da vaughan
[WISH LIST] show a specific month è stato creato da vaughan
Hi

It´s posible show a specific month in the module ICalendar? i don´t to show the current month, I want to create a module for each month of the year and create a yearly calendar.

Something like this:
www.motorextremo.es/calendario-anual-2013/
Ultima Modifica 12 Anni 3 Settimane fa da Lyr!C. Motivo: [WISH LIST]

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
12 Anni 3 Settimane fa #1742 da Lyr!C
Risposta da Lyr!C al topic show a specific month
Currently, it's not possible.

But it can be a good idea for a futur release! (i will keep it in mind !) B)

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File allegato:

Ringraziano per il messaggio: vaughan

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • vaughan
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 3 Settimane fa #1743 da vaughan
Risposta da vaughan al topic [WISH LIST] show a specific month
I've seen this code in helper.php in mod_iccalendar:
		// GénéŽration du Calendrier
		$days = date("d", mktime(0, 0, 0, $mese+1, 0, $anno));
		$list = array();
		
				
		for($a=1; $a<=$days; $a++)
		{
			$list[$a]['date'] = date('Y-m-d', mktime(0, 0, 0, $mese, $a, $anno));
			$list[$a]['dateFormat'] = strftime($f, mktime(0, 0, 0, $mese, $a, $anno));
			$list[$a]['dateTitle'] = strftime($f, mktime(0, 0, 0, $mese, $a, $anno));
			$list[$a]['week'] = date('N', mktime(0, 0, 0, $mese, $a, $anno));
			$list[$a]['day'] = $a;
			$list[$a]['month'] = $mese;
			$list[$a]['year'] = $anno;
			$list[$a]['year'] = $anno;
			$list[$a]['events']=array();
		}
		return $list;
	}

Would it work by changing the variables $ list [$ a] = $ months;
$ list [$ a] = $ year; ??

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
12 Anni 3 Settimane fa #1747 da Lyr!C
Risposta da Lyr!C al topic [WISH LIST] show a specific month
Euhhh... no, it won't work like this...

Need a new function to add a filter.
First, major news and changes in coding for version 1.3 coming soon, and after this version officially released, i will work to add new features, and new possibilities.

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File allegato:

Ringraziano per il messaggio: vaughan

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • vaughan
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 3 Settimane fa #1748 da vaughan
Risposta da vaughan al topic [WISH LIST] show a specific month
Ok, thanks!

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Mike
  • New Member
  • New Member
Di più
11 Anni 11 Mesi fa #2383 da Mike
Risposta da Mike al topic [WISH LIST] show a specific month

Lyr!C ha scritto: Euhhh... no, it won't work like this...

Need a new function to add a filter.
First, major news and changes in coding for version 1.3 coming soon, and after this version officially released, i will work to add new features, and new possibilities.


In fact it's something I really need, for example to have props StartDate and EndDate, which - if set - will limit (or filter, as you said) first month+year and/or last month+year. IMHO it's relatively easy mod, could you implement it please? If so, I'm ready to pay for it. In such case contact me please, thanks.

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
11 Anni 11 Mesi fa #2422 da Lyr!C
Risposta da Lyr!C al topic [WISH LIST] show a specific month

Mike ha scritto:

Lyr!C ha scritto: Euhhh... no, it won't work like this...

Need a new function to add a filter.
First, major news and changes in coding for version 1.3 coming soon, and after this version officially released, i will work to add new features, and new possibilities.


In fact it's something I really need, for example to have props StartDate and EndDate, which - if set - will limit (or filter, as you said) first month+year and/or last month+year. IMHO it's relatively easy mod, could you implement it please? If so, I'm ready to pay for it. In such case contact me please, thanks.


Hi Mike!

It is in the wishlist (my first post is, developpement features to be added this year, but hope most in the few months to come B) ):
www.joomlic.com/en/forum/icagenda-announ...future-versions#1937

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File allegato:

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Mike
  • New Member
  • New Member
Di più
11 Anni 11 Mesi fa #2423 da Mike
Risposta da Mike al topic [WISH LIST] show a specific month

Lyr!C ha scritto:

Mike ha scritto:

Lyr!C ha scritto: Euhhh... no, it won't work like this...

Need a new function to add a filter.
First, major news and changes in coding for version 1.3 coming soon, and after this version officially released, i will work to add new features, and new possibilities.


In fact it's something I really need, for example to have props StartDate and EndDate, which - if set - will limit (or filter, as you said) first month+year and/or last month+year. IMHO it's relatively easy mod, could you implement it please? If so, I'm ready to pay for it. In such case contact me please, thanks.


Hi Mike!

It is in the wishlist (my first post is, developpement features to be added this year, but hope most in the few months to come B) ):
www.joomlic.com/en/forum/icagenda-announ...future-versions#1937


Hi,
I know, I just meant it could speed-up implementation, if I donate some money ;-)

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
11 Anni 11 Mesi fa #2425 da Lyr!C
Risposta da Lyr!C al topic [WISH LIST] show a specific month

Mike ha scritto: I know, I just meant it could speed-up implementation, if I donate some money ;-)


I understand, but I can not do so...
The project is intended for everyone, and I do not want to create privileges! :P

However, this filter is expected soon to link menu (i already have added it in my next developpment, before your post ;-) )

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File allegato:

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Mike
  • New Member
  • New Member
Di più
11 Anni 11 Mesi fa #2427 da Mike
Risposta da Mike al topic [WISH LIST] show a specific month

Lyr!C ha scritto:

Mike ha scritto: I know, I just meant it could speed-up implementation, if I donate some money ;-)


I understand, but I can not do so...
The project is intended for everyone, and I do not want to create privileges! :P

However, this filter is expected soon to link menu (i already have added it in my next developpment, before your post ;-) )


Thank You and God bless You, Your Highness ;-) hurrying to order ...
Ringraziano per il messaggio: Lyr!C

Si prega Accedi o Crea un account a partecipare alla conversazione.

Moderatori: Lyr!C
Tempo creazione pagina: 0.237 secondi

 

Follow Us

Create your Joomla templates with Template Creator CK

acymailing logo new