We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g. in the settings tab. "This page has been viewed x times in the last 24 hours". Something like:
// https://developers.google.com/analytics/devguides/reporting/core/v3/coreDevguide function makeApiCall() { params = { 'ids': 'ga:81871816', 'start-date': 'yesterday', 'end-date': 'today', 'metrics': 'ga:pageviews', 'filters': 'ga:pagePath==/features/' } apiQuery = gapi.client.analytics.data.ga.get(params) apiQuery.execute(handleCoreReportingResults); } function handleCoreReportingResults(results) { if (!results.error) { if (results.rows && results.rows.length) console.log(results.rows[0][0]); } else { alert('Something broke: ' + results.message); } }
Add to settings tab with something like
$('#settings ul[class="objects"]').append( '<li class="object"><h2><label>Analytics</label></h2><fieldset></fieldset></li>' )
Access the path of the page currently being edited with
$('a[class="status-tag primary"]').attr('href')
The text was updated successfully, but these errors were encountered:
584e8ae
Is there a setting for config files or some like it?
Sorry, something went wrong.
No branches or pull requests
e.g. in the settings tab. "This page has been viewed x times in the last 24 hours". Something like:
Add to settings tab with something like
Access the path of the page currently being edited with
The text was updated successfully, but these errors were encountered: