41
Mamba
Re: publisher
  • 2023/10/1 2:08

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


If it worked in an older XOOPS version, then it's a good chance that it will work with the current version, with eventually small adjustments.

Please share the links you were looking at...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



42
Mamba
Re: Smarty 3 and Smarty 4 coming soon to XOOPS
  • 2023/9/13 16:10

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


This site is actually running already on 2.5.11 and Smarty 3

While we encourage to test the code from GitHub, don't use it yet on production sites.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



43
Mamba
Re: Smarty 3 and Smarty 4 coming soon to XOOPS
  • 2023/9/11 12:04

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


It's getting closer!

We're still testing and making improvements, as you can see from the commits on GitHub and Pull Requests

There are still couple of minor issues, but it looks pretty solid. Yesterday I upgraded our test site that it's quite big, and it went pretty well.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



44
Mamba
Re: How to use XOOPS tree?
  • 2023/8/12 8:04

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Yes, when you use the getChildTreeArray function, you include it like this:

$tree->getChildTreeArray(0'title ASC');
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



45
Mamba
Re: Restrict the "title" field
  • 2023/8/12 7:48

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Why? What's the reason?
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



46
Mamba
Re: How to use XOOPS tree?
  • 2023/7/23 8:27

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


My mistake! My apologies!

It should be /xoopstree.php and not /tree.php

Please use this line:
require_once XOOPS_ROOT_PATH '/class/xoopstree.php';
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



47
Mamba
Re: How to use XOOPS tree?
  • 2023/7/20 0:42

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


To utilize the XOOPS tree structure for the given array, you can follow these steps:

1. Initialize the XOOPS Tree class:

require_once XOOPS_ROOT_PATH '/class/xoopstree.php';
$tree = new XoopsTree();


2. Define the XOOPS tree structure using the array:

$treeData = array(
    array(
'id' => 1'parent' => 0),
    array(
'id' => 2'parent' => 0),
    array(
'id' => 3'parent' => 0),
    array(
'id' => 4'parent' => 1),
    array(
'id' => 5'parent' => 4),
    array(
'id' => 6'parent' => 5)
);

foreach (
$treeData as $data) {
    
$tree->addNode($data['id'], $data['parent']);
}



3. Retrieve the tree structure using the XOOPS Tree class:

$treeStructure $tree->getChildTreeArray(0);


The `$treeStructure` variable will contain the hierarchical structure of the tree, starting from the root node with ID 0. You can then process and utilize this structure as per your requirements.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



48
Mamba
Re: Working with videos
  • 2023/7/4 18:32

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Sorry for the delay!
I'm in a process of migrating my PC to a new one, and unfortunately, it is not going as smooth as I was hoping for

But it's on my ToDo list, once I'm done with the migration
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



49
Mamba
Re: survey
  • 2023/7/4 18:16

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


I did some experiments earlier this year with having a router in Publisher, and it seems like it would be possible, but I would prefer to have a router in XMF directly, which could be used by all modules, but this would be up to the Core Team...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



50
Mamba
Re: oledrion
  • 2023/7/4 18:11

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
Will the "oledrion" module be changed to work on xoops2.5.11

That's the plan, but it won't happen before October/November, at the earliest. Right now I'm busy with work, but I hope to find some time in the Fall, to update some modules, incl. Oledrion, for XOOPS 2.5.11. But don't expect any new features here.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs




TopTop
« 1 2 3 4 (5) 6 7 8 ... 715 »



Login

Who's Online

200 user(s) are online (143 user(s) are browsing Support Forums)


Members: 0


Guests: 200


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