mirror of
				https://git.code.sf.net/p/seeddms/code
				synced 2025-10-31 05:11:27 +00:00 
			
		
		
		
	issue warning if ordering of folder contents is != 's'
This commit is contained in:
		
							parent
							
								
									35043b1cda
								
							
						
					
					
						commit
						0994429edd
					
				|  | @ -46,7 +46,7 @@ if($settings->_quota > 0) { | |||
| } | ||||
| 
 | ||||
| $tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME'])); | ||||
| $view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'folder'=>$folder, 'strictformcheck'=>$settings->_strictFormCheck, 'enablelargefileupload'=>$settings->_enableLargeFileUpload, 'enableadminrevapp'=>$settings->_enableAdminRevApp, 'enableownerrevapp'=>$settings->_enableOwnerRevApp, 'enableselfrevapp'=>$settings->_enableSelfRevApp, 'dropfolderdir'=>$settings->_dropFolderDir, 'workflowmode'=>$settings->_workflowMode, 'presetexpiration'=>$settings->_presetExpirationDate, 'sortusersinlist'=>$settings->_sortUsersInList)); | ||||
| $view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'folder'=>$folder, 'strictformcheck'=>$settings->_strictFormCheck, 'enablelargefileupload'=>$settings->_enableLargeFileUpload, 'enableadminrevapp'=>$settings->_enableAdminRevApp, 'enableownerrevapp'=>$settings->_enableOwnerRevApp, 'enableselfrevapp'=>$settings->_enableSelfRevApp, 'dropfolderdir'=>$settings->_dropFolderDir, 'workflowmode'=>$settings->_workflowMode, 'presetexpiration'=>$settings->_presetExpirationDate, 'sortusersinlist'=>$settings->_sortUsersInList, 'orderby'=>$settings->_sortFoldersDefault)); | ||||
| if($view) { | ||||
| 	$view->show(); | ||||
| 	exit; | ||||
|  |  | |||
|  | @ -39,7 +39,7 @@ if ($folder->getAccessMode($user) < M_READWRITE) { | |||
| } | ||||
| 
 | ||||
| $tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME'])); | ||||
| $view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'folder'=>$folder, 'strictformcheck'=>$settings->_strictFormCheck)); | ||||
| $view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'folder'=>$folder, 'strictformcheck'=>$settings->_strictFormCheck, 'orderby'=>$settings->_sortFoldersDefault)); | ||||
| if($view) { | ||||
| 	$view->show(); | ||||
| 	exit; | ||||
|  |  | |||
|  | @ -52,7 +52,7 @@ $attrdefs = $dms->getAllAttributeDefinitions(array(SeedDMS_Core_AttributeDefinit | |||
| $accessop = new SeedDMS_AccessOperation($document, $user, $settings); | ||||
| 
 | ||||
| $tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME'])); | ||||
| $view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'folder'=>$folder, 'document'=>$document, 'attrdefs'=>$attrdefs, 'strictformcheck'=>$settings->_strictFormCheck)); | ||||
| $view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'folder'=>$folder, 'document'=>$document, 'attrdefs'=>$attrdefs, 'strictformcheck'=>$settings->_strictFormCheck, 'orderby'=>$settings->_sortFoldersDefault)); | ||||
| if($view) { | ||||
| 	$view->setParam('accessobject', $accessop); | ||||
| 	$view->show(); | ||||
|  |  | |||
|  | @ -40,7 +40,7 @@ if ($folder->getAccessMode($user) < M_READWRITE) { | |||
| $attrdefs = $dms->getAllAttributeDefinitions(array(SeedDMS_Core_AttributeDefinition::objtype_folder, SeedDMS_Core_AttributeDefinition::objtype_all)); | ||||
| 
 | ||||
| $tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME'])); | ||||
| $view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'folder'=>$folder, 'attrdefs'=>$attrdefs, 'strictformcheck'=>$settings->_strictFormCheck, 'rootfolderid'=>$settings->_rootFolderID)); | ||||
| $view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'folder'=>$folder, 'attrdefs'=>$attrdefs, 'strictformcheck'=>$settings->_strictFormCheck, 'rootfolderid'=>$settings->_rootFolderID, 'orderby'=>$settings->_sortFoldersDefault)); | ||||
| if($view) { | ||||
| 	$view->show(); | ||||
| 	exit; | ||||
|  |  | |||
|  | @ -44,6 +44,7 @@ class SeedDMS_View_AddDocument extends SeedDMS_Bootstrap_Style { | |||
| 		$workflowmode = $this->params['workflowmode']; | ||||
| 		$presetexpiration = $this->params['presetexpiration']; | ||||
| 		$sortusersinlist = $this->params['sortusersinlist']; | ||||
| 		$orderby = $this->params['orderby']; | ||||
| 		$folderid = $folder->getId(); | ||||
| 
 | ||||
| 		$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName())))); | ||||
|  | @ -142,7 +143,7 @@ $(document).ready(function() { | |||
| 		</tr> | ||||
| 		<tr> | ||||
| 			<td><?php printMLText("sequence");?>:</td>
 | ||||
| 			<td><?php $this->printSequenceChooser($folder->getDocuments('s'));?></td>
 | ||||
| 			<td><?php $this->printSequenceChooser($folder->getDocuments('s')); if($orderby != 's') echo "<br />".getMLText('order_by_sequence_off'); ?></td>
 | ||||
| 		</tr> | ||||
| <?php | ||||
| 			$attrdefs = $dms->getAllAttributeDefinitions(array(SeedDMS_Core_AttributeDefinition::objtype_document, SeedDMS_Core_AttributeDefinition::objtype_all)); | ||||
|  |  | |||
|  | @ -36,6 +36,7 @@ class SeedDMS_View_AddSubFolder extends SeedDMS_Bootstrap_Style { | |||
| 		$user = $this->params['user']; | ||||
| 		$folder = $this->params['folder']; | ||||
| 		$strictformcheck = $this->params['strictformcheck']; | ||||
| 		$orderby = $this->params['orderby']; | ||||
| 
 | ||||
| 		$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName())))); | ||||
| 		$this->globalNavigation($folder); | ||||
|  | @ -87,7 +88,7 @@ function checkForm() | |||
| 		</tr> | ||||
| 		<tr> | ||||
| 			<td class="inputDescription"><?php printMLText("sequence");?>:</td>
 | ||||
