commerce-order.css |
modules/entity_print_commerce_order/css/commerce-order.css |
|
/* Page heading */
h2 a {
text-decoration: none;
color: #333;
}
/* Pricing Table from Drupal Commerce */
.commerce-price-formatted-components {
width: 50%;
float: right;
margin-top: 1em;
}
.component-title {
background: #f7ffff;
color:… |
entity-print--commerce-order.tpl.php |
modules/entity_print_commerce_order/entity-print--commerce-order.tpl.php |
|
PDF template for printing. |
entity-print-views.tpl.php |
modules/entity_print_views/templates/entity-print-views.tpl.php |
|
PDF template for printing. |
entity-print.css |
css/entity-print.css |
|
body {
font-family: sans-serif;
}
.page {
padding: 20px;
} |
entity-print.tpl.php |
templates/entity-print.tpl.php |
|
PDF template for printing. |
entityprint-all.css |
tests/themes/entity_print_test_theme/css/entityprint-all.css |
|
|
entityprint-module.css |
tests/themes/entity_print_test_theme/css/entityprint-module.css |
|
|
entityprint-node.css |
tests/themes/entity_print_test_theme/css/entityprint-node.css |
|
|
entityprint-page.css |
tests/themes/entity_print_test_theme/css/entityprint-page.css |
|
|
entity_print.admin.inc |
entity_print.admin.inc |
|
Entity Print admin form. |
entity_print.api.php |
entity_print.api.php |
|
This file exists only to provide examples of using the Entity Print API's. |
entity_print.info |
entity_print.info |
|
name = Entity Print
description = "Allows you to print any Drupal entity to PDF. You must also have WkHtmlToPdf already installed on the server."
core = 7.x
package = Entity Print
configure = admin/config/content/entityprint
dependencies[]… |
entity_print.install |
entity_print.install |
|
Entity print install file. |
entity_print.module |
entity_print.module |
|
Print any entity. |
entity_print.test |
tests/entity_print.test |
|
Entity print tests. |
entity_print_commerce_order.info |
modules/entity_print_commerce_order/entity_print_commerce_order.info |
|
name = Entity Print Commerce Order
core = 7.x
package = Entity Print
dependencies[] = entity_print |
entity_print_commerce_order.module |
modules/entity_print_commerce_order/entity_print_commerce_order.module |
|
Entity print styles for Commerce Order entities. |
entity_print_test.info |
tests/entity_print_test.info |
|
name = Entity Print Test
core = 7.x
package = Entity Print
hidden = true
dependencies[] = entity_print |
entity_print_test.module |
tests/entity_print_test.module |
|
A module for testing Entity Print. |
entity_print_test_theme.info |
tests/themes/entity_print_test_theme/entity_print_test_theme.info |
|
name = Entity Print Test Theme
description = Test theme for testing Entity Print CSS
core = 7.x
hidden = TRUE
entity_print[all] = css/entityprint-all.css
entity_print[node][all] = css/entityprint-node.css
entity_print[node][page] =… |
entity_print_views.api.php |
modules/entity_print_views/entity_print_views.api.php |
|
This file provides examples of using the Entity Print Views API's. |
entity_print_views.info |
modules/entity_print_views/entity_print_views.info |
|
name = Entity Print Views
core = 7.x
package = Entity Print
dependencies[] = entity_print
dependencies[] = views
files[] = includes/views/views_plugin_display_entity_print_views_pdf.inc |
entity_print_views.module |
modules/entity_print_views/entity_print_views.module |
|
Entity Print Views module file. |
table.css |
modules/entity_print_commerce_order/css/table.css |
|
/* Generic table style. */
table {
width: 100%;
border-collapse: collapse;
}
table .form-item {
margin: 0;
}
table thead th {
font-size: 0.75em;
font-weight: normal;
background: #f4f4f4;
text-transform: uppercase;
text-align: left;
… |
views_plugin_display_entity_print_views_pdf.inc |
modules/entity_print_views/includes/views/views_plugin_display_entity_print_views_pdf.inc |
|
The PDF display handler. |