Internationalization
This plugin has support for internationalization translations. If you wish to help out by translating this plugin, you may find the .pot file in the languages folder of the plugin. Please send me your .mo translation files and I will add them to the plugin.
Languages Currently Supported:
- English (US)
- French (fr_FR)
- German (de_DE)
- Spanish (es_ES)
Filters
This plugin is highly extendable using WordPress filter API. Although the names are pretty self explanatory, I will briefly describe them.
go-live-update-urls/database/serialized-tables
Used to change which database tables and columns are treated as serialized data when updates are run. You can add any database table and column combination which uses serialized data. By default this array will contain the options, postmeta, usermeta, termmeta, commentmeta, and sitemeta tables.
Accepts 1 argument:
- Array of <table name> => <table_column>.
go-live-update-urls/database/core-tables
Used to filter the list of the WordPress core table used when creating checkboxes on the tools screen.
Accepts 1 argument:
- List of tables.
go-live-update-urls/database/column-types
Used to filter the types of database types that will be included in the updates.
Accepts 1 argument:
- List of database types.
go-live-update-urls/database/plugin-tables
Used to filter the list of the Tables Created By Plugins used when creating checkboxes on the tools screen.
Accepts 1 argument:
- List of tables.
go-live-update-urls/updaters/repo/get-updaters
Used to register an updater handler to be used during updates.
Accepts 1 argument:
- Array of fully qualified class names.
go-live-update-urls-pro/core/old-url
Used to prefill the Old URL field with a default value.
Accepts 1 argument:
- Value of the most recently used New URL or empty if the plugin has not been run nor the general settings changed within the past day.
go-live-update-urls-pro/core/new-url
Used to prefill the New URL field with a default value.
Accepts 1 argument:
- Value of the most recently used New URL or empty if the plugin has not been run nor the general settings changed within the past day.
go-live-update-urls-pro/database/supports-skipping
Used to disable skipping of rows and force updating invalid serialized data.
More info.
Accepts 3 argument:
- Whether or not to skip this row.
bool
- Current database table.
string
- Full Database class.
Go_Live_Update_Urls\Database