/
var
/
www
/
html
/
sugardemo
/
include
/
api
/
help
/
Upload File
HOME
<!-- /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ --> <h2>Overview</h2> <span class="lead"> Runs LessPHP for a platform and a theme and outputs the compiled CSS. It only allows to preview the theme because the file is not saved on the server. </span> <h2>Request Arguments</h2> <table class="table table-hover"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Description</th> <th>Required</th> </tr> </thead> <tbody> <tr> <td>platform</td> <td>String</td> <td>The theme platform - /themes/clients/<strong>***PLATFORM***</strong>/themeName/. Accepted values are 'base' and 'portal'.</td> <td>No. (defaults to <em>base</em>)</td> </tr> <tr> <td>themeName</td> <td>String</td> <td>The theme name - /themes/clients/platform/<strong>***THEMENAME***</strong>/.</td> <td>No. (defaults to <em>default</em>)</td> </tr> <tr> <td>min</td> <td>Boolean</td> <td>Whether or not to minify the css</td> <td>No. (defaults to <em>false</em>)</td> </tr> </tbody> </table> <h3>Request</h3> <pre class="pre-scrollable"> { platform: 'portal', themeName: 'default', min: false } </pre> <h2>Response Arguments</h2> <h3>Response</h3> <strong>Content-type: text/css</strong> <pre class="pre-scrollable"> .someClass { any-property: any-value; } </pre> <h2>Change Log</h2> <table class="table table-hover"> <tr> <th>Version</th> <th>Change</th> </tr> <tr> <td> v10 </td> <td> Added <code>/css/preview</code> GET endpoint. </td> </tr> </table>