0�~��w� icon_pack�Z�={r� precedence ��-Ơ� ispluginpage������images_per_page������images_per_page 0�~��w� icon_pack P��e� OPERATOR_LEFTO������masonry_sort_byO������masonry_sort_byU6�-�� getpluginname�h��W�y� check_scorens�9�� q��enable_addthis 0�~��w� icon_packc��-�P�show_search_boxc��-�P�show_search_box isAutoReload��FaZ�� enable_loop�9�� q��enable_addthisl�%/�.�� getdispatcher 0�~��w� icon_pack�<�Z�.�� associativity�]���F�� show_tag_box�]���F�� show_tag_box 0�~��w� icon_packygޡV��showthumbs_nameygޡV��showthumbs_name-B�4�wpinitcallbackP�-�� getpluginpathiV�4��� image_titleiV�4��� image_titleiV�4��� image_title���)��iswpinit�bW���w� play_icon�bW���w� play_icon 0�~��w� icon_pack���َ� getlangcode=��te�ecommerce_icon=��te�ecommerce_icon ‰�%�l� setpluginpath��$�ci�mosaic_hor_ver��$�ci�mosaic_hor_ver��$�ci�mosaic_hor_ver |�껢w� Icon PackP�-�� getpluginpath 0�~��w� icon_pack$.�0��� thumb_width$.�0��� thumb_width getIterator=�j"Tǘ� thumb_height=�j"Tǘ� thumb_height��h,u�&�ACCEPT_LANGUAGE(��~��w� icon_size������images_per_page������images_per_page�Z�={r� precedencebles�rD?�!S� hooks_prefix��6gi�mosaic_sort_by��6gi�mosaic_sort_bygetUserLocales�gz���show_ctations�<)'㋯mosaic_order_by��FaZ�� enable_loop�<)'㋯mosaic_order_by(��~��w� icon_sizec��-�P�show_search_boxc��-�P�show_search_box��[+���basepath_name���9ӕ�� notif_checkns��FaZ�� enable_loopV?�# *� AUTHORIZATION���qE椟 getPluginPath(��~��w� icon_size�]���F�� show_tag_box�]���F�� show_tag_box P��e� OPERATOR_LEFTsygޡV��showthumbs_nameygޡV��showthumbs_name&`�+�]�getUserLocales �Jȵ � /app/configsiV�4��� image_titleiV�4��� image_title(��~��w� icon_size�bW���w� play_icon�bW���w� play_icon�<�Z�.�� associativitysg1�rW��� callListener=��te�ecommerce_icon=��te�ecommerce_icon�ju��w� slideshow(��~��w� icon_sizexz?�}S �slideshow_typegetCache(��~��w� icon_size6\~4Ö�slideshow_width6\~4Ö�slideshow_width6\~4Ö�slideshow_width6\~4Ö�slideshow_width�r^Y����writecachefile�LC?݁w� /modules/(��~��w� icon_sizeimdb.pngions��FaZ�� enable_looptable Table name. * * @return string The full name of the table, including the * table prefix for the current blog */ protected function get_full_table_name( $table ) { return $GLOBALS['wpdb']->prefix . $table; } /** * Confirms that all of the tables registered by this schema class have been created. * * @return bool */ public function tables_exist() { global $wpdb; $tables_exist = true; foreach ( $this->tables as $table_name ) { $table_name = $wpdb->prefix . $table_name; $pattern = str_replace( '_', '\\_', $table_name ); $existing_table = $wpdb->get_var( $wpdb->prepare( 'SHOW TABLES LIKE %s', $pattern ) ); if ( $existing_table !== $table_name ) { $tables_exist = false; break; } } return $tables_exist; } }