Skip to content
Snippets Groups Projects
Commit 77d2428f authored by Joe Pitassi's avatar Joe Pitassi
Browse files

Merge branch '7.x-1.x-dev' of git.drupal.org:project/tracking_code into 7.x-1.x

parents 519f9f85 905c4483
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ Tracking Code 1.4
New Features
- #1852840 -- Ability to define tracking code visibility by user role
- #2024537 -- Adding "configure" link to .info file for convenience
Bug Fixes
- #1911998 -- Use Drupal's static caching instead of $_SESSION
......
......@@ -2,3 +2,4 @@ name = "Tracking Code"
description = "Provides an interface for adding tracking code snippets into pages using block-like visibility"
package = Statistics
core = 7.x
configure = admin/structure/tracking_code
......@@ -63,19 +63,16 @@ function tracking_code_schema() {
'description' => 'Contents of the "Pages" block; contains a list of paths on which to include/exclude the tracking code.',
'type' => 'text',
'not null' => TRUE,
'default' => '',
),
'content_types' => array(
'description' => 'A serialized array of key=>value pairs that specify which content type nodes to display a tracking code block on.',
'type' => 'text',
'not null' => TRUE,
'default' => serialize(array()),
),
'roles' => array(
'description' => 'A serialized array of key=>value pairs that specify which user roles to display a tracking code block on.',
'type' => 'text',
'not null' => TRUE,
'default' => serialize(array()),
),
),
'primary key' => array('tcid'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment