Changeset 672 for trunk/phpbms/modules
- Timestamp:
- 10/26/09 14:08:14 (3 years ago)
- Location:
- trunk/phpbms/modules
- Files:
-
- 8 modified
-
base/general_import.php (modified) (1 diff)
-
base/include/widgets.php (modified) (2 diffs)
-
base/tabledefs_addedit.php (modified) (2 diffs)
-
base/users_addedit.php (modified) (1 diff)
-
base/widgets/workload/class.php (modified) (1 diff)
-
bms/clients_import.php (modified) (2 diffs)
-
bms/include/receipts.php (modified) (1 diff)
-
sample/include/sampletable.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/base/general_import.php
r592 r672 154 154 </p> 155 155 <p> 156 Delim eters are commas (,) and enclosures are double-quotes ("). If you156 Delimiters are commas (,) and enclosures are double-quotes ("). If you 157 157 wish to escape a double-quote character inside of an enclosure, add another 158 158 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...), or with -
trunk/phpbms/modules/base/include/widgets.php
r579 r672 78 78 if(isset($variables["title"])){ 79 79 if($variables["title"] === "" || $variables["title"] === NULL) 80 $this->verifyErrors[] = "The `title` field must benot be blank.";80 $this->verifyErrors[] = "The `title` field must not be blank."; 81 81 }else 82 82 $this->verifyErrors[] = "The `title` field must be set."; … … 84 84 if(isset($variables["file"])){ 85 85 if($variables["file"] === "" || $variables["file"] === NULL) 86 $this->verifyErrors[] = "The `file` field must benot be blank.";86 $this->verifyErrors[] = "The `file` field must not be blank."; 87 87 }else 88 88 $this->verifyErrors[] = "The `file` field must be set."; -
trunk/phpbms/modules/base/tabledefs_addedit.php
r646 r672 203 203 <?php $theform->showField("importfile") ?><br /> 204 204 <span class="notes">file name, including path from application root, that is used for importing records. If none 205 is spec fied, the general import for the table def will be used. This may not always result in accurate imports for205 is specified, the general import for the table def will be used. This may not always result in accurate imports for 206 206 the more complicated table definitions.</span> 207 207 </p> … … 241 241 <div id="defaultQuickSearch" <?php if($therecord["defaultsearchtype"]=="") echo "style=\"display:none;\""?>> 242 242 <p> 243 <label for="defaultcriteriafindoptions">criter a: selected find option</label> <span class="notes">(quick search)</span><br/>243 <label for="defaultcriteriafindoptions">criteria: selected find option</label> <span class="notes">(quick search)</span><br/> 244 244 <textarea id="defaultcriteriafindoptions" name="defaultcriteriafindoptions" cols="32" rows="2"><?php echo htmlQuotes($therecord["defaultcriteriafindoptions"])?></textarea> 245 245 -
trunk/phpbms/modules/base/users_addedit.php
r638 r672 123 123 <p class="notes"> 124 124 user accounts marked as portal access cannot login to phpBMS, but are used by external applications 125 when creating/modif iying information from outside the application for recording purposes.125 when creating/modifying information from outside the application for recording purposes. 126 126 </p> 127 127 </fieldset> -
trunk/phpbms/modules/base/widgets/workload/class.php
r572 r672 253 253 <p><?php echo $bottomInfo ?></p> 254 254 255 <? }//endif ?>255 <?php }//endif ?> 256 256 </div> 257 257 -
trunk/phpbms/modules/bms/clients_import.php
r575 r672 175 175 </p> 176 176 <p> 177 Delim eters are commas (,) and enclosures are double-quotes ("). If you177 Delimiters are commas (,) and enclosures are double-quotes ("). If you 178 178 wish to escape a double-quote character inside of an enclosure, add another 179 179 double-quote character (e.g ...,"Benny ""The Jet"" Rodriguez",...), or with … … 195 195 </p> 196 196 <p> 197 Delim eters are commas (,) and enclosures are double-quotes ("). <span class="notes" >(This197 Delimiters are commas (,) and enclosures are double-quotes ("). <span class="notes" >(This 198 198 is done by default by Sugar CRM)</span> If you wish to escape a double-quote character 199 199 inside of an enclosure, add another double-quote character (e.g ...,"Benny -
trunk/phpbms/modules/bms/include/receipts.php
r657 r672 407 407 408 408 if(!in_array(((string)$variables["paymentmethodid"]),$this->_availablePaymentMethodUUIDs)) 409 $this->verifyErrors[] = "The `paymentmethod` field does not give an existing/acc petable payment method uuid.";409 $this->verifyErrors[] = "The `paymentmethod` field does not give an existing/acceptable payment method uuid."; 410 410 411 411 }else -
trunk/phpbms/modules/sample/include/sampletable.php
r621 r672 7 7 that helps in the above functions, or with display. 8 8 9 This sample will show you how to do some basic over ides.10 Remember to instantiate the overrid edclass on the add/edit page.9 This sample will show you how to do some basic overrides. 10 Remember to instantiate the overridden class on the add/edit page. 11 11 12 12