Changeset 6948 for extensions
- Timestamp:
- Sep 16, 2010, 8:44:51 PM (14 years ago)
- Location:
- extensions/GrumPluginClasses
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/GrumPluginClasses/classes/GPCCore.class.inc.php
r6733 r6948 56 56 Array('name' => "GPCPagesNavigations", 'version' => "2.0.0"), 57 57 Array('name' => "GPCPublicIntegration", 'version' => "2.0.0"), 58 Array('name' => "GPCRequestBuilder", 'version' => "1. 0.0"),58 Array('name' => "GPCRequestBuilder", 'version' => "1.1.0"), 59 59 Array('name' => "GPCTables", 'version' => "1.5.0"), 60 60 Array('name' => "GPCTabSheet", 'version' => "1.1.0"), … … 284 284 '/\n{0,1}\[ul\]\n{0,1}/im', 285 285 '/\n{0,1}\[\/ul\]\n{0,1}/im', 286 '/\n{0,1}\[ol\]\n{0,1}/im', 287 '/\n{0,1}\[\/ol\]\n{0,1}/im', 286 288 '/\n/im', 287 289 ); … … 295 297 '<ul>', 296 298 '</ul>', 299 '<ol>', 300 '</ol>', 297 301 '<br>', 298 302 ); -
extensions/GrumPluginClasses/css/gpc.css
r6733 r6948 58 58 .tabsheet2 a span { display:block; font-size:10px; margin-right:2px; padding:0 3px 0 1px; } 59 59 60 61 .helps { 62 background-color:#99DDFF; 63 background-image:url("./../icons/help.png"); 64 background-position:5px 5px; 65 background-repeat:no-repeat; 66 color:#0066EE; 67 font-weight:bold; 68 margin:5px; 69 min-height:54px; 70 padding:5px 70px 0 53px; 71 text-align:left; 72 } 73 74 .warnings, .errors, .helps { 75 -moz-border-radius:4px; 76 -webkit-border-radius:4px; 77 -khtml-border-radius:4px; 78 border-radius:4px; 79 padding-left:60px; 80 margin-bottom:12px; 81 } 82 .warnings p, .helps p, .errors p { 83 margin:0; 84 padding:0 0 6px; 85 text-align: justify; 86 } 87 .warnings ul, .helps ul, .errors ul { 88 margin:-6px 0; 89 padding:0 40px 6px; 90 } 91 92 -
extensions/GrumPluginClasses/gpc_aim.class.inc.php
r5550 r6948 45 45 } 46 46 47 /*48 surchage of CommonPlugin->saveConfig function49 */50 function loadConfig()51 {52 parent::loadConfig();53 if(!$this->css->fileExists())54 {55 $this->css->makeCSS($this->generate_CSS());56 }57 }58 47 59 /*60 surchage of CommonPlugin->saveConfig function61 */62 function saveConfig()63 {64 if(parent::saveConfig())65 {66 $this->css->makeCSS($this->generate_CSS());67 return(true);68 }69 return(false);70 }71 72 /*73 generate the css code74 */75 function generate_CSS()76 {77 $text = "78 .formtable, .formtable P { text-align:left; display:block; }79 .formtable tr { vertical-align:top; }80 .invisible { visibility:hidden; display:none; }81 .littlefont { font-size:90%; }82 table.table2.littlefont td { text-align:center;padding:0px;padding-left:3px;padding-right:3px; }83 .throw { line-height:auto; font-size:100%; }84 table.table2 tr.throw { height:26px; }85 table.table2 td.toLeft { text-align:left; }86 div.table { margin-bottom:15px; }87 pointerHand { cursor:pointer; }88 ";89 90 return($text);91 }92 48 93 49 /* --------------------------------------------------------------------------- -
extensions/GrumPluginClasses/main.inc.php
r6894 r6948 58 58 | | | * Enhance GPCRequestBuilder functionnalities 59 59 | | | - now abble to manage complex request with multi-record 60 | | | - result can be stored in the caddie 61 | | | 62 | | | 63 | | | 64 | | | 65 | | | 66 | | | 67 | | | 68 | | | 69 | | | 60 70 | | | 61 71 | | |
Note: See TracChangeset
for help on using the changeset viewer.