color.module |
modules/color/color.module |
|
Allows users to change the color scheme of themes. |
colors.css |
themes/bartik/css/colors.css |
|
/* ---------- Color Module Styles ----------- */
body {
color: #3b3b3b;
}
.layout,
.l-container {
background: #ffffff;
}
.l-header {
color: #fffeff;
background-color: #000000;
background-image: -moz-linear-gradient(top, #000000 0%, #000001… |
colors-legacy.css |
themes/bartik/css/colors-legacy.css |
|
/* ---------- Legacy colors ---------- */
.l-container {
background: #ffffff;
}
.layout {
background: transparent;
}
.l-header {
background-color: #48a9e4;
background-image: -moz-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
… |
color.test |
modules/simpletest/tests/color.test |
|
Tests color conversion functions. |
color.test |
modules/color/tests/color.test |
|
Tests for color module. |
color.tests.info |
modules/color/tests/color.tests.info |
|
[ColorTestCase]
name = Color functionality
description = Modify the Bartik theme colors and make sure the changes are reflected on the frontend.
group = Color
file = color.test |
color.theme.inc |
modules/color/color.theme.inc |
|
Theme functions for the Color module. |
comment.admin.inc |
modules/comment/comment.admin.inc |
|
Admin page callbacks for the Comment module. |
comment.api.php |
modules/comment/comment.api.php |
|
Hooks provided by the Comment module. |
comment.css |
themes/basis/css/component/comment.css |
|
.comment {
position: relative;
display: block;
padding: 0;
margin: 0 0 1.5em;
}
.comments .indented {
position: relative;
padding-left: 1.25em;
margin-top: -1.5em;
}
.comments .indented:before,
.comments .indented:after {
content:… |
comment.css |
modules/comment/css/comment.css |
|
#comments {
margin-top: 15px;
}
.indented {
margin-left: 25px; /* LTR */
}
[dir="rtl"] .indented {
margin-left: 0;
margin-right: 25px;
}
.comment-unpublished {
background-color: #fff4f4;
}
.comment-preview {
background-color:… |
comment.entity.inc |
modules/comment/comment.entity.inc |
|
Entity controller and class for comments. |
comment_hacks.css |
modules/simpletest/files/css_test_files/comment_hacks.css |
|
/*
* A sample css file, designed to test the effectiveness and stability
* of function <code>backdrop_load_stylesheet_content()</code>.
*
*/
/*
A large comment block to test for segfaults and speed. This is 60K a's. Extreme but useful… |
comment_hacks.css.optimized.css |
modules/simpletest/files/css_test_files/comment_hacks.css.optimized.css |
|
.test1{display:block;}html .clear-block{height:1%;}.clear-block{display:block;font:italic bold 12px/30px… |
comment_hacks.css.unoptimized.css |
modules/simpletest/files/css_test_files/comment_hacks.css.unoptimized.css |
|
/*
* A sample css file, designed to test the effectiveness and stability
* of function <code>backdrop_load_stylesheet_content()</code>.
*
*/
/*
A large comment block to test for segfaults and speed. This is 60K a's. Extreme but useful… |
comment.info |
modules/comment/comment.info |
|
type = module
name = Comment
description = Allows users to comment on and discuss published content.
package = Comments
tags[] = Content
version = BACKDROP_VERSION
backdrop = 1.x
dependencies[] = node
dependencies[] = text
dependencies[] =… |
comment.install |
modules/comment/comment.install |
|
Install, update and uninstall functions for the Comment module. |
comment.module |
modules/comment/comment.module |
|
Enables users to comment on published content. |
comment.pages.inc |
modules/comment/comment.pages.inc |
|
User page callbacks for the Comment module. |
comment.test |
modules/comment/tests/comment.test |
|
Tests for the Comment module. |
comment.tests.info |
modules/comment/tests/comment.tests.info |
|
[CommentInterfaceTest]
name = Comment interface
description = Test comment user interfaces.
group = Comment
file = comment.test
[CommentPreviewTest]
name = Comment preview
description = Test comment preview.
group = Comment
file =… |
comment.theme.inc |
modules/comment/comment.theme.inc |
|
Theme functions for the Comment module. |
comment.tokens.inc |
modules/comment/comment.tokens.inc |
|
Builds placeholder replacement tokens for comment-related data. |
comment.tpl.php |
themes/basis/templates/comment.tpl.php |
|
Basis' theme implementation for comments. |
comment.tpl.php |
themes/bartik/templates/comment.tpl.php |
|
Bartik's theme implementation for comments. |
comment.tpl.php |
modules/comment/templates/comment.tpl.php |
|
Default theme implementation for comments. |
comment_views_handler_argument_user_uid.test |
modules/comment/tests/comment_views_handler_argument_user_uid.test |
|
Definition of CommentViewsHandlerArgumentUserUidTest. |
comment_views_handler_filter_user_uid.test |
modules/comment/tests/comment_views_handler_filter_user_uid.test |
|
Definition of viewsHandlerFilterCommentUserUidTest. |
comment.views.inc |
modules/comment/views/comment.views.inc |
|
Provide views data and handlers for comment.module. |
common.inc |
includes/common.inc |
|
Common functions that many Backdrop modules will need to reference. |
common.test |
modules/simpletest/tests/common.test |
|
Tests for common.inc functionality. |
common_test_cron_helper.info |
modules/simpletest/tests/common_test_cron_helper.info |
|
name = "Common Test Cron Helper"
description = "Helper module for CronRunTestCase::testCronExceptions()."
package = Testing
version = BACKDROP_VERSION
type = module
backdrop = 1.x
hidden = TRUE |
common_test_cron_helper.module |
modules/simpletest/tests/common_test_cron_helper.module |
|
Helper module for the testCronExceptions in addition to common_test module. |
common_test.css |
modules/simpletest/tests/common_test.css |
|
/* This file is for testing CSS file inclusion, no contents are necessary. */ |
common_test.info |
modules/simpletest/tests/common_test.info |
|
name = "Common Test"
description = "Support module for Common tests."
package = Testing
version = BACKDROP_VERSION
type = module
backdrop = 1.x
stylesheets[all][] = common_test.css
stylesheets[print][] =… |
common_test_info.txt |
modules/simpletest/tests/common_test_info.txt |
|
; Test parsing with a simple string.
simple_string = A simple string
; Test that constants can be used as values.
simple_constant = WATCHDOG_INFO
; After parsing the .info file, 'double_colon' should hold the literal value.
; Parsing… |
common_test.module |
modules/simpletest/tests/common_test.module |
|
Helper module for the Common tests. |
common_test.print.css |
modules/simpletest/tests/common_test.print.css |
|
/* This file is for testing CSS file inclusion, no contents are necessary. */ |
common_test.theme.inc |
modules/simpletest/tests/common_test.theme.inc |
|
Theme functions for the Common Test module. |
config.admin.css |
modules/config/css/config.admin.css |
|
/**
* CSS for the admin section of the Config module.
*/
.config-import-single-form textarea,
.config-export-single-form textarea {
font: 1.2em monospace;
white-space: pre;
}
.config-diff .config-old,
.config-diff .config-new {
width:… |
config.admin.inc |
modules/config/config.admin.inc |
|
Admin page callbacks for the Configuration Management module. |
config.api.php |
modules/config/config.api.php |
|
Documentation for hooks provided by Config module. |
config_database.info |
drivers/config_database/config_database.info |
|
name = Database-based configuration
description = Store configuration in the database
version = BACKDROP_VERSION
type = driver
config_backend[ConfigDatabaseStorage] = config_database_storage.inc |
config_database_storage.inc |
drivers/config_database/config_database_storage.inc |
|
|
config_file.info |
drivers/config_file/config_file.info |
|
name = File-based configuration
description = Store configuration in flat files
version = BACKDROP_VERSION
type = driver
config_backend[ConfigFileStorage] = config_file_storage.inc |
config_file_storage.inc |
drivers/config_file/config_file_storage.inc |
|
|
config.inc |
includes/config.inc |
|
This is the API for configuration storage. |
config.info |
modules/config/config.info |
|
type = module
name = Configuration Manager
description = Import, export, and synchronize your configuration changes between different installations of your site, such as in development, staging, and production environments.
package =… |
config.module |
modules/config/config.module |
|
Allows site administrators to modify configuration. |
config_obj.test |
modules/simpletest/tests/config_obj.test |
|
|