| 			<td><?php $this->printSequenceChooser($folder->getSubFolders('s'));?></td>
 | ||||
| 			<td><?php $this->printSequenceChooser($folder->getSubFolders('s')); if($orderby != 's') echo "<br />".getMLText('order_by_sequence_off');?></td>
 | ||||
| 		</tr> | ||||
| <?php | ||||
| 	$attrdefs = $dms->getAllAttributeDefinitions(array(SeedDMS_Core_AttributeDefinition::objtype_folder, SeedDMS_Core_AttributeDefinition::objtype_all)); | ||||
|  |  | |||
|  | @ -38,6 +38,7 @@ class SeedDMS_View_EditDocument extends SeedDMS_Bootstrap_Style { | |||
| 		$document = $this->params['document']; | ||||
| 		$attrdefs = $this->params['attrdefs']; | ||||
| 		$strictformcheck = $this->params['strictformcheck']; | ||||
| 		$orderby = $this->params['orderby']; | ||||
| 
 | ||||
| 		$this->htmlStartPage(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName())))); | ||||
| 		$this->globalNavigation($folder); | ||||
|  | @ -137,6 +138,7 @@ function checkForm() | |||
| 			print "<td class=\"inputDescription\">" . getMLText("sequence") . ":</td>"; | ||||
| 			print "<td>"; | ||||
| 			$this->printSequenceChooser($folder->getDocuments('s'), $document->getID()); | ||||
| 			if($orderby != 's') echo "<br />".getMLText('order_by_sequence_off');  | ||||
| 			print "</td></tr>"; | ||||
| 		} | ||||
| 		if($attrdefs) { | ||||
|  |  | |||
|  | @ -38,6 +38,7 @@ class SeedDMS_View_EditFolder extends SeedDMS_Bootstrap_Style { | |||
| 		$attrdefs = $this->params['attrdefs']; | ||||
| 		$rootfolderid = $this->params['rootfolderid']; | ||||
| 		$strictformcheck = $this->params['strictformcheck']; | ||||
| 		$orderby = $this->params['orderby']; | ||||
| 
 | ||||
| 		$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName())))); | ||||
| 		$this->globalNavigation($folder); | ||||
|  | @ -96,6 +97,7 @@ function checkForm() | |||
| 			print "<td>" . getMLText("sequence") . ":</td>"; | ||||
| 			print "<td>"; | ||||
| 			$this->printSequenceChooser($parent->getSubFolders('s'), $folder->getID()); | ||||
| 			if($orderby != 's') echo "<br />".getMLText('order_by_sequence_off');  | ||||
| 			print "</td></tr>\n"; | ||||
| 		} | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Uwe Steinmann
						Uwe Steinmann