XF 2.2 But where is a list of all the style property Unique IDs?

SQL:
SELECT title_phrase.addon_id, REPLACE(title_phrase.title, 'style_prop.', '') AS name, title_phrase.phrase_text AS title, description_phrase.phrase_text AS description
FROM xf_phrase AS title_phrase
LEFT JOIN xf_phrase AS description_phrase ON (description_phrase.language_id = 0 AND description_phrase.title = REPLACE(title_phrase.title, 'style_prop.', 'style_prop_desc.'))
WHERE title_phrase.language_id = 0 AND title_phrase.title LIKE 'style_prop.%'

This will give you an always up-to-date list of style properties for your XenForo instance with all installed Add-ons.

I've attached a list for just XenForo 2.3.2.
 

Attachments

Last edited:
Back
Top Bottom