wp-social
Last commit date
app
2 months ago
assets
2 months ago
base
5 years ago
helper
2 months ago
inc
3 months ago
languages
2 months ago
lib
7 months ago
template
2 months ago
traits
5 years ago
xs_migration
3 years ago
autoload.php
5 years ago
instruction.txt
4 years ago
keys.php
4 years ago
phpcs.xml
3 years ago
plugin.php
7 months ago
readme.txt
1 month ago
wp-social.php
2 months ago
keys.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WP_Social; |
| 4 | |
| 5 | |
| 6 | class Keys { |
| 7 | |
| 8 | const OK_GLOBAL_SETTINGS = 'xs_global_setting_data'; |
| 9 | |
| 10 | |
| 11 | const KEY_SHARE_LAYOUT_ALIGNMENT_VERTICAL = 'vertical'; |
| 12 | const KEY_SHARE_LAYOUT_ALIGNMENT_HORIZONTAL = 'horizontal'; |
| 13 | |
| 14 | const WSLU_COUNTER_TABS = [ |
| 15 | 'wslu_providers', |
| 16 | 'wslu_style_setting', |
| 17 | 'wslu_counter_setting', |
| 18 | ]; |
| 19 | |
| 20 | } |
| 21 |