vCard Creator Full 0.0.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News vCard Creator Full 0.0.1 (Default branch)
# 1  
Old 05-06-2008
vCard Creator Full 0.0.1 (Default branch)

vCard Creator Full is a PHP class that can be used to generate user contact files in vCard format. It takes as parameter an associative array with the user contact details. The class can generate and store the vCard files or serve them for download.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need a script for HEXA meta creator

Hi All, Need help how I can create a script generate a Meta if have give range. For e.g This is range 4264:4803 around 1440 device i need to built a script to create a meta file if I have input field as below Output format I need. Like that I need 40 meta with the rage of 30 device and... (0 Replies)
Discussion started by: ranjancom2000
0 Replies

2. Shell Programming and Scripting

Fixing corrupted vcard files.

KDE's Kontact PIM breaks quoted-printable vcard files because it linebreaks in the middle of a word. Take this text for example: NOTE;CHARSET=UTF-8;ENCODING=QUOTED-PRINTABLE:=D7=A9=D7=95=D7=A8=D7=94 =D7=A 8=D7=90=D7=A9=D7=95=D7=A0=D7=94.\n=D7=94=D7=A9=D7=95=D7=A8=D7=94 =D7=94=D7= ... (7 Replies)
Discussion started by: dotancohen
7 Replies

3. Solaris

creator 3d / ffbconfig

got creator 3d card in my ultra10 solaris8. old sun monitor. what is best way to setup the ffbconfig?. i set to wrong resolution and messed up the CDE so that i could not read anything. Had to re-install solaris. easy way to get around this?. (6 Replies)
Discussion started by: S26+
6 Replies

4. Solaris

Creator 3D Video Adapter

Hi everyone, it's me the Solaris novice once again. Here's my situation. - I bought a Sun Ultra 10 Creator 3D Workstation and Sony 19" SVGA Monitor package deal. - The system has the Creator 3D Video Adapter installed but I could not use it because the adapter has a 13w3 connection and my... (5 Replies)
Discussion started by: jbarbuto
5 Replies
Login or Register to Ask a Question
Creator(3U)						    InterViews Reference Manual 					       Creator(3U)

NAME
Creator - recreates catalog-managed objects from disk and instantiates component views from their class identifiers SYNOPSIS
#include <Unidraw/creator.h> DESCRIPTION
A creator object can reconstruct a catalog-managed object from disk and can instantiate a component view given a class identifier. Gener- ally only the Catalog class uses the creator to reconstruct objects from disk, but it may be useful for other classes (e.g., the Component base class) to use the creator to create views of component subjects. Applications that derive new catalog-managed classes or component views must also derive a subclass of Creator that extends the base class operations to support the new classes. PUBLIC OPERATIONS
Creator() Instantiate an new creator object. The Catalog constructor requires an instance of a creator object, either an instance of the Cre- ator base class or an instance of an application-specific Creator subclass. virtual void* Create( ClassId, istream& in, ObjectMap* objmap, int objid ) Create an instance of the class corresponding to the given class identifier. Normally this operation will be used by the Catalog class exclusively. This operation contains a switch statement that calls a CREATE macro for each possible class identifier. The CREATE macro takes the istream, ObjectMap, and int arguments as parameters; it is not important to understand how the macro uses these arguments. For example, the entry for the LineComp line component subject class is case LINE_COMP: CREATE(LineComp, in, objmap, objid); Derived Creator classes must redefine this operation to include a switch statement for application-specific classes, with the default case calling the parent class's Create operation. virtual void* Create(ClassId id) Create an instance of the view class corresponding to the given view class identifier. This operation is implemented with a set of consecutive if statements of the form if (id == <identifier name>) return new <class name>; For example, the entry for the PostScript external view class identifier for line components is if (id == PS_LINE) return new PSLine; Derived Creator classes must redefine this operation to include if statements for application-specific view classes, with the final statement being a call to the parent classes's Create operation. SEE ALSO
Catalog(3U), classes(3U), globals(3U) Unidraw 12 June 1990 Creator(3U)