Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
drupal.org
context
Commits
c1e69e75
Commit
c1e69e75
authored
Feb 25, 2011
by
The Great Git Migration
Committed by
Drupal Git User (LDAP)
Feb 25, 2011
Browse files
Stripping CVS keywords
parent
bb610d6c
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
0 additions
and
15 deletions
+0
-15
README.txt
README.txt
+0
-1
context.info
context.info
+0
-1
context.module
context.module
+0
-1
context_prefix/context_prefix.info
context_prefix/context_prefix.info
+0
-1
context_prefix/context_prefix.install
context_prefix/context_prefix.install
+0
-1
context_prefix/context_prefix.module
context_prefix/context_prefix.module
+0
-1
context_prefix/context_prefix_admin.js
context_prefix/context_prefix_admin.js
+0
-1
context_ui/context_ui.info
context_ui/context_ui.info
+0
-1
context_ui/context_ui.install
context_ui/context_ui.install
+0
-1
context_ui/context_ui.module
context_ui/context_ui.module
+0
-1
context_ui/context_ui_admin.inc
context_ui/context_ui_admin.inc
+0
-1
context_ui/context_ui_contrib.info
context_ui/context_ui_contrib.info
+0
-1
context_ui/context_ui_contrib.module
context_ui/context_ui_contrib.module
+0
-1
context_ui/tests/context_ui.test
context_ui/tests/context_ui.test
+0
-1
tests/context.test
tests/context.test
+0
-1
No files found.
README.txt
View file @
c1e69e75
// $Id$
CONTEXT MODULE
...
...
context.info
View file @
c1e69e75
;
$
Id
$
name
=
Context
description
=
"Provide modules with a cache that lasts for a single page request."
package
=
Context
\ No newline at end of file
context.module
View file @
c1e69e75
<?php
// $Id$
define
(
'CONTEXT_GET'
,
0
);
define
(
'CONTEXT_SET'
,
1
);
...
...
context_prefix/context_prefix.info
View file @
c1e69e75
;
$
Id
$
name
=
Context
Prefix
description
=
"Provides generalized context prefixing"
dependencies
=
context
...
...
context_prefix/context_prefix.install
View file @
c1e69e75
<?php
// $Id$
function
context_prefix_install
()
{
switch
(
$GLOBALS
[
'db_type'
])
{
...
...
context_prefix/context_prefix.module
View file @
c1e69e75
<?php
// $Id$
define
(
'CONTEXT_PREFIX_PATH'
,
0
);
define
(
'CONTEXT_PREFIX_SUBDOMAIN'
,
1
);
...
...
context_prefix/context_prefix_admin.js
View file @
c1e69e75
// $Id$
if
(
typeof
(
Drupal
)
==
"
undefined
"
||
!
Drupal
.
context_prefix_admin
)
{
Drupal
.
context_prefix_admin
=
{};
...
...
context_ui/context_ui.info
View file @
c1e69e75
;
$
Id
$
name
=
Context
UI
description
=
"Provides a simple UI for settings up a site structure using Context."
dependencies
=
context
...
...
context_ui/context_ui.install
View file @
c1e69e75
<?php
// $Id$
function
context_ui_install
()
{
switch
(
$GLOBALS
[
'db_type'
])
{
...
...
context_ui/context_ui.module
View file @
c1e69e75
<?php
// $Id$
/**
* Implementation of hook_block().
...
...
context_ui/context_ui_admin.inc
View file @
c1e69e75
<?php
// $Id$
/**
* Page callback for context_ui admin landing page.
...
...
context_ui/context_ui_contrib.info
View file @
c1e69e75
;
$
Id
$
name
=
Context
UI
Contrib
description
=
"Provides integration with Context UI on behalf of the following contrib modules: Nodequeue, Outline, Views."
dependencies
=
context
context_ui
...
...
context_ui/context_ui_contrib.module
View file @
c1e69e75
<?php
// $Id$
/**
* Implementation of hook_context_items()
...
...
context_ui/tests/context_ui.test
View file @
c1e69e75
<?php
// $Id$
/**
* Functional Test for Context UI
...
...
tests/context.test
View file @
c1e69e75
<?php
// $Id$
class
ContextGetTest
extends
DrupalTestCase
{
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment