PluginProbe ʕ •ᴥ•ʔ
Photo Gallery by FooGallery : Responsive Image Gallery, Masonry Gallery & Carousel / trunk
Photo Gallery by FooGallery : Responsive Image Gallery, Masonry Gallery & Carousel vtrunk
trunk 1.10.3 2.0.24 2.1.34 2.2.44 2.3.3 2.4.32 3.0.6 3.1.11 3.1.12 3.1.13 3.1.20 3.1.25 3.1.26 3.1.26.1 3.1.26.2
foogallery / includes / constants.php
foogallery / includes Last commit date
admin 7 months ago compatibility 7 months ago extensions 7 months ago foopluginbase 7 months ago public 7 months ago thumbs 7 months ago .DS_Store 7 months ago class-attachment-filters.php 7 months ago class-foogallery-animated-gif-support.php 7 months ago class-foogallery-attachment-custom-class.php 7 months ago class-foogallery-attachment-type.php 7 months ago class-foogallery-attachment.php 7 months ago class-foogallery-cache.php 7 months ago class-foogallery-common-fields.php 7 months ago class-foogallery-crop-position.php 7 months ago class-foogallery-datasource-media_library.php 7 months ago class-foogallery-debug.php 7 months ago class-foogallery-extensions-compatibility.php 7 months ago class-foogallery-force-https.php 7 months ago class-foogallery-lazyload.php 7 months ago class-foogallery-lightbox.php 7 months ago class-foogallery-paging.php 7 months ago class-foogallery-password-protect.php 7 months ago class-foogallery-sitemaps.php 7 months ago class-foogallery-widget.php 7 months ago class-foogallery.php 7 months ago class-gallery-advanced-settings.php 7 months ago class-il8n.php 7 months ago class-override-thumbnail.php 7 months ago class-posttypes.php 7 months ago class-retina.php 7 months ago class-thumbnail-dimensions.php 7 months ago class-thumbnails.php 7 months ago class-version-check.php 7 months ago constants.php 7 months ago functions.php 7 months ago includes.php 7 months ago index.php 11 years ago render-functions.php 7 months ago
constants.php
49 lines
1 <?php
2 /*
3 * FooGallery constants
4 */
5
6 define( 'FOOGALLERY_CPT_GALLERY', 'foogallery' );
7 define( 'FOOGALLERY_META_SETTINGS_OLD', 'foogallery_settings' );
8 define( 'FOOGALLERY_META_SETTINGS', '_foogallery_settings' );
9 define( 'FOOGALLERY_META_CUSTOM_CSS', 'foogallery_custom_css' );
10 define( 'FOOGALLERY_META_ATTACHMENTS', 'foogallery_attachments' );
11 define( 'FOOGALLERY_META_TEMPLATE', 'foogallery_template' );
12 define( 'FOOGALLERY_META_SORT', 'foogallery_sort' );
13 define( 'FOOGALLERY_META_DATASOURCE', 'foogallery_datasource' );
14 define( 'FOOGALLERY_META_DATASOURCE_VALUE', '_foogallery_datasource_value' );
15 define( 'FOOGALLERY_META_DATASOURCE_CACHED_ATTACHMENTS', '_foogallery_datasource_cached_attachments' );
16 define( 'FOOGALLERY_META_POST_USAGE', '_foogallery' );
17 define( 'FOOGALLERY_META_POST_USAGE_CSS', '_foogallery_css' );
18 define( 'FOOGALLERY_META_RETINA', 'foogallery_retina' );
19 define( 'FOOGALLERY_META_CACHE', 'foogallery_cache' );
20 define( 'FOOGALLERY_META_THUMB_DIMENSIONS', 'foogallery_thumb_dimensions' );
21 define( 'FOOGALLERY_META_FORCE_ORIGINAL_THUMBS', 'foogallery_force_original_thumbs' );
22 define( 'FOOGALLERY_META_BLUEPRINT_ENABLED', '_foogallery_master_enabled' );
23 define( 'FOOGALLERY_META_BLUEPRINT_SET', '_foogallery_master_set' );
24 define( 'FOOGALLERY_META_NOTICE', '_foogallery_notice' );
25
26 define( 'FOOGALLERY_ADMIN_MENU_PARENT_SLUG', 'edit.php?post_type=foogallery' );
27 define( 'FOOGALLERY_FOOBOX_PRO_EXTENSION_SLUG', 'foobox' );
28 define( 'FOOGALLERY_FOOBOX_FREE_EXTENSION_SLUG', 'foobox-image-lightbox' );
29 define( 'FOOGALLERY_ACTIVATION_REDIRECT_TRANSIENT_KEY', '_foogallery_activation_redirect' );
30
31 define( 'FOOGALLERY_OPTION_VERSION', 'foogallery-version' );
32 define( 'FOOGALLERY_OPTION_THUMB_TEST', 'foogallery-thumb-test' );
33 define( 'FOOGALLERY_OPTION_CUSTOM_ASSETS', 'foogallery-custom-assets' );
34 define( 'FOOGALLERY_OPTION_DEMO_CONTENT_ATTACHMENTS', 'foogallery_demo_content_attachments' );
35 define( 'FOOGALLERY_OPTION_DEMO_CONTENT_GALLERIES', 'foogallery_demo_content_galleries' );
36 define( 'FOOGALLERY_OPTION_CUSTOM_CSS', 'foogallery-custom-css-update' );
37
38 define( 'FOOGALLERY_ADMIN_MENU_HELP_SLUG', 'foogallery-help' );
39 define( 'FOOGALLERY_ADMIN_MENU_SETTINGS_SLUG', 'foogallery-settings' );
40 define( 'FOOGALLERY_ADMIN_MENU_FEATURES_SLUG', 'foogallery-features' );
41 define( 'FOOGALLERY_ADMIN_MENU_SYSTEMINFO_SLUG', 'foogallery-systeminfo' );
42 define( 'FOOGALLERY_ADMIN_MENU_PRICING_SLUG', 'foogallery-pricing' );
43
44 define( 'FOOGALLERY_ATTACHMENT_TAXONOMY_TAG', 'foogallery_attachment_tag' );
45 define( 'FOOGALLERY_ATTACHMENT_TAXONOMY_CATEGORY', 'foogallery_attachment_category' );
46
47 define( 'FOOGALLERY_PRO_PLAN_STARTER', 'prostarter' );
48 define( 'FOOGALLERY_PRO_PLAN_EXPERT', 'pro' );
49 define( 'FOOGALLERY_PRO_PLAN_COMMERCE', 'commerce' );