Package:
Summary:
Process interaction requests using jQuery
Groups:
Author:
Description:
This class can be used process interaction requests using jQuery.
It can generate Javascript that uses the jQuery library send AJAX requests.
The class can generate Javascript calls that process the server response, show errors and debug information.
Package:
Summary:
Get the roots of a quadratic equation
Groups:
Author:
Description:
This class can be used to get the roots of a quadratic equation.
It takes as parameters the coefficients a, b and c and the precision of the root values.
The class calculates the quadratic equation roots and returns them in an array.
Package:
Summary:
Implements the soundex algorithm for Turkish
Groups:
Author:
Description:
This class implements a variant of the soundex algorithm for Turkish.
The soundex algorithm converts words into an hash that represents the way the word is spelled in English.
This class implements a modified version the algorithm to consider Turkish spelling instead of English.
Package:
Summary:
Create and retrieve data from a MySQL table
Groups:
Author:
Description:
This class can be used to create and retrieve data from a MySQL table.
It can create a database with a table with information of a list of countries.
The class can also retrieve the country information list into an array.
Package:
Summary:
Handler for storing session data with MDB and APC
Groups:
Author:
Description:
This class is a replacement handler for storing session data with MDB2 and APC.
It can be used to store PHP sessions in any database supported by PEAR MDB2.
The class also stores and retrieves session data from APC cache to access session data faster.
Package:
Summary:
Instantiate class and call a function
Groups:
Author:
Description:
This class can be used to instantiate class and call a function of the new object.
It uses reflection to determine how to create an object of a given class calling it's constructor function.
The class calls a function of the object passing any parameters if necessary.
Package:
Summary:
Manipulate color values
Groups:
Author:
Description:
This class can be used to manipulate color values.
It can perform several types of operations with colors like:
- Merging two colors with a given level the opacity
- Invert a color
- Complement two colors
- Add two colors
- Subtract two colors
- Multiply two colors
- Get the average between two colors
- Lighten a color
- Get parts of two colors
- Get the grey version of a color
- Get the Web safe version of a color
- Get a color for text to contrast well on a given background color
- Determine if a text color is readable on given background color
- Get the distance between two colors
- Get an array of gradient colors
- Get the gradient level of a given color between colors
Package:
Summary:
Get metadata from Flash video files
Groups:
Author:
Description:
This class can be used to get metadata from Flash video files.
It opens a Flash video file and parses its contents to retrieve details about the video stream it contains.
Currently it can return the duration, frame size, frame rate, video and audio rates and codecs.
Package:
Summary:
Generate an URL for display images from Gravatar
Groups:
Author:
Description:
This class can be used to generate an URL for display people images from Gravatar.
It takes the e-mail of a person and generates the URL of a image of that person stored in the Gravatar site.
The size and the rating of the image are also configurable parameters.
Package:
Summary:
Query arrays with a SQL-like syntax using LINQ
Groups:
Author:
Description:
This class can be used to query arrays with a SQL-like syntax using LINQ.
It takes an array as parameter and can perform several types of queries using an SQL-like syntax as if the array was a relational database.
Currently it supports performing SELECT and DELETE queries.