Changeset 3377688 for cf7-database/trunk/admin/init.php
- Timestamp:
- 10/13/2025 05:49:01 PM (6 months ago)
- File:
-
- 1 edited
-
cf7-database/trunk/admin/init.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cf7-database/trunk/admin/init.php
r3056615 r3377688 162 162 } 163 163 164 wp_enqueue_script( 'cf7d_apps_js', CF7D_PLUGIN_URL . '/admin/assets/dist/js/main.js', array(), '', true );164 wp_enqueue_script( 'cf7d_apps_js', CF7D_PLUGIN_URL . '/admin/assets/dist/js/main.js', array(), CF7D_VERSION, true ); 165 165 wp_localize_script( 166 166 'cf7d_apps_js', … … 179 179 'html_fields' => apply_filters( 'cf7d_html_fields', array() ), 180 180 'translate' => getTranslation(), 181 'is_reviewed' => get_option( 'cf7db_user_reviewed' ), 182 'logo_url' => CF7D_PLUGIN_URL . '/admin/assets/images/cf7-database-logo.png', 181 183 ) 182 184 ); … … 186 188 187 189 // File css of apps. 188 wp_register_style( 'cf7d_apps_css', CF7D_PLUGIN_URL . '/admin/assets/dist/css/main.css' );190 wp_register_style( 'cf7d_apps_css', CF7D_PLUGIN_URL . '/admin/assets/dist/css/main.css', array(), CF7D_VERSION ); 189 191 wp_enqueue_style( 'cf7d_apps_css' ); 190 192 … … 192 194 if ( is_rtl() == '1' ) { 193 195 // File support for language right to left. 194 wp_register_style( 'cf7d_apps_css_su_rtl', CF7D_PLUGIN_URL . '/admin/assets/css/css_support_rtl.css' );196 wp_register_style( 'cf7d_apps_css_su_rtl', CF7D_PLUGIN_URL . '/admin/assets/css/css_support_rtl.css', array(), CF7D_VERSION ); 195 197 wp_enqueue_style( 'cf7d_apps_css_su_rtl' ); 196 198
Note: See TracChangeset
for help on using the changeset viewer.