Home
last modified time | relevance | path

Searched refs:clipObj (Results 1 – 25 of 25) sorted by relevance

/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/filelist/Classes/Controller/
H A DFileListController.php366 $this->filelist->clipObj->setCmd($CB);
367 $this->filelist->clipObj->cleanCurrent();
369 $this->filelist->clipObj->endClipboard();
389 $this->filelist->clipObj->cleanCurrent();
725 $confirmText = $this->filelist->clipObj
728 ->setHref($this->filelist->clipObj
828 $this->filelist->clipObj->fileMode = true;
829 $this->filelist->clipObj->initializeClipboard();
840 $this->filelist->clipObj->setCmd($CB);
841 $this->filelist->clipObj->cleanCurrent();
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Controller/File/
H A DFileController.php243 $clipObj = GeneralUtility::makeInstance(Clipboard::class);
244 $clipObj->initializeClipboard($request);
246 $clipObj->setCurrentPad((string)($this->CB['pad'] ?? ''));
247 $this->setPasteCmd($clipObj);
250 $clipObj->setCurrentPad((string)($this->CB['pad'] ?? ''));
251 $this->setDeleteCmd($clipObj);
359 protected function setDeleteCmd(Clipboard $clipObj): void argument
362 foreach ($clipObj->elFromTable('_FILE') as $key => $path) {
364 $clipObj->removeElement($key);
366 $clipObj->endClipboard();
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/filelist/Classes/Controller/
H A DFileListController.php387 $this->filelist->clipObj->fileMode = true;
388 $this->filelist->clipObj->initializeClipboard();
391 $CB['el'] = $this->filelist->clipObj->cleanUpCBC(array_merge(
399 $this->filelist->clipObj->setCmd($CB);
400 $this->filelist->clipObj->cleanCurrent();
402 $this->filelist->clipObj->endClipboard();
421 $this->filelist->clipObj->cleanCurrent();
422 $this->filelist->clipObj->endClipboard();
720 $elFromTable = $this->filelist->clipObj->elFromTable('_FILE');
736 $confirmText = $this->filelist->clipObj
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/backend/Classes/Controller/
H A DSimpleDataHandlerController.php265 $clipObj = GeneralUtility::makeInstance(Clipboard::class);
266 $clipObj->initializeClipboard();
268 $clipObj->setCurrentPad($this->CB['pad']);
269 $this->cmd = $clipObj->makePasteCmdArray(
276 $clipObj->setCurrentPad($this->CB['pad']);
277 $this->cmd = $clipObj->makeDeleteCmdArray($this->cmd);
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Controller/
H A DSimpleDataHandlerController.php214 $clipObj = GeneralUtility::makeInstance(Clipboard::class);
215 $clipObj->initializeClipboard();
217 $clipObj->setCurrentPad($this->CB['pad']);
218 $this->cmd = $clipObj->makePasteCmdArray(
225 $clipObj->setCurrentPad($this->CB['pad']);
226 $this->cmd = $clipObj->makeDeleteCmdArray($this->cmd);
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Controller/
H A DSimpleDataHandlerController.php207 $clipObj = GeneralUtility::makeInstance(Clipboard::class);
208 $clipObj->initializeClipboard($request);
210 $clipObj->setCurrentPad((string)($this->CB['pad'] ?? ''));
211 $this->setPasteCmd($clipObj);
214 $clipObj->setCurrentPad((string)($this->CB['pad'] ?? ''));
215 $this->setDeleteCmd($clipObj);
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/filelist/Classes/
H A DFileList.php158 public $clipObj; variable in TYPO3\\CMS\\Filelist\\FileList
197 $this->clipObj = GeneralUtility::makeInstance(Clipboard::class);
198 $this->clipObj->fileMode = true;
199 $this->clipObj->initializeClipboard();
358 $elFromTable = $this->clipObj->elFromTable('_FILE');
360 $clipboardMode = $this->clipObj->clipData[$this->clipObj->current]['mode'] ?? '';
393 if ($this->clipObj->current !== 'normal' && $hasContent) {
924 if ($this->clipObj->current === 'normal') {
925 $isSel = $this->clipObj->isSelected('_FILE', $md5);
964 $elFromTable = $this->clipObj->elFromTable('_FILE');
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/backend/Classes/Controller/File/
H A DFileController.php232 $clipObj = GeneralUtility::makeInstance(Clipboard::class);
233 $clipObj->initializeClipboard();
235 $clipObj->setCurrentPad($this->CB['pad']);
236 $this->file = $clipObj->makePasteCmdArray_file($this->CB['paste'], $this->file);
239 $clipObj->setCurrentPad($this->CB['pad']);
240 $this->file = $clipObj->makeDeleteCmdArray_file($this->file);
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Controller/File/
H A DFileController.php216 $clipObj = GeneralUtility::makeInstance(Clipboard::class);
217 $clipObj->initializeClipboard();
219 $clipObj->setCurrentPad($this->CB['pad']);
220 $this->file = $clipObj->makePasteCmdArray_file($this->CB['paste'], $this->file);
223 $clipObj->setCurrentPad($this->CB['pad']);
224 $this->file = $clipObj->makeDeleteCmdArray_file($this->file);
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/filelist/Classes/Controller/
H A DFileListController.php330 $CB['el'] = $this->filelist->clipObj->cleanUpCBC($CBC, '_FILE');
335 $this->filelist->clipObj->setCmd($CB);
336 $this->filelist->clipObj->cleanCurrent();
337 $this->filelist->clipObj->endClipboard();
341 $items = $this->filelist->clipObj->cleanUpCBC(
361 $this->filelist->clipObj->cleanCurrent();
362 $this->filelist->clipObj->endClipboard();
491 'mode' => $this->filelist->clipObj->current,
594 $elFromTable = $this->filelist->clipObj->elFromTable('_FILE');
610 $confirmText = $this->filelist->clipObj
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/recordlist/Classes/Controller/
H A DRecordListController.php300 $dblist->clipObj = GeneralUtility::makeInstance(Clipboard::class);
302 $dblist->clipObj->initializeClipboard();
310 …$CB['el'] = $dblist->clipObj->cleanUpCBC(array_merge(GeneralUtility::_POST('CBH'), (array)GeneralU…
317 $dblist->clipObj->setCmd($CB);
319 $dblist->clipObj->cleanCurrent();
321 $dblist->clipObj->endClipboard();
324 …$dblist->dontShowClipControlPanels = ($dblist->clipObj->current === 'normal' && !$this->modTSconfi…
330 … $items = $dblist->clipObj->cleanUpCBC(GeneralUtility::_POST('CBC'), $this->cmd_table, 1);
500 …'clipBoard'] && $dblist->showClipboard && ($dblist->HTMLcode || $dblist->clipObj->hasElements())) {
501 … $this->body .= '<div class="db_list-dashboard">' . $dblist->clipObj->printClipboard() . '</div>';
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/recordlist/Classes/Controller/
H A DRecordListController.php404 $dblist->clipObj = GeneralUtility::makeInstance(Clipboard::class);
406 $dblist->clipObj->initializeClipboard();
414 …$CB['el'] = $dblist->clipObj->cleanUpCBC(array_merge(GeneralUtility::_POST('CBH'), (array)GeneralU…
421 $dblist->clipObj->setCmd($CB);
423 $dblist->clipObj->cleanCurrent();
425 $dblist->clipObj->endClipboard();
428 …$dblist->dontShowClipControlPanels = ($dblist->clipObj->current === 'normal' && !$this->modTSconfi…
434 … $items = $dblist->clipObj->cleanUpCBC(GeneralUtility::_POST('CBC'), $this->cmd_table, 1);
623 …'clipBoard'] && $dblist->showClipboard && ($dblist->HTMLcode || $dblist->clipObj->hasElements())) {
624 … $this->body .= '<div class="db_list-dashboard">' . $dblist->clipObj->printClipboard() . '</div>';
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/filelist/Classes/
H A DFileList.php249 public $clipObj; variable in TYPO3\\CMS\\Filelist\\FileList
478 $elFromTable = $this->clipObj->elFromTable($table);
480 … $clipboardMode = $this->clipObj->clipData[$this->clipObj->current]['mode'] ?? '';
493 ' href="' . htmlspecialchars($this->clipObj->pasteUrl(
497 … . ' data-content="' . htmlspecialchars($this->clipObj->confirmMsgText(
513 if ($this->clipObj->current !== 'normal' && $iOut) {
1253 if ($this->clipObj->current === 'normal') {
1254 $isSel = $this->clipObj->isSelected('_FILE', $md5);
1289 $checked = $this->clipObj->isSelected('_FILE', $md5) ? ' checked="checked"' : '';
1293 $elFromTable = $this->clipObj->elFromTable('_FILE');
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/filelist/Classes/
H A DFileList.php160 public $clipObj; variable in TYPO3\\CMS\\Filelist\\FileList
205 $this->clipObj = GeneralUtility::makeInstance(Clipboard::class);
206 $this->clipObj->initializeClipboard($request);
833 if ($this->clipObj->current === 'normal') {
834 $isSel = $this->clipObj->isSelected('_FILE', $md5);
838 $copyUrl = $this->clipObj->selUrlFile($fullIdentifier, true, $isSel === 'copy');
847 $cutUrl = $this->clipObj->selUrlFile($fullIdentifier, false, $isSel === 'cut');
855 $elFromTable = $this->clipObj->elFromTable('_FILE');
857 … ($this->clipObj->clipData[$this->clipObj->current]['mode'] ?? '') === 'copy' ? 'copy' : 'move'
880 $pasteUrl = $this->clipObj->pasteUrl('_FILE', $fullIdentifier);
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/recordlist/Classes/RecordList/
H A DDatabaseRecordList.php528 public $clipObj; variable in TYPO3\\CMS\\Recordlist\\RecordList\\DatabaseRecordList
729 $elFromTable = $this->clipObj->elFromTable('');
862 $elFromTable = $this->clipObj->elFromTable('');
866 ->setHref($this->clipObj->pasteUrl('', $this->id))
1662 $elFromTable = $this->clipObj->elFromTable($table);
1664 $href = htmlspecialchars($this->clipObj->pasteUrl($table, $this->id));
1676 if ($this->clipObj->current !== 'normal') {
2334 if ($this->clipObj->current === 'normal') {
2336 $isSel = (string)$this->clipObj->isSelected($table, $row['uid']);
2425 $elFromTable = $this->clipObj->elFromTable($table);
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/recordlist/Classes/RecordList/
H A DDatabaseRecordList.php482 public $clipObj; variable in TYPO3\\CMS\\Recordlist\\RecordList\\DatabaseRecordList
671 $elFromTable = $this->clipObj->elFromTable('');
675 ->setHref($this->clipObj->pasteUrl('', $this->id))
1474 $elFromTable = $this->clipObj->elFromTable($table);
1488 if ($this->clipObj->current !== 'normal') {
2181 if ($this->clipObj->current === 'normal') {
2198 . htmlspecialchars($this->clipObj->selUrlDB(
2221 . htmlspecialchars($this->clipObj->selUrlDB(
2235 . htmlspecialchars($this->clipObj->selUrlDB(
2270 $elFromTable = $this->clipObj->elFromTable($table);
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/recordlist/Classes/RecordList/
H A DDatabaseRecordList.php314 public $clipObj; variable in TYPO3\\CMS\\Recordlist\\RecordList\\DatabaseRecordList
1296 && $this->clipObj->current !== 'normal'
1861 if ($this->clipObj->current !== 'normal') {
1865 $isSel = $this->clipObj->isSelected($table, $row['uid']);
1894 $elFromTable = $this->clipObj->elFromTable($table);
1897 || $this->clipObj->elFromTable($table) === []
1903 $pasteAfterUrl = $this->clipObj->pasteUrl($table, -$row['uid']);
1913 if ($table !== 'pages' || !$isEditable || $this->clipObj->elFromTable() === []) {
1917 $pasteIntoUrl = $this->clipObj->pasteUrl('', $row['uid']);
1978 if ($this->clipObj === null) {
[all …]
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADAMaya/src/
H A DCOLLADAMayaAnimationExporter.cpp241 MObject clipObj = clipItr.thisNode(&status); in exportAnimations() local
243 if (clipObj.hasFn(MFn::kDependencyNode)) in exportAnimations()
245 MFnDependencyNode ClipFnNode(clipObj); in exportAnimations()
278 createAnimationClip(clipObj); in exportAnimations()
/dports/graphics/cenon/Cenon/
H A DDocView.m4350 { id imageObj, clipObj;
4354 clipObj = ([[slist objectAtIndex:0] isMemberOfClass:[VImage class]]) ?
4356 if (([clipObj isMemberOfClass:[VPath class]] && [clipObj closed]) ||
4357 ([clipObj isMemberOfClass:[VArc class]] && Abs([clipObj angle]) == 360.0) ||
4358 ([clipObj isMemberOfClass:[VPolyLine class]] &&
4359 … SqrDistPoints([clipObj pointWithNum:0], [clipObj pointWithNum:MAXINT]) < TOLERANCE) ||
4360 [clipObj isMemberOfClass:[VRectangle class]])
4364 [nImageObj join:clipObj];
4365 [slist removeObject:clipObj];
4367 [layerObject removeObject:clipObj];
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/recordlist/Classes/Controller/
H A DRecordListController.php196 $dblist->clipObj = $clipboard;
/dports/graphics/ming/libming-ming-0_4_8/py_ext/
H A Dming.py640 def addExport(self, clipObj, libName): argument
641 return mingc.SWFMovie_addExport(self.this, clipObj, libName)
/dports/graphics/p5-ming/libming-ming-0_4_8/py_ext/
H A Dming.py640 def addExport(self, clipObj, libName): argument
641 return mingc.SWFMovie_addExport(self.this, clipObj, libName)
/dports/graphics/py-ming/libming-ming-0_4_8/py_ext/
H A Dming.py640 def addExport(self, clipObj, libName): argument
641 return mingc.SWFMovie_addExport(self.this, clipObj, libName)
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/sys_action/Classes/
H A DActionTask.php927 …anels = (!$this->taskObject->MOD_SETTINGS['bigControlPanel'] && $dblist->clipObj->current === 'nor…
/dports/www/nextcloud/nextcloud/core/js/dist/
H A Dmain.js.map1clipObj","transfer","targetFixed","fixTop","fixLeft","startPosition","clipInit","Sine","Circ","Ela…