Page 1 of 1

Module for Joomla 3

Posted: 13 Feb 2013, 19:11
by Grigory S.
Hi, when will the version of the module for joomla 3?
p.s Thanks in advance!

Re: Module for Joomla 3

Posted: 14 Feb 2013, 01:08
by Jan
Hi, not sure what you mean with "module" ... but mostly Joomla! 2.5 modules should work with small modifications in Joomla! 3.

The plan is first making the components and then modules and plugins. I hope I will release all the components before Joomla! 3 will be stable.

Jan

Re: Module for Joomla 3

Posted: 14 Feb 2013, 07:54
by Grigory S.
Thanks for the reply, Jan!

Re: Module for Joomla 3

Posted: 19 Feb 2013, 00:47
by charleyhankins
I just installed phoca gallery images module on a new Joomla 3.0 installation. Installed fine, but when I tried to use it I received an error.
Fatal error: Call to undefined method JUser::authorisedLevels() in /.../modules/mod_phocagallery_image/mod_phocagallery_image.php on line 539

Re: Module for Joomla 3

Posted: 19 Feb 2013, 01:01
by Jan
Ok, so this seems it is not compatible, I need to do changes there then :-( :-(

Jan

Re: Module for Joomla 3

Posted: 18 Mar 2013, 14:30
by Johny8
Pro fungování Phoca Gallery modules (Tree a Menu)

Poté fungují na Joomla 3.0 bez problémů (zatím jsem na žádné další nepřišel)

1)
Problém s Juser::authorisedLevels()

Přepsat u obou modulů

Code: Select all

authorisedLevels
na

Code: Select all

getAuthorisedViewLevels
.
mod_phocagallery_menu.php line 140, mod_phocagallery_tree.php line 102

viz:
http://sugithk.com/joomla-blog/13-poten ... tform-12-1

Code: Select all

Juser::authorisedLevels()
has been removed. Use

Code: Select all

JUser::getAuthorisedViewLevels()
instead.

2)
Problém s přepsáním .DS. (na stránce chyba nějak takhle JPATH_ADMINISTRATORcomponentscom_phocagallerylibrariesloader.php)
mod_phocagallery_tree.php line 17

Code: Select all

if (! class_exists('PhocaGalleryLoader')) {
    require_once( JPATH_ADMINISTRATOR.DS.'components'.DS.'com_phocagallery'.DS.'libraries'.DS.'loader.php');
}
v rootu stránek přidat soubor
defines.php s obsahem

Code: Select all

<?php
defined('_JEXEC') or die;
define('DS',DIRECTORY_SEPARATOR);

Re: Module for Joomla 3

Posted: 21 Mar 2013, 01:41
by Jan
Ok, díky za návod

Re: Module for Joomla 3

Posted: 15 Apr 2013, 20:05
by HLEBOEUF
Hi Jan,

Did you already find time for the Tree and Menu module for 3.0 ?

Re: Module for Joomla 3

Posted: 16 Apr 2013, 00:30
by Jan
Hi, as written in other posts. First I need to overwrite the components, then I can take a look at the modules - and I hope I will finish it before Joomla! 3 LTS will be stable. See:
https://www.phoca.cz/phoca-needs-your-help/

Jan

Re: Module for Joomla 3

Posted: 24 Apr 2013, 11:31
by HLEBOEUF
Very honest answer !!
I wish I could help you but i'm afraid that my joomla skills are far to low to be a real help on this forum.