11
Mamba
Re: tag module
  • 2011/2/25 17:15

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
I think if we add help page in module system help is better

Yes, that would be much better and more practical, but I am not sure if currently it is possible without placing the content directly in the /system module.

Do you have anywhere an example where I could look see it? We need a "seemless" integration, i.e. you click on the XOOPS Help icon, and it will open help file from that module, and then you can return right away back to the module.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

12
timgno
Re: tag module
  • 2011/2/25 17:59

  • timgno

  • Module Developer

  • Posts: 1504

  • Since: 2007/6/21


tag is perfect...
mylinks in admin is perfect, but in frontend to leave a bit of the old style, see this link for Themes that do not change: MyLinks

I would propose to adapt the model of the module Xnews, I would suggest for the header to use jquery for Categories & Suggestions like this: TDMDownloads

timgno

13
voltan
Re: tag module
  • 2011/2/25 18:15

  • voltan

  • Theme Designer

  • Posts: 724

  • Since: 2006/12/5


I talk about system/help.php

I add it in extgallery . you must add this line in xoops_version.php

$modversion['help'] = "extgallery.html";

$modversion['name'] = _MI_EXTGAL_NAME;
$modversion['version'] = 1.09;
$modversion['description'] = _MI_EXTGAL_DESC;
$modversion['credits'] = "http://www.zoullou.net/";
$modversion['author'] = "Zoullou";
$modversion['help'] = "extgallery.html";
$modversion['license'] = "GPL see LICENSE";
$modversion['official'] = 0;
$modversion['image'] = "images/extgallery_logo.png";
$modversion['dirname'] = "extgallery";
$modversion['onInstall'] = 'include/install_function.php';
$modversion['onUpdate'] = 'include/update_function.php';


and add html file in language file : extgallery/language/english/help/

and help in system module have this bug too :
http://sourceforge.net/tracker/?func=detail&aid=3180344&group_id=41586&atid=430840

14
Mamba
Re: tag module
  • 2011/2/25 18:56

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
I talk about system/help.php

Yes, we can probably do that

Quote:
and help in system module have this bug too :
http://sourceforge.net/tracker/?func= ... roup_id=41586&atid=430840

Thanks for providing the solution. I fixed it in the SVN.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

15
Mamba
Re: tag module
  • 2011/2/25 19:02

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
tag is perfect...
mylinks in admin is perfect, but in frontend to leave a bit of the old style, see this link for Themes that do not change: MyLinks

I'm glad that you like the Admin GUI. This is a combination of work done by TDM Team, Krisfr, and Mojtaba.

The front-end is a different story - we'll need help from the community.

Quote:
I would propose to adapt the model of the module Xnews, I would suggest for the header to use jquery for Categories & Suggestions like this: TDMDownloads

good ideas! Would you be able to help?
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

16
voltan
Re: tag module
  • 2011/2/25 19:13

  • voltan

  • Theme Designer

  • Posts: 724

  • Since: 2006/12/5


Quote:
I would propose to adapt the model of the module Xnews, I would suggest for the header to use jquery for Categories & Suggestions like this: TDMDownloads


we have big problem whit load jquery . in some modules and themes we use:
$xoTheme->addScript('browse.php?Frameworks/jquery/jquery.js');


and

<{php}>
/** add JQuery and JQuery UI */
    
global $xoTheme
        
$xoTheme->addScript("browse.php?Frameworks/jquery/jquery.js");
        
$xoTheme->addScript("browse.php?Frameworks/jquery/plugins/jquery.ui.js");
        
$this->assign('xoops_module_header'$xoTheme->renderMetas(nulltrue)); 
<{/
php}>


but in other modules and themes we have other way to add JQuery . and we have Interference jQuery library whit this method .

I added jQuery in xnews module :
http://xoops.svn.sourceforge.net/viewvc/xoops/XoopsModules/xnews/branches/multi_template/

17
timgno
Re: tag module
  • 2011/2/25 20:25

  • timgno

  • Module Developer

  • Posts: 1504

  • Since: 2007/6/21


@Mamba
Quote:
good ideas! Would you be able to help?

is simple, just put the toggle function jquery in head tag and the id on div, to click the link at the top

@volten
I do not use this method because it is more convenient to insert it into the theme, showing you the way, wrapped does not work because it is duplicated, if you have added this libraries jquery in the theme

18
Mamba
Re: tag module
  • 2011/2/27 1:04

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Please check out "Marquee" and let me know if it works.

Of course, any improvements and "streamlining" of the module are appreciated.

Again, these are only cosmetic changes, so we have a consistent "look & feel" of the modules that will be going to the "XOOPS 2.5.0 Basic Module Pack".

Next one - probably XoopsPoll...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

19
Mamba
Re: tag module
  • 2011/2/27 1:08

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


@ Voltan:
Quote:
$modversion['help'] = "extgallery.html";

Well, it doesn't matter what's there, as XOOPS is currently only checking if it's <> ""
The only requirement is that the help file in /language/locallanguage/help/

is called "module_index.html"
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

20
Mamba
Re: tag module
  • 2011/2/27 10:59

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
Next one - probably XoopsPoll...

Ready for download and testing: here

[EDIT]It looks like it has problems with uninstalling. So unless you want to help with debugging, please wait till I figure that out.[/EDIT]
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

Login

Who's Online

132 user(s) are online (93 user(s) are browsing Support Forums)


Members: 0


Guests: 132


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits