This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Somatic Framework

Description

This framework is a collection of classes and functions for handling advanced custom post types cases. With just a few defined arrays, it can create custom post types, taxonomies, their labels, menus, metaboxes, and save routines.

NOTE: this began life as an internal development tool, and as such, does not have much (if any documentation) just yet. It’s not really end-user friendly in its current state. So if you’re not running a site I have built for you personally, you probably don’t need it ??

Installation

Upload, activate, have a drink… but first, install and activate Scribu’s excellent Posts 2 Posts plugin, which this framework requires!

FAQ

Do I need this plugin?

If you’re using a theme or setting up a site I built for you, then very likely, yes…

I updated my call to soma_init_taxonomy() and added new terms, but why aren’t they appearing?

deactivate and reactivate your theme/plugin that contains the function call, as term generation only happens upon activation…

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Somatic Framework” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Somatic Framework” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

1.8.14

  • colorbox update to fix JS errors

1.8.13

  • tweaks for PHP 7.2 compatibility
  • changed parsing and storage of user-provided URLS for media to protocol-relative URL, to avoid mixed HTTP/HTTPS issues

1.8.12

  • no longer using custom menu icons, but the built-in dashicons set, so the custom post type argument “icon_set” is deprecated. Simply provide the argument “menu_icon” in the post type declaration. Documentation https://developer.www.ads-software.com/resource/dashicons/
  • removed hacks for injecting custom post type archives into the Nav Menu editor (not needed anymore, and was breaking editor)

1.8.11

  • FIX: parse_query action hook repaired, had stopped working oddly
  • added demographics tracking line to google analytics code
  • NEW: option to enable built-in page excerpts
  • NEW: option to disable attachment pages (redirecting to parent post)
  • NEW: option to prevent WP from automatically titling new image uploads with the filename
  • more metabox disabling for themeblvd stuff

1.8.10

  • NEW: metabox button “save-back” outputs a save button which immediately redirects back to referring page after saving
  • FIX: upload boxes work again with the new plUpload 2.1 that is bundled with wordpress 3.9

1.8.9

  • NEW: api functions soma_queue_notice() and soma_completion_notice(). stores and displays admin notices in the core wp “message box” format.
  • FIX: saving framework options from the advanced tab was clearing all options. now all such options are on the same tab. renamed declarations tab > reports
  • cleaned up various css issues with metabox attachment items
  • added “uploaded X ago” to file attachment display
  • added google analytics tracking ID option field and javascript code output

1.8.8

  • NEW: action hook soma_metabox_data_init, provides better location to hook all usage of soma_metabox_data() when declaring metabox field arrays. * soma_metabox_data_init passes $post as an argument, so can finally use functions to provide data to field arguments!
  • NOTE: you should never use “admin_init” as the hook for soma_metabox_data() anymore. Fires too early, no $post data possible
  • NEW: field type “button”, outputs clicker buttons in the field row, can pass label and URL (or show a submit button)
  • audio shortcodes in fields now include ID of the attachment for more data than just the file src
  • radio field types now show emphasis on the selected radio label

1.8.7

  • NEW: option field for TypeKit ID, sets up javascript for you
  • FIX: finally solved the issue with post titles and slugs not getting saved when custom post type doesn’t “support” title
  • FIX: deleting content from core data fields actually clears the saved field now
  • when using custom post title fields (not wp’s title field), and field is left blank, title is changed to “Untitled”
  • new CPT icons
  • NEW: filter for custom metabox field data, “soma_field_data_[id]”. Allows manipulation of $meta right before fields get rendered
  • readonly field type text gets run thru the_content filter, so formatting actually works

1.8.6

  • Multi-Site support. Activation hook accomodates network-wide scenario.
  • fully private site option. forces login on front-end to view anything at all.
  • disable RSS feeds option
  • NEW: filter ‘soma_js_vars’ allows changes/additions to the variables passed to javascript
  • NEW: when debug active, current template path is shown in admin bar

1.8.5

  • NEW: somaRequest class and soma_request_[*] dynamic action hook — works much like wp_ajax_ hooks, but without the ajax. Triggered with the ‘soma_request’ query_var or as simple URL query params via $_GET. Very handy for export/download functions to fire without leaving current page!
  • NEW: somaFunctions::build_request_link() creates link to trigger soma_request_[*] action hook and pass along data (string or array)
  • all functionality of the old somaDownload class is now incorporated in an soma_request_legacy-download action hook (though the old “download” query var remains for backwards compatibility)

1.8.4

  • NEW: api function soma_fetch_file() returns bunch of really handy info about an attachment’s file, including download link
  • swapped order of params on soma_select_number_generator() to make including ‘zero’ second

1.8.3

  • NEW: custom post type icons integrated – can now be picked with the arg “icon_set” (makes it easier to place soma-config.php in mu-plugins folder, as no additional images have to be included)
  • CHANGE: soma_init_type arg “icons” is now “custom_icon_path”, to differentiate from built-in icon sets (all old configs will need to be updated, or use the new integrated sets)
  • gallery field items now show less attachment meta fields for filetypes other than images
  • sanitizing form field values less, allowing for decimals
  • better handling of mime-type file icons

1.8.2

  • FIX: action and filter hooks in somaSave class with same name resulted in nuked data upon save
  • NEW: filter hook to construct save data in special field cases: “soma_field_new_save_data”
  • FIX: finally cracked the issue of custom fields saving core column data and dealing with the quirks of tinymce ID limitations
  • cleaned up undefined indexes and variables

1.8.1

  • FIX: severe bug that prevented saving any changes from a wp_editor() richtext field or core post data columns
  • NOTE: when you spawn a richtext or html field type, the ID you give should only consist of lowercase letters, nothing else. A function has been included to provide backwards compatibility with older configs where underscores or dashes were used in the ID.

1.8

  • FIX: finally using wp_update_post() instead of $wpdb->update for core data, so now text gets sanitized and filtered as normal before saving.
  • FIX: major bugs in metabox text saving, resulting in escaped backslash quotes and more issues.
  • FIX: safe ID’s now generated when using wp_editor(), as it’s pretty fussy about ID’s. You can use anything you want now without setting it off
  • FIX: finally isolated saving of core metabox data types thru custom ID’s, so they don’t get hijacked by core save routines

1.7.10

  • NEW: gallery field of attachments now supports editing of each attachment’s title, caption, description and changing sort order!
  • FIX: colorbox overlays in admin have maxheight and maxwidth set
  • FIX: soma-public-jquery.js was failing and halting js when front-end colorbox was not enabled
  • NEW: sort_group_type -> ancestors allows Sort Order page via post_parent grouping (only deals with top-level parents)
  • FIX: saving post_title fields now also updates the post slug to match
  • FIX: more accurate use of wp_localize_script

1.7.9

  • FIX: soma_fetch_image was failing to return image sizes if none were generated because original was too small

1.7.8

  • FIX: errors using wp_register_style
  • FIX: broken styling of save-changes buttons
  • UPDATE: jquery UI smoothness theme updated to 1.9.2, removed local jQuery UI datepicker, as it’s in wp-core
  • UPDATE: jquery UI timepicker addon to 1.2.1
  • NOTE: for ‘upload-files’ field types, the ID string for that field cannot contain a dash, or it breaks plupload js
  • added more filetype icons
  • metabox css tweaks
  • finally defined default args for metabox data and field arrays
  • more undefined index cleanup…
  • NEW: each metabox field can have “restrict” parameter to hide from non-staff level users
  • FIX: metabox jquery errors
  • started moving soma_metabox_generator() to be useful outside of post editor
  • modified soma_plupload.js to be useful outside of the post editor
  • metabox field data type “user” is gone. Use “core” instead and “post_author” as the field ID
  • metabox select fields now don’t consider 0 to be “empty” if referring to post_parent
  • framework option for enabling Colorbox on front-end posts now automatically makes image links lightboxed
  • page-attributes metabox is no longer forced to show when post type is hierarchical (might want to use custom fields instead)
  • FIX: soma_singular_term() parameters fixed, can also fetch term_id
  • NEW: metabox field type “radio-horizontal” displays radio buttons… horizontally
  • NEW: can specify (per customposttype args or via post_meta key) “delete_attachments_upon_deletion” – to have all media attachments (and their files) specifically attached to a post deleted when that post gets deleted. I call it the “ritual suicide” option…

1.7.7

  • NEW action hook: soma_init – allows hooking init but only after Somatic Framework loads. Otherwise other plugins trying to register custom types would fail if they loaded before this one.
  • FIX: major bug with hierarchical post types not supporting anything
  • NEW functions fetch_sub_pages() and fetch_root_pages() for dealing with hierarchical post types
  • fixed stray undefined indexes…
  • FIX: deep bug that caused hierarchical CPTs to return 404 on child pages

1.7.6

  • NEW: option to enable custom link redirects via /go/[slug]. Use the filter ‘soma_go_redirect_codes’ to add a new slug/url pair. remember to flush rewrite rules
  • NEW: api soma_go_link(), returns HTML link code for an existing go code and link text
  • NEW: system for dynamically showing/hiding certain metabox field rows based on a list selection
  • field argument ‘reveal-control’ – should be assigned only to a ‘radio’ or ‘select’ field type (and only one per page)
  • field argument ‘reveal-group’ – array of names corresponding with the possible values of the reveal-control selector. If the current value is in the array, that field is shown, otherwise hidden
  • changes to table structure for metabox field rows – now descriptions and extra options are all within the main field row, so they can all be hidden together
  • FIX: taxonomy dropdown selectors can finally use “Create New” and have a new term created upon save! just use soma_select_taxonomy_terms(‘mytaxonomy’, true) to generate the field ‘options’ array

1.7.5

  • FIX: metabox field type ‘checkbox-single’ (now known as ‘toggle’) finally works as expected! You can uncheck things now ??
  • NEW: soma_fetch_image(), soma_asset_meta(), soma_attachments(), soma_fetch_image(), soma_singular_term() now accept either a post object or post ID (integer or string)
  • improved the save hooks to fire only when dealing with our custom fields
  • thumbnail columns now automatically adjust width according to thumbnail options (max width 200px)
  • FIX: finally overhauled somaSave and somaMetaboxes classes to more accurately handle saving and retrieving multiple items vs. single items
  • NOTE: when checkboxes are desired (one or more), use the new field type “checkbox” and pass options array. the old ‘checkbox-single’ type is deprecated in favor of ‘toggle’ – but to be used only with meta data (not taxonomy, etc)

1.7.4

  • NEW api soma_attachments(), wrapper for get_posts() returns array of attached post objects, minus the featured image (unless specified)
  • NEW api soma_fetch_image(), basically just renamed soma_featured_image() [still around for backwards compatibility] – reflects its ability to retrieve image data for any attachment, not just featured images
  • somaFunctions::fetch_attached_media() now takes mime-type argument and an optional argument to exclude the featured image
  • metabox field type “attachment” is now “gallery” (still with data of “attachment”). Shows all attached images or audio or video (via mediaelement)
  • metabox “gallery” field type now excludes the featured image automatically, allowing fully independent featured image and gallery attachment uploaders
  • metabox field argument for data of “attachment” can also include “mime-type” for filtering retrieved attachments by media type
  • NOTE: metabox field “upload-images” has been folded into “upload-files”, which has abandoned the old html file selector input model, and now uses the hot new plUpload system.
  • NEW: metabox field “upload-files” can now handle audio as well as images!
  • old field type for featured image plUpload boxes, “upload-featured”, is now deprecated: use “upload-files”, with ‘data’ arg set to “featured”
  • FIX: multiple plUpload boxes on the same page now behave!
  • FIX: soma_fetch_image() was failing certain specific requests, now returns original full file URL if the requested size is not available (eg: original pic was smaller than site’s “large” setting)
  • FIX: soma_fetch_image() now includes custom image sizes when available
  • NEW: soma_fetch_image() now returns title, description, caption, and alt text
  • NOTE: this means the key for the thumbnail image is now “thumbnail” (as returned by wp), and not “thumb”, as it had been hardcoded before. Your old calls to soma_featured_image() for thumbs are likely broken now
  • NOTE: the missing image placeholder is now one single size image, so make sure you manually indicate the width and height in your image tags (or else they’ll all display at 512px)
  • options to hide new Thesis 2.0 metaboxes
  • cleaned up all undefined index warnings
  • FIX: custom post type update messages were not being produced properly…
  • FIX: media uploader metabox field type works again
  • improvements to the styling and behavior of the sorting pages
  • improvements to the somaUploadField class
  • NOTE: any old metabox fields dealing with attachments should probably be revisited…

1.7.3

  • FIX save routines on external media and images don’t die anymore if empty
  • NEW metabox field: “link”
  • metabox CSS tweaks
  • cleaned up some deprecated junk in manage_posts_columns calls
  • NEW api function soma_get_excerpt() for fetching existing post_excerpt or manually creating one from post_content via post ID or object
  • fixed warning with lack of metabox definitions. Now, in soma_init_type args, you can declare blank_slate = true to remove all core wp metaboxes (in effect, declaring no post_type_support for title, editor, author, etc.). This replaces the old behavior of passing an empty array to the “supports” arg, which didn’t work well when parsing default args. It also means the missing metabox warning will only appear if the post type doesn’t support any core wp boxes.

1.7.2

  • FIX default behavior to not always show the toolbar on the front end [facepalm]
  • NEW users have toolbar off by default
  • NEW option to force toolbar to show for everyone, everywhere
  • NEW soma_option for setting the Login page logo
  • custom login logos should be transparent PNG of 320×70 exactly, with content aligned bottom center for best results
  • stopped hiding user profile fields
  • now using transients with soma_set_option(), allowing caching, reducing DB load when calling soma_set_option() on every page load
  • option to force admin bar only applies to logged in users
  • $_GET and $_POST are now passed to JS via soma_vars

