Changeset 19466
- Timestamp:
- 06/22/09 22:17:48 (8 months ago)
- Files:
-
- plugins/swDoctrineAssetsLibraryPlugin/branches/sf1.2-vjousse/lib/form/sfAssetCreateFolderForm.class.php (modified) (1 diff)
- plugins/swDoctrineAssetsLibraryPlugin/branches/sf1.2-vjousse/modules/sfAsset/i18n/sfAsset.fr.xml (modified) (1 diff)
- plugins/swDoctrineAssetsLibraryPlugin/branches/sf1.2-vjousse/modules/sfAsset/templates/_sidebar_list.php (modified) (1 diff)
- plugins/swDoctrineAssetsLibraryPlugin/branches/sf1.2-vjousse/modules/sfAsset/templates/createFolderSuccess.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/swDoctrineAssetsLibraryPlugin/branches/sf1.2-vjousse/lib/form/sfAssetCreateFolderForm.class.php
r14791 r19466 26 26 $this->setDefaults($defaults); 27 27 } 28 28 29 } 29 30 plugins/swDoctrineAssetsLibraryPlugin/branches/sf1.2-vjousse/modules/sfAsset/i18n/sfAsset.fr.xml
r19440 r19466 351 351 <target>Répertoire parent</target> 352 352 </trans-unit> 353 <trans-unit> 354 <source>Name</source> 355 <target>Nom</target> 356 </trans-unit> 353 357 </body> 354 358 </file> plugins/swDoctrineAssetsLibraryPlugin/branches/sf1.2-vjousse/modules/sfAsset/templates/_sidebar_list.php
r19440 r19466 41 41 <div id="input_new_directory" style="display: none"> 42 42 <table> 43 <?php echo $createFolderForm ?> 44 </table> 43 <tr> 44 <th> 45 <?php echo $createFolderForm['name']->renderLabel(__('Name',null,'sfAsset')) ?> 46 </th> 47 <td> 48 <?php echo $createFolderForm['name'] ?> 49 </td> 50 </tr> 51 <tr> 52 <th> 53 <?php echo $createFolderForm['parent_folder']->renderLabel(__('Parent folder',null,'sfAsset')) ?> 54 </th> 55 <td> 56 <?php echo $createFolderForm['parent_folder'] ?><br /> 57 </td> 58 </tr> </table> 45 59 <input type="submit" name="create" value="<?php echo __('Create', null, 'sfAsset') ?>"/> 46 60 </div> 61 <?php echo $createFolderForm['_csrf_token'] ?> 47 62 </form> 48 63 plugins/swDoctrineAssetsLibraryPlugin/branches/sf1.2-vjousse/modules/sfAsset/templates/createFolderSuccess.php
r14796 r19466 1 <?php use_helper('Javascript') ?> 1 2 <?php use_helper('Validation', 'I18N') ?> 2 3

