silverorange Code


Store.Store
/Store/Store.php at line 14

Class Store

Store

public class Store

Container for package wide static methods

Copyright:
2006-2008 silverorange
License:
http://www.gnu.org/copyleft/lesser.html LGPL License 2.1

Field Summary
final mixed

GETTEXT_DOMAIN

final mixed

PACKAGE_ID

The package identifier.

Constructor Summary

Store()

Prevent instantiation of this static class.

Method Summary
static array

getConfigDefinitions()

Gets configuration definitions used by the Store package.

static array

getDependencies()

Gets the packages this package depends on.

static void

gettext(mixed message)

static void

ngettext(mixed singular_message, mixed plural_message, mixed number)

static void

setupGettext()

Field Detail

/Store/Store.php at line 23

GETTEXT_DOMAIN

public final mixed GETTEXT_DOMAIN = 'store'

/Store/Store.php at line 21

PACKAGE_ID

public final mixed PACKAGE_ID = 'Store'

The package identifier


Constructor Detail

/Store/Store.php at line 119

Store

public Store()

Prevent instantiation of this static class


Method Detail

/Store/Store.php at line 86

getConfigDefinitions

public static array getConfigDefinitions()

Gets configuration definitions used by the Store package

Applications should add these definitions to their config module before loading the application configuration.

Returns:
the configuration definitions used by the Store package.
See Also:
SiteConfigModule::addDefinitions()

/Store/Store.php at line 68

getDependencies

public static array getDependencies()

Gets the packages this package depends on

Returns:
an array of package IDs that this package depends on.

/Store/Store.php at line 36

gettext

public static void gettext(mixed message)

/Store/Store.php at line 44

ngettext

public static void ngettext(mixed singular_message, mixed plural_message, mixed number)

/Store/Store.php at line 54

setupGettext

public static void setupGettext()

silverorange Code