Package:
Summary:
Load localization strings based on current idiom
Groups:
Author:
Description:
This class can be used to load localization strings based on the current chosen idiom.
It takes the current idiom option and loads in include file with the definitions of constants that define application strings in the chosen idiom.
Package:
Summary:
Calculate the disk space usage of a directory
Groups:
Author:
Description:
This class can be used to Calculate the disk space usage of a given directory.
It can traverse a given directory recursively and count the total number of directories, files and their sizes.
The class can also format the size value in bytes, KB MB or GB.
Package:
Summary:
Perform general purpose mathematical operations
Groups:
Author:
Description:
This class can be used to perform general purpose mathematical operations. Currently it can:
- Convert values between scientific and decimal representation and vice-versa
- Calculate the power of given number and exponent
- Solve second degree polynomial equations
- Determine if a number is odd or even
- Calculate the factorial of a given number
- Determine the percentage of a given number relative to another
- Calculate the perimeter of a circumference given its radius
Package:
Summary:
Framework that uses MVC design pattern
Groups:
Author:
Description:
This class can be used to framework that uses MVC design pattern.
It provides a base loader class that loads other classes and plug-ins, a main controller class and a base model class that can be extended to implement application model classes.
The views are implemented as PHP scripts eventually embedded in HTML.
Package:
Summary:
Access user resources using Tuenti API
Groups:
Author:
Description:
This package can be used to access user resources using Tuenti (Spanish social network) Web services API.
It can send HTTP requests to the Tuenti API Web server to perform several types of actions with resources of a given Tuenti user.
Currently it can access user profile, photo albums, birthday and other user events, messages, notifications, posts and discussion threads, tags, etc.
Package:
Summary:
Authenticate your users via IMAP in Zend Framework
Groups:
Author:
Description:
This class is a Zend Framework extension that can authenticate users accessing an IMAP server.
It can connect to a given IMAP server using the Zend Mail IMAP class and verify whether the given user and password are valid.
This class supports both insecure and secure connections using SSL.
Package:
Summary:
Convert an array into hierarchic data
Groups:
Author:
Description:
This class can be used to convert an array into hierarchic data.
It can traverse an array of elements which may be objects or arrays that have entries that define an identifier of the entry and the identifier of the parent entry.
The class calls a certain class function to process entries grouped by parent entry identifier.
That function returns a string that is concatenated to form the whole hierarchy string representation.
Sub-classes my redefine the entry processing function to generate a string in a hierarchic format.