1.7.1

  • fixed stripslashes problem with quotes in text fields
  • kint debug aborts if output buffering not on
  • login page indicator if WPEngine

1.7

  • NEW image uploader metabox field type. Uses WP included plUpload for drag-n-drop, queued uploads, creates attachments upon saving. Can also be used for featured images.
  • new option to disable screen options tab

1.6.9

  • disabled privileges check in save_asset() that conflicted with paypal digital goods checkout
  • fixed bug that output junk to the login screen
  • fixed column listing error when no columns are defined in a CPT
  • changed save_asset() to not fire when quickedit is used
  • changed save_asset() to not wipe out our custom defined metadata and taxonomies when other forms/plugins call save_post
  • fixed problem where quickedit would fail to complete because of jQuery error (when custom columns were in use) – NOTE: after quickedit save updates, it won’t show the custom columns – refresh the list page to see custom columns again

1.6.8

  • removed hook that fired on user profile update, as it got stuck in a fatal infinite loop with any other plugin that tried to update a user…
  • changed SOMA_URL constant (and all others built on it) to use https:// scheme when in use

1.6.7

  • fixed error in disabling paging for custom taxonomies defined elsewhere…
  • updated placeholder images
  • added flag to custom post type definitions to identify which CPT’s have been defined through this framework
  • Admin CSS improvements

1.6.6

  • FIX: removed undefined metabox errors for built-in post types
  • NOTE: for soma_debug output, php.ini must be configured with “output_buffering” set to ON (not a number like 4096), or you will see a bunch of “Cannot modify header information” warnings coming from Kint….
  • NEW: option to enable Colorbox JS on front-end
  • metabox field save button can now be set to always change post status to “publish”
  • FIX: fatal SQL error in the posts_orderby filter when order_by wasn’t defined (default was set to date instead of post_date)
  • NOTE: when defining sort_by values for CPT’s, do not use the WP_Query values for ‘orderby’ – must use actual wp_posts column names (like post_title instead of just title)

1.6.5

  • NEW: soma_init_type() arguments “sort_by” (post_date, post_title, post_author, menu_order, meta_value) and “sort_order” (asc, desc) to override the default query filters
  • REMOVED: soma_init_type() argument “sortable” is gone – replace with new “sort_by”
  • NOTE: must modify all calls to soma_init_type()!
  • moved all filtering of parse_query into somaTypes class
  • fixed various “missing index” errors
  • CHANGE: soma_select_items() second argument is now an array of any arguments you would pass to get_posts()

1.6.4

  • soma_featured_image now handles custom image size labels (from add_image_size) via the $specific argument
  • new metabox field: p2p-select – allows assigning single p2p relationship via dropdown (warning: must hide the core p2p admin box if you use these fields! there’s a conflict in the save routines)
  • new metabox field: p2p-multi – allows assigning multiple p2p relationships via checkboxes
  • can now use soma_metabox_data() with core post and page types
  • updated jqueryUI timepicker to 0.9.9
  • timepicker metabox type now actually works…

1.6.3

  • new Sort Order grouping: p2p, give it a P2P connection type name (ex: sortable = true, sort_group_type = p2p, sort_group_slug = albums-tracks)
  • new save action hook: soma_save_asset
  • admin css tweaks
  • metabox field type p2p-thumbs is now p2p-objects

1.6.2

  • expanded list of metaboxes to disable to include core WP ones
  • new ability to specify grouping of cpt objects on the Sort Order page, if sorting is enabled (ex: sortable = true, sort_group_type = taxonomy, sort_group_slug = genres)
  • fixed css bug in clicker buttons
  • fixed query parsing on sortable post types – now the query is always filtered to sort the query output by menu_order ASC (as was intended) – so now admin and front-end post listings reflect the proper order!
  • new option to disable paging (list all items instead) per post type
  • moved all custom somatic framework arguments for register_post_type within the core arguments array, so they’re stored as part of the post type object and can be retrieved with get_queried_object()
  • NOTE: make sure you’ve updated any calls to soma_init_type, so that the “sortable”, “create_nav_item”, etc args are passed in the main “args” array!

1.6.1

  • disabling admin menus also gets rid of the +New admin bar item
  • using checked() on html forms now
  • better handling of missing metabox config data…
  • tabs on the option page
  • subtle tweaks to login page
  • using wp_enqueue_scripts() globally now
  • favicon set and display on options page
  • options page is now top-level, with subpages
  • import/export of framework options
  • fixed menu detection with soma_init_type argument “create_nav_item”
  • custom post types and taxonomies now actually display list metaboxes in Appearance->Menus if “show_in_nav_menus” arg is true (rather than simply being available to show via Screen Options, but unchecked by default)

1.6

  • NEW somatic_framework_options settings container (serialized array of default options)
  • NEW api function: soma_set_option() – allows easy manipulation of somatic_framework_options in wp_options table
  • NEW global var: $soma_options – quick checking of current options with DB query
  • NEW settings page to toggle debug mode, plugin dependencies, dashboard widgets, bottom admin bar, editor metaboxes, admin menus, and more
  • NEW daily cron task, use action hook ‘soma_daily_event’
  • NEW csv export class, included in trunk but not ready for prime time
  • NEW plugin checks for minimum wordpress version, aborts otherwise…
  • NEW for CPT’s with show_in_nav_menu = true, an item will be available at the top of the “view all” tab in the CPT panel of Appearance->Menus. Adding that to the menu will create a custom nav menu item configured to display CPT archives
  • NEW arg ‘create_nav_item’ for soma_init_type() – replaces the ‘navbar’ arg
  • CHANGE: custom post type nav items – instead of filtering the nav menu output and tacking our CPT’s on, we’re actually creating real nav menu items in the DB. Then you can go to Appearance->Menus and re-order that item like any other
  • REMOVED filter: soma_custom_type_nav_position, as the CPT nav items aren’t being generated by somaTypes::custom_type_nav() anymore
  • DEPRECATED: old options soma_meta_prefix, soma_meta_serialize, soma_debug – store your values in the new somatic_framework_options settings container. ex: update_option(‘somatic_framework_options’, array(‘meta_prefix’, ‘_foo’));
  • CHANGE: keycommand for showing/hiding the debug bar panels is now “\” for minimized and alt+”\” for maximized view
  • sexy settings link right on the plugins page!
  • improved the example php config templates
  • better handling of missing metabox config data in add_boxes()
  • independent handling of current nav menu item classes with fix_nav_classes()

1.5.1

  • fixed fatal error in checking for Kint when debug mode is enabled…

