LLMS_Admin_Assets::get_analytics_options()

Retrieve an array of options used to localize the llms.analytics JS instance.


Return Return

(array)


Top ↑

Source Source

File: includes/admin/class.llms.admin.assets.php

421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
    if ( ! empty( $screen->is_block_editor ) || 'customize' === $screen->base ) {
        echo "<script>window.llms.userInfoFields = JSON.parse( '" . wp_slash( wp_json_encode( llms_get_user_information_fields_for_editor() ) ) . "' );</script>";
    }
 
}
 
/**
 * Retrieve an array of options used to localize the `llms.analytics` JS instance.
 *
 * @since 4.5.1
 *
 * @return array
 */
protected function get_analytics_options() {
 
    /**
     * Create a number format string readable by google charts
     *
     * Replacing `9.9` with `9,9` and `0,0` with `0.0` to prevent loading errors encountered
     * as a result of the chart pattern not allowing usage of a comma for the decimal separator.
     *


Top ↑

Changelog Changelog

Changelog
Version Description
4.5.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.