Dodatak nije testiran s zadnje 3 glavna izdanja WordPressa. Možda ga se više ne održava ili pruža podršku i možda ima probleme sa kompatibilnošću s novijim inačicama WordPressa.

WP_Registry

Opis

The plugin provides a globally accessible container for storing values of any kind. The Registry is a singleton and you can set values inside the registry like this:

WP_Registry::set( 'key', $value ) 

which can then be retrieved at any time like this:

WP_Registry::get( 'key' ) 

Instalacija

  1. Upload wp_registry.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Pitanja i odgovori

Which version of PHP is required?

This is a PHP 5+ plugin only. Internally it uses the SPL ArrayObject for data storage. Making PHP5 a requirement.

Recenzije

Nema recenzija za ovaj dodatak.

Suradnici i Programeri

“WP_Registry” je softver otvorenog koda. Sljedeće osobe su doprinijele ovom dodatku.

Suradnici

Prevedite “WP_Registry” na svoj jezik.

Zainteresirani ste za razvoj?

Pregledajte kôd, pogledajte SVN spremišteili se pretplatite na dnevnik razvoja od RSS.

Dnevnik promjena

0.2

  • Tested with WordPress 2.9, plugin is compatible

0.1

  • Initial plugin release