1.5

  • included the awesome Kint PHP debugger v.32 (https://code.google.com/p/kint/)
  • integration with the Debug Bar plugin for maximum awesomeness (https://www.ads-software.com/extend/plugins/debug-bar/)
  • when Debug Bar is installed, hit the “;” or “‘” keys to toggle the debug panel in maximized or partial view
  • NEW API function: soma_dump() – outputs data to screen (or to the Debug Bar panel, much nicer!)
  • re-enabled admin bar on front-end (had been disabled globally, overriding user options)
  • NEW option: soma_debug – controls inclusion of Kint classes, Debug Bar hooks, and various debugging things. Defaults to off.
  • NEW js and css for injection on the public side of wordpress
  • cleaned up all PHP Notice warnings! go ahead and turn on WP_DEBUG…

1.4.4

  • corrected critical bug introduced by 1.4.3 fixes – save routines now work again…

1.4.3

  • fixed unnecessary suicide when trying to save a post/page if no custom metabox definitions exist yet…
  • now fully compliant with WP guidelines! ??

1.4.2

  • fixed unreliable usage of isset() for array keys in soma_init_type. Wasn’t registering user parameters for navbar and sortable properly [facepalm]
  • NEW somaFunctions::is_blank() for checking whether variable/array key is actually blank or just set to “0” or false

1.4.1

  • soma_external_media() now supports SoundCloud URLs!
  • fixed inconsistencies with metabox handling of media types. Make sure data=attachment and type=media
  • fixed problem with external media metabox colorbox iframes (no dimensions were given)
  • fixed colorbox trigger play icon to be more reliable
  • mediaelement.js replaces jPlayer when displaying media attachments in admin metaboxes (though at the moment requires wp plugin https://www.ads-software.com/extend/plugins/media-element-html5-video-and-audio-player/)

1.4

  • NEW metabox field type: external_media – Text field that accepts vimeo or youtube URLs, and fetches that video’s metadata via each site’s public API. Also saves that response in post_meta for quicker retrieval.
  • NEW metabox field type: external_image – Text field that accepts image URL, and can import the image as an attachment, also setting imported image as Featured Image
  • NEW API function: soma_external_media() – parses URL from either youtube or vimeo, returns an array with basic metadata, including ID, title, thumbnails – optionally imports source image to local library and sets the post_thumbnail!. NOTE: desired video must not be private, password-protected, or have embedding disabled by the owner!
  • NEW internal function: somaFunctions::attach_external_image() – sideloads an external image URL into the wordpress media library and attaches to a post
  • updated colorbox.js to 1.3.19
  • fixed broken url for jquery UI smoothness css
  • fixed link output in custom_type_nav() for when the custom post type slug includes variables for taxonomy permalinks
  • NEW filter: soma_custom_type_nav_position, for determining with the nav items that are automatically generated for custom post types are placed before or after the existing menu items. Defaults to “after” (return “before” via filter to change)
  • fixed soma_init_type ignoring navbar=false and inserting menu item anyway
  • fixed broken css on Sort Order pages
  • consolidated metabox description row code (too much duplication)
  • a smattering of other tweaks, enhancements, and bugfixes..

1.3.2

  • admin footer text output
  • fixed numeric field input to allow colon (:)

1.3.1

  • fixed problem with setting the option soma_meta_serialize, which needs to be passed 0 or 1, not boolean true or false (false resulted in empty option_value, which broke everything)
  • NOTE: when using soma_asset_meta(), don’t include the prefix when specifying the post_meta key! it gets added automatically. Just use the exact ID you gave when declaring the field in soma_metabox_data()
  • NEW API function: soma_singular_term() for retrieving the term of a taxonomy that is meant to have only one value at a time.
  • NEW documentation – example PHP code in the doc folder, to help demonstrate how to use the somatic framework

1.3

  • added ‘navbar’ argument to soma_init_type to choose whether to display a nav menu item to the primary navbar for custom post types [default: true]
  • added ‘sortable’ argument to soma_init_type to choose whether to make items manually sortable (instead of automatically sorting by date) [default: false]
  • post meta keys are now stored individually by default. If you want to store all metadata per post as a serialized array in a single key, you need to set the option ‘soma_meta_serialize’ to true
  • the default post meta key name prefix is “_soma” (what you give as the ID for a metabox field is added to it). If you want a custom prefix, you need to set the option ‘soma_meta_prefix’ to “_YOUR_PREFIX”
  • admin type sorting page rows fit content better
  • NEW API function: soma_asset_meta() for manipulating post_meta (abstracts the core functions to better handle serialization cases)
  • NEW API function: soma_featured_image() for retrieving everything you could possibly need to know about the featured image (post thumbnail)
  • in edit listing columns, the checkbox column is always included now, so don’t need to pass it in soma_init_type column array
  • fixed a query parsing filter that was forcing everything to order by menu_order ASC, no matter what…
  • had forgotten to actually enqueue jquery UI datepicker and slider js and css this whole time
  • added button to clear date values when using datepicker

1.2.1

  • revised somaFunctions::fetch_connected_items() to handle p2p plugin evolution
  • note: must pass the p2p type ID and not the post_type anymore! Please revise all calls to fetch_connected_items()!
  • When passing “p2p” field data with soma_metabox_data(), you must also pass “p2pname” for the unique registered p2p connection ID and “type” (p2p-list or p2p-thumb) for output
  • cleaned up save routines, stripslashes bugs
  • metabox type “richtext” now uses the new WP3.3 wp_editor() function (multiple rich editors possible, yay!)
  • NEW metabox type “html” uses the new WP3.3 wp_editor() function, but without the visual editor
  • metabox type “editor” removed – use “richtext” instead with ID of “post_content” and data of “core” if you’re trying to replace the core post editor (just make sure to NOT include “editor” in the post type support!)
  • some css tweaks in the editor to keep up with WP3.3
  • added action hook “soma_column_data” to inject custom post type column data output

1.2

  • added listings for public custom post types and taxonomies to the Right Now dashboard widget
  • added ability to pick future years (+10) in the basic date picker

1.1.1

  • bugfix: soma_metabox_data was expecting unecessary array keys
  • bugfix: legacy date selectors couldn’t handle mysqldate format
  • bugfix: somaFunctions::fetch_featured_image() couldn’t handle when wp uploads were organized in year-month folders. Also couldn’t handle when all the sizes (thumb, medium, full) didn’t exist… ugh…

1.1

  • created public functions in api.php to initialize things like custom post type, taxonomy, terms, and custom metabox data
  • added flush_rewrite_rules to plugin activation
  • added contextual help customization per CPT
  • generate custom icon paths automatically based on CPT slug, just provide URL to directory where they’re located, image name scheme “slug-menu-icon.png”
  • limit taxonomy term insertion to plugin or theme activation (two scenarios where soma_init_taxonomy could be called)

1.0

  • first public release on www.ads-software.com

0.6

  • added jPlayer for metaboxes – meta type Audio or Video
  • asset_meta() can be set to serialize or not post_meta via somaMetaboxes::$meta_serialize var (default true), can also be overridden via function params
  • somaMetaboxes::$meta_prefix var for themes to override
  • added arg to init_taxonomy to automatically hide metaboxes on custom taxonomies

0.5

  • added file upload field type
  • added attachment gallery display field type
  • added colorbox lightbox viewing for images, pdf, doc, xls, ppt (with google doc iframe viewer)
  • added somaDownload class for creating links to download attachments directly
  • added jqueryUI datepicker and timepicker

0.4

  • added “help” metabox field type, displaying the text across both table columns
  • fixed ridiculous metabox field table layout issues
  • fixed saving of incomplete “date” fields
  • included soma-admin-jquery.js
  • NEW fetch_index function for dealing with $_GET and $_POST

0.3

  • purged tons of outdated/unused code from other projects
  • changed save_asset() for core data types to use wp_update_post instead of $wpdb->update
  • NEW metabox field type: richtext (with tinymce)
  • NEW functions for fetching userdata
  • individual metabox save buttons

0.2

  • First release
  • added somaTypes class, handling generation of custom post types, taxonomies, and terms

0.1

  • Code documentation is crude, with comments everywhere. Will standardize docs soon…
  • includes somaFunctions, somaMetaboxes, somaSave, and somaSorter classes
Malaking puwang ng bass splash review Bakit pinapayagan ng pamahalaan ang operasyon ng mga monopolyo How to play Super Ace jili Nice88 club withdrawal Esball online casino com registration Nuebe Gaming legit HB888 Casino real money Casino bonus no deposit free spins 2021 12 Titans Greek mythology online slot machines for real money free play Mines jili login download Allin88 ph login Casino Guru gratis Vegas World login Apanalo online game no deposit bonus 77ph Himala himala wikipedia 啶掂啷嵿ぐ啶ぞ啶?啶曕啶ぞ 啶灌? 啶す 啶囙い啶ㄠぞ 啶栢い啶班え啶距 啶曕啶啶?啶灌啶むぞ 啶灌? Mnl168 online casino register philippines login Bally slot machine value Jili live casino no deposit bonus Gcash gambling reddit philippines tamabetcasino Jili magic lamp app Mwplay888 net download for android Vegas Live Slots hack APK Clive and jill sidequest ffxvi Jiliasia online casino Online bingo jili withdrawal Chili for a crowd Silver Palate Jili168 register philippines Jili mk casino Jili cc download for android Habanero online casino games philippines Philucky withdrawal format 377 jili login register philippines Jili slots download Bsa387 login password Ginto Casino link 49jili login to my account login philippines app Royal777 casino no deposit bonus 8 juli feiertag wikipedia Ano ang mga flash game sa hollywoodbets app download Game of Thrones Slots referral code Igt address manila Zynga slots free coins cheat android Jilicash real money withdrawal Paano gumagana ang mga online slot machine login Ezwin online casino philippines Peso88 login register Jili kaganapan login register Winning plus 8 login philippines masuwerteng iikot ang mga nakakalokang slot 123jili app Login casino games online unblocked Transaction password USDT Baccarat games online real money Appointment slots vs appointment schedule quick hit slots commercial actor Multiclass spell slots table Slot schedule template 啶灌啶曕啶?啶曕ぞ 啶い啷嵿い啶?啶曕た啶むえ啶?啶灌啶むぞ 啶灌 Jili jackpot 777 download for android latest version Million 888 casino login register Tongits go apk unlimited money latest version Pinakamahusay na jili slot game download YE7 Download App BET99 Quebec Free 100 online casino registration facebook page 2021 slots no deposit bonus Online gambling philippines real money Jilibet casino login philippines Super Royal 777 Slots go casino login Register Youtube ng slots today Peso 888 apk Mini777 register download PG gaming casino login Wizard of Oz free coins gamehunters Philippine News today live 247Spin free 100 spin the wizard of oz slots free coins E2 jili casino login Konjac jelly Japan Big bet review korean Online casino Philippines News 7 Juli 2024 memperingati Hari Apa Jili 747 casino login Winph 777 login philippines app benefits of online casino games Wild aces online casino real money Mwcash88 Bonus hunter cc email Maduna clan names FF16 change party members Online casino games real money free spins no deposit Dbx casino real money philippines Okada online casino apk latest version Skype Download for PC Jilibet donnalyn login Register online casino 777 Pub download old version Spaghetti Jollibee price Jili no 1 login register Jiliasia app apk Super slots apk old version 646 casino login Register Philippines Listahan ng laro ng skillz login Totoong online pokies philippines release the kraken clash of the titans (1981) Casinos online real money philippines Phil168 APK Download Chumba Casino login Www 49 jili casino login password Fb jili casino login download apk Jlbet slot login Jili 777 lucky slot login register philippines apk Pagcor logo meaning Hard Rock online casino login 77ph com login password download Ano ang gamot sa mataas ang sugar Online casino download APK Geely Emgrand price Philippines BLBET Tapwin 2024 download apk Lodi 646 casino login ph Royal558 download Abc jili register philippines download LVJILI login Royal fishing jili download for android Free60 casino philippines Kk jili libre 58 real money download PHFUN login Nice88 download free ios Best penny slot machines to play at the casino for beginners portal.pagcor.ph sitemap online casino games no deposit bonus Unlapi AAA Jili login Bongobongo ug Casino Jili x yb download apk do 888 casino register Cash Rush slots 777 apk latest version Free online casino games win real money no deposit Philippines Fortune 888 login password Slots casino login no deposit bonus 49 jili time philippines download Nuebe register login Jili fishing game download free Win99 casino philippines Bingo Super Star download 55bmw win withdrawal Jili kilig login download Superball Keno online Hacksaw slots real money Pagcor address philippines 188 jili demo account hack Vegas online casino games free play Jili 49 net casino login philippines 777 jili jackpot apk latest version Fc slot demo free download Jili under maintenance today download android 3 patti slots patti online play Jili bingo download for android Smbet register philippines Osm jili register mobile number philippines MWGAMING 188 register Nuebe agent login philippines Online casino color games philippines Is Winford Casino open today Jili update today WK777 slot Jili casino review philippines slotomania online Lucky jili slots login register mobile 188 jili casino login download philippines Baccarat game strategy reddit Jili22 promotion How to withdraw in jili slot online 1xslots login Mnl168 online casino register philippines login Paano maglaro ng slot gambling login casino for real money online Best online casino Philippines reddit Jili deposit 50 withdrawal limit Nextbet philippines registration 168jili login registration Www royal888casino net register Double Win Withdrawal App Fisheries department officials 777 Lucky JILI Slots Casino APK download Nz online casino games real money 888php withdrawal Jili mines predictor apk Online casino jackpot slots free play yy777cam Jili one login download mainstream records lee young-ji 77ph com download free 49 jili years login register Jili slot club jackpot 777 download free money philippines Www betvisa games app 1888 jili casino withdrawal online July 10 religious holiday Labet88 login registration 2021 Osm jili casino online games philippines download Money 888 login download Empire slot machine download Ireland online casino games free play Kk jili casino login registration download apk 1000 free games to play with friends Poseidon god son Jili lucky slot app download Big baller club casino login registration philippines Fish Hunter - Shooting Fish Pnp 888 jili slot game login app Limbo game download for PC Highly Compressed Jili jackpot 777 download apk ios slot machine free games free spins deposit bonus Jackpot meter app for android Instant withdrawal betting app Dama N.V. casinos no deposit Bonus Joy 7 casino login free chips Eliakim Sadoki Hadaa Ya Walimwengu Gemdisco login 08 jili register app Jollibee slot casino login philippines register online Award winning chili recipe Allrecipes Helens Slot APK old version Mga kahinaan ng mga pragmatic slot machine login Jili pulang sobre register online Jili777 free 150 no deposit bonus Philippines Jili no 1 com withdrawal philippines Slot online game free real money Jackpot joker jili demo free download Best pg slot game free no download Wagi77 login Philippines Rich9 pinakamainit na laro login Fortune gaming88 login philippines Royal Slot Login Fun facts about July 19th Geely gx3 fiche technique philippines IND slots APK yono Ox jili slot withdrawal What happened on October 7 Al Jazeera 777 pub com login download Nice88 app 99 Fortune Casino login Register Tmtplay888 Jiliplay login download Love jili vip login password 888bet registration online Dragon vs Tiger hack apk Lucky JILI slots login register Kpl casino Online casino game for real money free play 777pub open now promo Video poker jacks or better strategy chart Jili 365 casino login register philippines no deposit bonus download Free slots com party bonus Animal Husbandry Minister Bihar list 188 JILI casino login registration Philippines Anuani ya katibu tawala mkoa wa dar es salaam NetBet registration Fg777 register philippines 90 jili live login download One slot game download Agent GEMDISCO Jili 999 com withdrawal Jilimk casino log in no deposit bonus tg777 login register philippines Pagcor login philippines List of licensed POGO in Philippines 2023 How many cannabinoid receptors are there in the human body Q25 jili download ios Ff777 vip login Jili 49 dot com registration philippines Ano ang speed roulette review Ph joy vip login registration philippines 4 ram slots which ones to use Mga puwang ng video youtube Jackpot Party Instagram free coins www.free facebook.com log in Betvisa download for android 49jili pogcor Betso888 login download Jollibee slot login Fruit Theme Birthday Party Wjslot claim form Nextbet Live Casino Lotto go Jili volatility calculator philippines Teenage Kraken Salish Matter Lucky 777 online casino login philippines Slotomania 777 casino real money Mega ace jili demo apk latest version Falcon Play customer service www.666.com games Bingo Jili PH Slots earning app real money no deposit Canara Bank Internet banking PIN generation 8K8 vip login Philippines No 1 jili app for android free download Gonzo's Quest max win 9 Pots of Gold land and win What does Mr Mike Slots do for a living Jili fc slot real money no deposit bonus Ph macao jili register download limbo apk + obb download Swcup6 net live login Register philippines Free slots 8888 no deposit philippines Jili tadhana slots download free Free casino slots 3 lines no download Jili okbet real money philippines Jili88 ph com register login password Slots earning app real money download Jili apps download free for android ios Kurdish traditional dress Labet88 online casino Ez jili telegram ios 94067 water heater door installation Real Boxing 3 download Best casino online Wishbone Games Nextbet login mobile registration Jili no 2 login no deposit bonus Poder Judicial Superace88 club login registration link Triple match 3d master mod apk Sino ang cowboy slots wife Jili 5678 casino login poker star Apanalo casino app login KK JILI casino login app apk Www gibson casino www gibsoncasino com login APEX slot download Best free slot machines play for free no deposit Mining Telegram group link Jili t7 real money Jili369 app download Progressive jackpot meter link Lampara ng genie philippines Best free slots with bonus Asia JILI casino register 888 ladies slots login UNO Spin Millionaire Dimm slots reddit King game app download apk Yy777 index login No deposit slots real money Yeriko by injili bora choir session 49 jili road register philippines Jili slot 777 login register online no deposit bonus philippines 啶啶?啶曕 啶啶班が啶?啶曕ぐ啶ㄠ 啶曕 啶夃お啶距く GGBet welcome bonus Is the 49ers coach a Christian Sino ang may akda ng medusa Ace Super ph casino Login games.747 games.ph/launchgame open now Tiktok video Zili 7 Gold Fruits slot Peraplay APK download Labet88 register philippines app Love jili vip login philippines Slots download free Jili slot jackpot login register Junglee Rummy APK Paddy power virtue Welke dag is het vandaag in belgie Nn777 login philippines app Pb777 login id and password free Sweet Bonanza free spins no deposit Online slots casino 888 real money no deposit online casino games real money Osm jili casino Megaways slots login Konami free slots no download Big Bass Hold and Spinner Megaways demo Jili 888 register Jili mines download free Best free video poker no download fishing slot casino - free 100 000 coins Jili22 NEW com register Big Bass Bonanza Geely subsidiaries in philippines State fish of bihar in english Game of Thrones Slots Casino free coins hack Lucky jili casino login registration philippines apk Mga laro ng slot na nagbabayad ng totoong pera apk Niceph casino real money Fortune Dragon PG slot demo Reference generator Jili88ph net register download FG7777 Jili super win apk best online casino games to win money Bagong jili register app 777sm vip login Jl bet slot register Jili casino sign up bonus no deposit philippines Phlove Casino Login Register Jili slot online real money Ez jili code free download Cannabinoids structure How does Dragon Link slot work 188 jili casino download free Which casino has the most winners in Vegas Goldfish slots apk Fisheries, Bihar gov in Medusa megaways real money Mwcash88 casino login Best time to play crazy time reddit Voslot jili register philippines Ang tao ba ay nagmula sa unggoy PHL63 login register Demo Jili Golden Empire Download app and get bonus Pogibet free 100 philippines 22FUN APK Lucky JILI Casino login registration Win win Game zambia online app download Win100 com casino group win100 originals win100 originals register Mlbb Win Rate Calculator APK Mi777 casino login philippines register Do888 casino login no deposit bonus Jill Scott net worth 8 jili slot download for android 55X Casino Login Register Philippines Ug777 app download apk for android 94067 water heater door replacement Loveph casino Tianjin University of Science and Technology How to play Fortune Gems online Earn money online Philippines legit Xo jili com register philippines Cruise casino in Goa Play slot machines for free online no deposit Is golden Cowboy good tds online casino games volatility Tmtplay casino login register mobile 啶戉え啶侧ぞ啶囙え 啶曕啶膏啶ㄠ 啶椸啶?啶曕啶膏 啶栢啶侧啶? EZJILI Login Register Game room online casino games real money Casino dealer Reddit ph Slots jackpot meter philippines app Pldt 777 real money withdrawal Jackpot World redeem code free 2024 Jilibay free 68 no deposit bonus Bet88 ph app download for android OKBet rewards app Julie emergency contraception reviews 啶ぞ啶椸啶?啶う啶侧え啷?啶曕ぞ 啶膏す啶?啶夃お啶距く Mega win login Best online casino games real money app Jiliasia ace download Jili 178 real money app Pag-IBIG membership Double DaVinci Diamonds free slot game jili 711 Slot virtual real money free Jili tongits withdrawal limit Okbet casino login philippines download Sabong derby 2023 Full Video MONOPOLY Slots download White part of eye swollen like jelly home remedies Ez jili codes 2021 Wjslot com rewards login How many evolutions can you have in a deck Clash Royale Online casino jili login register House of Fun VIP PLUS download SM Megamall 3 day sale 2024 dates Phil163 login Simple chili recipe Jili slot machine apk latest version Jili188 login download Boss88 Slot Login Jili go login philippines Online casino games with free signup bonus philippines Jili mines download apk Fc slot online philippines Y777 jili real money withdrawal Win99 online casino login register Lucky jili slots login register mobile philippines BetVictor UK Jilino1 new site Jili no minimum deposit philippines 2020 Royal777 login register philippines Forgot transaction password in phdream Casino plus jili slot real money Win99 slot games free apk Nn777 slot jili real money 38jili login GO Keyboard APK betBonanza mobile login registration Dragon cash vs Dragon Link 8k8 online casino games downloadable content philippines Best slots to play on FanDuel reddit balato8aa Crown89ph casino login Online casino builder Wjevo22 app irich slots&games casino 777 Boxing king casino real money Jili22 vip202 download online casino games with no minimum deposit Mega Wheel game download Jili apps download for android free Diablo 4 enchantment slot not working Online lucky sweepstakes no deposit bonus 747 online casino games philippines Super ace demo game online free Spin and win cash in Uganda withdrawal PG Soft Wild Bounty Showdown 777sky slot Jiliapp download latest version Www royal888casino net register Royal slots real money login ????? ?? ???? ??? ???? ????? ????? Phkuya com casino login PHIL168 new link Royal888casino net withdrawal July 8, 2024 Casino machine Jili lucky slot app apk Pragmatikong laro ng big bass bonanza videos 200jili download latest version Dometic 94067 Online slot machines philippines 12 Titans Greek mythology Online slots strategy Casinos online slots real money Jili official website app for android Play tongits online real money philippines Bmy88 net login password Jili 646 ph register app ios Kumuha ng jili app login download Ezjili com download ios Mega Ace mechanics Jili ace 777 no deposit bonus Jili live club login Jili 747 login app 291 jili 01 register download Tongits Go new version Boss JILI casino login Rich711 casino login download 9jlbet Real money casino app apk Jili event login app Jackpot fishing jili download free Pagsasalin ng teksto Sixers game today Please complete the required turnover for withdrawal tagalog Majhail X song download Mp3 April 8 2024 holiday Philippines Pg777 login register online Crazy Time prediction telegram Tadhana slots apk download old version Transaction password in scatter example Mine (Taylor Swift release date) Jili zeus slot login register International casino app Monopolyo ng big baller login Win888pub app Diablo 4 enchantments Phmacau club 啶す啶苦啶︵啶班ぞ 啶溹啶む 啶曕 啶啶∴ Apat na uri ng tunggalian at halimbawa Sw888 casino register BYU portal 49 jili vip login philippines Ubet95 Casino login Jili 178 ph register Is online gambling legal in Philippines Jili t7 login registration form Fg777 official withdrawal How to get unlimited coins on Vegas Live Slots Go88 slot login register download Slot sites philippines Pnxbet77 legit Online lucky 9 gcash download bwinners - online sports betting virtual & casino games Fachai free 150 Casino table games inside (2008) Ocean King Jackpot download Boom casino login KK JILI Casino Login app apk Nexusgaming88 agent login philippines Bonus 365 casino login Free unlimited bingo card generator PDF Microsoft login Jill meaning slang origin Grand slot Palace online casino W888 login Jili369 real money login Nexus88 Gaming login register Jackpot fishing demo free download Jajji veer punjabi gane mp3 download online casino games not real money Wagi 777 download for android free spins bonus no deposit Best casino online slots europe Bombing Fishing demo Limbo bar game Lodigame 291 login registration philippines Mammoth Gold Megaways Peraplay login Fb jili casino login download free no deposit bonus Bingo filipino machine price Login slot machine app Nextbet app download apk Slots game machine free Is DraftKings Casino legal in Massachusetts Webcam app Free unlimited bingo card generator What do CB1 receptors do 177bet cc download Jiliasia casino login philippines Online lucky 9 gcash withdrawal KK JILI register Slots rivals ladbrokes login Jilivip download ios online casino games in florida slot o pol online Jl777 Login Register Charge Buffalo free play Lucky Tongits gcash download Ph646 register mobile philippines Promotion 100 free 58jili login registration online x570 ram slots Mines predictor free Jili17 register mobile Kkjili com app download latest version Best free bonus slots real money Gba 777 casino no deposit bonus Best slots to buy bonus GGBET GCash Wild hammer megaways apk Real money gambling games philippines Jiliko photos free Libreng mga laro ng slot online register MVG SunBet login Bet777 Login Casino keno games free online no deposit Casino ng rainbow riches real money Jili referencing indian law ppt Free casino online real money Philboss link login Jili slot 777 login register online philippines Premiumbets TG777 app login 10 07 day Pocket GK Book PDF in Hindi Online casino 50 cash in no deposit Free slots paypal deposit Phlwin online casino hash encryption games traceable fair casino apk casino game casino Jili188 tv login password 5e sorcerer spell slots guide Alamat ng wizarding wars reddit Jili slot jackpot 777 withdrawal Www jilino1 club app Betso89 register Free website browser download pagcor online casino games Poker machines games casinos online free bonus Play video poker free no download for android Is Seybold journal Scopus Indexed How to withdraw in jili online gcash mwplay888.net login Phpslot app apk Top 1 game in the world 2024 Bingo plus pagcor login password 178jili HP777 Casino Jili day app apk Casino guru Brazil nuebegamingslot Jili casino app login download Jili 09 register download taylor swift july 9th 1:38 Geely Coolray 2024 Release date Philippines Jollibee picture outside Xo jili casino login register mobile Spielautomaten kaufen Royal Club apk Mod Helens gogo jili login register philippines Lucky 777 apk latest version Katangian ni apollo sa cupid at psyche Doble Engineering Casino jili real money app Slot machine png Falcon casino login register 5e multiclass spell slots Arcane Trickster Jili slot jackpot app download Paano maglaro ng slot para kumita withdrawal casino slot games real money Helens gogo jili register philippines Casino articles topics Fachai free 100 Slot 50 minimum deposit Philippines sm 3-day sale schedule 2024 Magic jili slot game login Are casino Apps rigged Tala888 download jackpotfree Big bet review guardian online casino games for free Fg777 casino login register link Betvisa best online casino Microsoft Store download lodivip3web Jili 789 download Best online casino games for real cash Tongits go 4.1 6 apk download latest version Gba333 login Register Phone club Game online azure pre-validated domain Sabong app apk Bandit Slots Youtube Jacks or Better strategy app Magandang slot ba ang Sweet Bonanza? 100 free spins no deposit no wagering requirements philippines Fg777win com login Pci slot types explained Nakakabuti ba ang sugal sa tao Tmtplay casino login register mobile Galaxy 88 casino com login register Free flash video poker download no download Winford Online casino login JIL pastor Winhq9 login register mobile W500 one Jili veo casino login registration Buenas 88 Register How to withdraw 90 jili club philippines online Jili free 100 php no deposit bonus philippines Jili com casino register Minecraft Crazy games Mitran de boot remix mp3 song download 320kbps Anjeer Dry fruit tg777 customer service 24/7 Arat365 com login Apps na pwedeng kumita ng pera legit 9k slot Casino Jili 8888 download for android William Hill live Tesla jili login philippines 啶す啶苦啶︵啶班ぞ 啶溹啶む x7-16 啶啶侧啶? Okada Online Casino download ios Lucky Neko demo play Jili lucky download for pc Original Buffalo wings recipe 777 jili Casino real money Betsson Group Glassdoor 40 jili casino login philippines app 777ku login App Byu jili register download Yesjili com login philippines Jackpot fishing game real money Ubet95 app apk 888 casino app store download Betway zambia online live sports betting download jili 80 iRich kh free download Mga nakakatawang palaro Top online slots online lucky 777 slot game download 50 deposit game online 49 jili games Online casino game with real money Freeplay Casino no deposit bonus Jili 646 777 login register philippines link Kk jili login register online philippines Anti epidemic online casino gcash login Gold 168 Casino login Royal777 register JILI6 promo code Philippines Lodislot 777 casino online real money Ijility maumelle ar Mnl168 download for android Bet 888 login philippines Boeing Secure Login 188 JILI Casino login Jili asya download Mr joker Photo Dinosaur tycoon jili ios download Jili777 login register Philippines 49 jili games download Wow888one philippines Phl63one philippines Mega Medusa Casino login Win888 casino register online Pldt 777 real money withdrawal solaire online casino games MNL63 free 100 No Deposit Jili caishen casino irich slots&games casino 777 Free slots poker online real money Casinos online for real money philippines Royal Club login app download free Online casino free real money DO888 online casino JILI188 app Charge buffalo jili download free Jili free 100 no turnover philippines no deposit bonus Gogosolot online Casino Login Superjilli ph Jili365 bet login sign up philippines Jili x super ace download 5 jili casino login register online Lolliplay login no deposit bonus Pldt jili slot download ios New online casino free chip no deposit Is transaction password and atm pin same sbi mega joker spielautomat Baccarat Strategy book Sweet Bonanza Candyland live Jili 337 withdrawal fee Baccarat Evolution Jili games download for pc slots with real money online 5jl Casino Login Super Ace slot demo SWERTRES sureball hearing today Philippines youtube Jili big win login register Online casino games no deposit free spins philippines Top online slots online lucky 777 slot game download Big baller Club info login Non working holiday Pasig 45 days from july 9, 2024 777 10 jili casino register download jackpot giant slot 90 jili register download JL777 Casino Tp777 com login register mobile Casino tr c tuy n login Gogo jili app download apk mod Legends Slot Bingo JILI 52 Club APK Jilievo888 com login register online Lucky jili real money 888bets mozambique app download Happy jackpot slots Fairground Slots no deposit bonus Wild ace demo download New Vegas slots luck Casino mania bonus Huff and more Puff slot machine for sale baccarat game how to play Jili ph register online Jolibet withdrawal Football teams Premier League sissi slot machine free play Jili vip login register philippines download app ios Transaction password in tagalog example brainly Play free casino games online without downloading for android ELK casino games Libreng computer video poker download Winph6aa philippines Jlbetslot 49 jili casino slots login Jili app casino download apk for android Mnl168 online casino register philippines apk Jili 80 login register Jili free withdrawal app Maaari ba tayong maglaro ng monopoly online play SYNOT Interactive Playzone cashback labet88.com app Jili49 login register Jili asia com casino login download Gold slots casino sa facebook login Jili balita withdrawal fee Gamezy Rummy Jili day register online 90jili game club download PH Macao game 777sky casino philippines Ibetph web casino Best online casino games philippines gcash 247 slots login Elf bingo jili online registration Funny captions for online casino games 777 lucky slot no deposit bonus OKBet App download apk Z25 Gaming P88 jili login app Jili77win philippines DuckyLuck Casino Ttjl casino link app 55jili login Cali 777 com login password LIMBO APK download latest version 200jili login philippines 646 jili 01 login app FB JILI Login Golden Wealth Baccarat live Panaloka login registration Tala0888 download apk GemDisco Login register Lion dance history Ezjili login register mobile Royal777 register Jili 337 login register philippines download Fishing era poppo How to play jackpot fishing app Libreng jili games login Swerte ng buto 77ph1 com login password How do i install tongits go on android Joy jili casino login register philippines free chips Slot machine 777 login Jili online slot apk Jili ko o casino login register APK injector Slot Pragmatic Play Gogo JILI Casino login 50 minimum Z790 ram slots for gaming Tongits Go update download How to compute special non working holiday Philippines 777 Casino 77 free spins login MWGAMING Login Password How to play taya 777 online How does Lee Young ji know English Phdream88 login app 63jili download ios ME777 Casino Login Philippines Baba Slots online casinoplusslot How to play jili super ace online Unibet sign up bonus 60 jili login download no deposit bonus Philippine online casino no deposit bonus pxbetgamingslot Online casino games that pay real money no deposit 49jili flag login password Jili 2024 login register Paano maglaro ng jili super ace login download Vip jili login philippines app Jili bingo download for android 9Y game City Jili jackpot lucky casino real money no deposit bonus Easy money jackpot fishing philippines Casino free games slots machine no deposit Slots7 Casino free spins Winjili ph login registration Jili games free 100 download apk Jiliplay999 com login Hot chilli megaways review Jili games apk latest version ang mga slot ay nagsusugal Nice 888 login philippines Playzone Casino FC jackpot Casino login Spin jackpot YONO apk Juegos de casino gratis sin descargar ni registrarse Gold slots casino sa facebook withdrawal Jili 168 login registration link Mitran De Junction Te Mp3 Song Download pagalworld Lovejili app for android apk download Helens gogo jili casino login Transaction password in scatter example mainit na jili casino Casino online free credit no deposit How do i install tongits go on iphone Boombet casino 100 JILI casino no deposit bonus Peso88aa philippines Jiliko gcash withdrawal Jili veo login philippines Jili slot game download apk latest version Macau casino online login philippines online casino Katangian ni sita sa rama at sita 49jili login to my account philippines app Forgot transaction password Fg777app download Baccarat in casino online 98 jili casino login register philippines download app Marvelbet apps download apk for android Xo jili app login Speed roulette strategy betway zambia live soccer online casino games Casino 777 lucky jili slots real money yakuza: like a dragon slots high payout token Wild Coaster PG slot Turkish Airlines flights Bet jili app download for iphone Why do slot machines have bingo cards Ez jili code philippines DOUBLE Jackpot Slot MACHINE for sale play free online casino games Bet777 Login app Supabets mobile app download Winning plus 40 apk Play top Dollar slot machine online free no download Jackpot meter jili download apk Plot 777 casino login register link Best time to play jili slot on sunday reddit