XOOPS 2.3.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News XOOPS 2.3.1 (Default branch)
# 1  
Old 11-17-2008
XOOPS 2.3.1 (Default branch)

ImageXOOPS is a dynamic OO (Object Oriented) portalscript written in PHP. It supports mySQL, and isan ideal tool for developing small to largedynamic community Web sites, intra-companyportals, corporate portals, Web logs, and much more.License: GNU General Public License (GPL)Changes:
The objective of the 2.3 release series is to merge the existing 2.0 and 2.2 branches, and to build a bridge towards the next generation of the system, 3.0. Users will be able to learn some of new features that will be available in 3.0, while developers can understand better the direction of XOOPS development, and designers can learn what features will be supported in the future.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
CAIRO_AVAILABLE_FONTS(3)						 1						  CAIRO_AVAILABLE_FONTS(3)

Cairo::availableFonts - Retrieves the availables font types

       Object oriented style:

SYNOPSIS
publicstatic array Cairo::availableFonts (void ) DESCRIPTION
Procedural style: array cairo_available_fonts (void ) Returns an array with the available font backends PARAMETERS
This function has no parameters. RETURN VALUES
A list-type array with all available font backends. EXAMPLES
Example #1 Object oriented style <?php /* Object Oriented Style */ var_dump(Cairo::availableFonts()); ?> The above example will output something similar to: array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" } Example #2 Procedural style <?php /* Procedural style */ var_dump(cairo_available_fonts()); ?> The above example will output something similar to: array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" } SEE ALSO
Cairo::availableSurfaces. PHP Documentation Group CAIRO_AVAILABLE_FONTS(3)