Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ETH Google Analytics for AMP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
WP Plugins
ETH Google Analytics for AMP
Merge requests
!1
WIP: Initial release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Initial release
develop
into
master
Overview
2
Commits
20
Changes
1
Closed
Erick Hitter
requested to merge
develop
into
master
9 years ago
Overview
2
Commits
20
Changes
1
Expand
0
0
Merge request reports
Viewing commit
487b38ea
Prev
Next
Show latest version
1 file
+
11
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
487b38ea
Dummy magic methods, placeholders for now
· 487b38ea
Erick Hitter
authored
9 years ago
eth-amp-analytics-wp.php
+
11
−
0
Options
@@ -39,6 +39,17 @@ class ETH_AMP_Analytics_WP {
return
self
::
$instance
;
}
/**
* Dummy magic methods
*/
public
function
__clone
()
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__wakeup
()
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__isset
(
$key
)
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__get
(
$key
)
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__set
(
$key
,
$value
)
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__unset
(
$key
)
{
_doing_it_wrong
(
__FUNCTION__
,
__
(
'Cheatin’ huh?'
,
'eth-amp-analytics-wp'
),
'0.1'
);
}
public
function
__call
(
$name
=
''
,
$args
=
array
()
)
{
unset
(
$name
,
$args
);
return
null
;
}
/**
* Class properties
*/
Loading