Skip to content
Open
554 changes: 554 additions & 0 deletions docs/configuration/local_php_overview.rst

Large diffs are not rendered by default.

28 changes: 15 additions & 13 deletions docs/css/tablefix.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
/* override table width restrictions */
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: normal;
/* Ensure the table takes full width and allows wrapping */
.wy-table-responsive table.docutils {
width: 100% !important;
table-layout: auto !important;
}

.wy-table-responsive {
margin-bottom: 24px;
max-width: 100%;
overflow: visible;
/* Target the cells and the code blocks inside them */
.wy-table-responsive table.docutils td,
.wy-table-responsive table.docutils td code,
.wy-table-responsive table.docutils td span.pre {
white-space: normal !important; /* Allows text to wrap to next line */
word-break: break-word !important; /* Breaks long strings at sensible points */
overflow-wrap: anywhere !important; /* Support for all modern browsers */
}

.wy-table-responsive th p {
margin-bottom: unset;
/* Prevent the container from forcing a horizontal scrollbar */
.wy-table-responsive {
overflow: visible !important;
}


/* img center */

img.align-center {
margin-left: auto;
margin-right: auto;
display: block;
}
}
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ There are different types of documentation available to help you navigate your w
configuration/maxmind_license
configuration/command_line_interface
configuration/cron_jobs
configuration/local_php_overview
configuration/variables
configuration/settings

Expand Down
2 changes: 1 addition & 1 deletion docs/links/clear_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

link_name = "clearing the symfony cache"
link_text = "clearing the Symfony cache"
link_url = "https://developer.mautic.org/#cache"
link_url = "https://devdocs.mautic.org/en/5.x/components/cache.html"

link.xref_links.update({link_name: (link_text, link_url)})
2 changes: 1 addition & 1 deletion docs/links/marketplace.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

link_name = "Developer Documentation Marketplace"
link_text = "Developer Documentation Marketplace"
link_url = "https://developer.mautic.org/#marketplace"
link_url = "https://devdocs.mautic.org/en/5.x/marketplace/getting_started.html"

link.xref_links.update({link_name: (link_text, link_url)})
2 changes: 1 addition & 1 deletion docs/links/mautic_api_documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

link_name = "Reports API documentation"
link_text = "Reports API documentation"
link_url = "https://developer.mautic.org/#reports"
link_url = "https://devdocs.mautic.org/en/5.x/components/reports.html"

link.xref_links.update({link_name: (link_text, link_url)})
2 changes: 1 addition & 1 deletion docs/links/mautic_developer_api_section.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

link_name = "Mautic developer API"
link_text = "in the Developer Documentation"
link_url = "https://developer.mautic.org/#rest-api"
link_url = "https://devdocs.mautic.org/en/5.x/rest_api/assets.html"

link.xref_links.update({link_name: (link_text, link_url)})
2 changes: 1 addition & 1 deletion docs/links/roles_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

link_name = "create Roles using the API"
link_text = "create Roles using the API"
link_url = "https://developer.mautic.org/#roles"
link_url = "https://devdocs.mautic.org/en/5.x/rest_api/roles.html"

link.xref_links.update({link_name: (link_text, link_url)})
2 changes: 1 addition & 1 deletion docs/links/theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

link_name = "create a Theme"
link_text = "create a Theme"
link_url = "https://developer.mautic.org/#themes"
link_url = "https://devdocs.mautic.org/en/5.x/themes/getting_started.html"

link.xref_links.update({link_name: (link_text, link_url)})
2 changes: 1 addition & 1 deletion docs/links/theme_directory_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

link_name = "themes developer documentation"
link_text = "themes developer documentation"
link_url = "https://developer.mautic.org/#theme-directory-structure"
link_url = "https://devdocs.mautic.org/en/5.x/themes/getting_started.html#directory-structure"

link.xref_links.update({link_name: (link_text, link_url)})
Loading