Home
last modified time | relevance | path

Searched refs:shortcutMode (Results 1 – 7 of 7) sorted by relevance

/dports/deskutils/coolreader/coolreader-cr3.2.55/android/src/org/coolreader/crengine/
H A DBookmarksDlg.java192 public void setShortcutMode( boolean shortcutMode ) { in setShortcutMode() argument
197 if ( !shortcutMode ) in setShortcutMode()
199 updateAdapter( shortcutMode ? new ShortcutBookmarkListAdapter() : new BookmarkListAdapter() ); in setShortcutMode()
205 public BookmarkList( Context context, boolean shortcutMode ) { in BookmarkList() argument
208 setShortcutMode(shortcutMode); in BookmarkList()
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Domain/Repository/
H A DPageRepository.php934 $shortcutMode = (int)$page['shortcut_mode'];
936 if ($dokType === self::DOKTYPE_SHORTCUT && ($page['shortcut'] || $shortcutMode)) {
937 if ($shortcutMode === self::SHORTCUT_MODE_NONE) {
941 …} elseif ($shortcutMode === self::SHORTCUT_MODE_FIRST_SUBPAGE || $shortcutMode === self::SHORTCUT_…
947 } elseif ($shortcutMode === self::SHORTCUT_MODE_PARENT_PAGE) {
986 …* @param int $shortcutMode The shortcut mode: 1 will select first subpage, 2 a random subpage, 3 t…
1002 …if ($resolveRandomPageShortcuts === false && (int)$shortcutMode === self::SHORTCUT_MODE_RANDOM_SUB…
1006 switch ($shortcutMode) {
1026 if ($shortcutMode == self::SHORTCUT_MODE_RANDOM_SUBPAGE && !empty($pageArray)) {
1088 $shortcutMode = (int)($page['shortcut_mode'] ?? self::SHORTCUT_MODE_NONE);
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Domain/Repository/
H A DPageRepository.php904 $shortcutMode = (int)$page['shortcut_mode'];
906 if ($dokType === self::DOKTYPE_SHORTCUT && ($page['shortcut'] || $shortcutMode)) {
907 if ($shortcutMode === self::SHORTCUT_MODE_NONE) {
911 …} elseif ($shortcutMode === self::SHORTCUT_MODE_FIRST_SUBPAGE || $shortcutMode === self::SHORTCUT_…
917 } elseif ($shortcutMode === self::SHORTCUT_MODE_PARENT_PAGE) {
956 …* @param int $shortcutMode The shortcut mode: 1 will select first subpage, 2 a random subpage, 3 t…
968 …public function getPageShortcut($shortcutFieldValue, $shortcutMode, $thisUid, $iteration = 20, $pa… argument
972 switch ($shortcutMode) {
983 if ($shortcutMode == self::SHORTCUT_MODE_RANDOM_SUBPAGE && !empty($pageArray)) {
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/frontend/Classes/Page/
H A DPageRepository.php1047 $shortcutMode = (int)$page['shortcut_mode'];
1049 if ($dokType === self::DOKTYPE_SHORTCUT && ($page['shortcut'] || $shortcutMode)) {
1050 if ($shortcutMode === self::SHORTCUT_MODE_NONE) {
1054 …} elseif ($shortcutMode === self::SHORTCUT_MODE_FIRST_SUBPAGE || $shortcutMode === self::SHORTCUT_…
1060 } elseif ($shortcutMode === self::SHORTCUT_MODE_PARENT_PAGE) {
1099 …* @param int $shortcutMode The shortcut mode: 1 will select first subpage, 2 a random subpage, 3 t…
1111 …public function getPageShortcut($shortcutFieldValue, $shortcutMode, $thisUid, $iteration = 20, $pa… argument
1115 switch ($shortcutMode) {
1120 if ($shortcutMode == self::SHORTCUT_MODE_RANDOM_SUBPAGE && !empty($pageArray)) {
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Controller/
H A DPageLayoutController.php400 $shortcutMode = (int)$this->pageinfo['shortcut_mode'];
405 if ($shortcutMode || $this->pageinfo['shortcut']) {
412 switch ($shortcutMode) {
438 … if ($targetPage !== [] && $shortcutMode !== PageRepository::SHORTCUT_MODE_RANDOM_SUBPAGE) {
443 …->sL(BackendUtility::getLabelFromItemlist('pages', 'shortcut_mode', (string)$shortcutMode))) . ')';
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Controller/
H A DPageLayoutController.php372 $shortcutMode = (int)$this->pageinfo['shortcut_mode'];
378 if ($shortcutMode || $this->pageinfo['shortcut']) {
379 switch ($shortcutMode) {
404 … if ($targetPage !== [] && $shortcutMode !== PageRepository::SHORTCUT_MODE_RANDOM_SUBPAGE) {
409 …->sL(BackendUtility::getLabelFromItemlist('pages', 'shortcut_mode', (string)$shortcutMode))) . ')';
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/backend/Classes/Controller/
H A DPageLayoutController.php558 $shortcutMode = (int)$this->pageinfo['shortcut_mode'];
564 if ($shortcutMode || $this->pageinfo['shortcut']) {
565 switch ($shortcutMode) {
590 … if ($targetPage !== [] && $shortcutMode !== PageRepository::SHORTCUT_MODE_RANDOM_SUBPAGE) {
595 …rs($lang->sL(BackendUtility::getLabelFromItemlist('pages', 'shortcut_mode', $shortcutMode))) . ')';