Is there a comprehensive list of function calls?

I'm looking for a good list of (all of the) php function calls for Dolphin 7. developers-manual.txt does not cut it. In fact, that text file is a joke.

For instance: I'm look for a good way to call dolphin 7 blog posts / titles and insert them into a custom page block.

Is there a better documentation somewhere? Something kind of like how Javadoc lists all the function calls of a class.

If not, any help on what functions to call for this task?

Quote · 5 Apr 2012

to show some block with blogs info you need to code a service function inside your blogs module class file "BxBlogsModules.php"  like

function serviceMyBlockDisplay() {

////your code

}

and create a new block where you want to show your block and add this to its content through phpmyadmin

sys_page_compose table (change the "Func" field to PHP from ECHO)

BxDolService::call('blogs', 'my_block_display');

and it will work but depends how you code your function and what you want to show.

Good luck

so much to do....
Quote · 5 Apr 2012

http://www.boonex.com/doc/

Service functions for blogs module are described here:

http://www.boonex.com/doc/dc/d8e/class_bx_blogs_module.html

Rules → http://www.boonex.com/terms
Quote · 6 Apr 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.