Home
last modified time | relevance | path

Searched refs:offset (Results 1 – 21 of 21) sorted by relevance

/webtrees/app/Module/
H A DSiteMapModule.php306 * @param int $offset
310 private function sitemapRecords(Tree $tree, string $type, int $limit, int $offset): Collection argument
314 $records = $this->sitemapFamilies($tree, $limit, $offset);
318 $records = $this->sitemapIndividuals($tree, $limit, $offset);
322 $records = $this->sitemapMedia($tree, $limit, $offset);
326 $records = $this->sitemapNotes($tree, $limit, $offset);
330 $records = $this->sitemapRepositories($tree, $limit, $offset);
334 $records = $this->sitemapSources($tree, $limit, $offset);
338 $records = $this->sitemapSubmitters($tree, $limit, $offset);
354 * @param int $offset
[all …]
/webtrees/app/Services/
H A DSearchService.php108 * @param int $offset
113 …public function searchFamilyNames(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
140 …is->paginateQuery($query, $this->familyRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
191 * @param int $offset
196 …public function searchIndividualNames(array $trees, array $search, int $offset = 0, int $limit = P… argument
210 …paginateQuery($query, $this->individualRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
240 * @param int $offset
245 …public function searchLocations(array $trees, array $search, int $offset = 0, int $limit = PHP_INT… argument
253 …->paginateQuery($query, $this->locationRowMapper(), GedcomRecord::accessFilter(), $offset, $limit);
261 * @param int $offset
[all …]
/webtrees/public/ckeditor-4.15.1-custom/plugins/find/dialogs/
H A Dfind.js5 …n(){return{textNode:this.textNode,offset:this.offset,character:this.textNode?this.textNode.getText…
6 …,this.offset=a.startOffset-1);this._={matchWord:b,walker:c,matchBoundary:!1}}function y(a,b){var d…
7 a.offset+1);d.setEndAt(c.editable(),CKEDITOR.POSITION_BEFORE_END);return d}function r(a){var b=c.ge…
8offset)this.offset--;else if(b&&this.offset<b.getLength()-1)this.offset++;else{for(b=null;!b&&!(b=…
9 … null}else d=b[0],b=b[b.length-1],a.setStart(d.textNode,d.offset),a.setEnd(b.textNode,b.offset+1);…
15 …tartAt(c.editable(),CKEDITOR.POSITION_AFTER_START);m.setEnd(g.textNode,g.offset);g=m;p=y(p);g.trim…
/webtrees/resources/js/
H A Dtreeview.js51 drag_start_x = tv.treeview.offset().left - pageX;
52 drag_start_y = tv.treeview.offset().top - pageY;
64 tv.treeview.offset({
101 var pos = $(box, tv.treeview).offset();
148 var offset = container.offset();
149 tv.leftMin = offset.left;
151 tv.topMin = offset.top;
174 var pos = el.offset();
191 var l = root_element.offset().left;
/webtrees/app/Report/
H A DRightToLeftSupport.php212 $offset = 0; // Be sure to look at the current character first
213 $charArray = self::getChar($workingText . "\n", $offset);
216 if (substr($workingText . "\n", $offset, 6) === '&nbsp;') {
217 $offset += 6; // This could be numeric punctuation
219 … $offset += $charArray['length']; // This could be numeric punctuation
222 $charArray = self::getChar($workingText . "\n", $offset);
238 $offset = $currentLen;
239 $nextChar = substr($workingText . "\n", $offset, 1);
573 * @param int $offset
577 private static function getChar(string $text, int $offset): array argument
[all …]
/webtrees/app/Http/RequestHandlers/
H A DAbstractTomSelectHandler.php52 $offset = ($page - 1) * self::RESULTS_PER_PAGE;
57 $results = $this->search($tree, $query, $offset, $limit, $at ? '@' : '');
79 * @param int $offset
85 …abstract protected function search(Tree $tree, string $query, int $offset, int $limit, string $at)… argument
H A DTomSelectPlace.php47 * @param int $offset
53 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
56 ->searchPlaces($tree, $query, $offset, $limit)
H A DTomSelectLocation.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 $results = $this->search_service->searchLocations([$tree], $search, $offset, $limit);
H A DTomSelectFamily.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 $results = $this->search_service->searchFamilyNames([$tree], $search, $offset, $limit);
H A DTomSelectRepository.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 $results = $this->search_service->searchRepositories([$tree], $search, $offset, $limit);
H A DTomSelectSource.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 … $results = $this->search_service->searchSourcesByName([$tree], $search, $offset, $limit);
H A DTomSelectNote.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 $results = $this->search_service->searchNotes([$tree], $search, $offset, $limit);
H A DTomSelectIndividual.php52 * @param int $offset
58 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
67 … $results = $this->search_service->searchIndividualNames([$tree], $search, $offset, $limit);
H A DTomSelectSubmission.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 $results = $this->search_service->searchSubmissions([$tree], $search, $offset, $limit);
H A DTomSelectMediaObject.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 $results = $this->search_service->searchMedia([$tree], $search, $offset, $limit);
H A DTomSelectSubmitter.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 $results = $this->search_service->searchSubmitters([$tree], $search, $offset, $limit);
H A DTomSelectSharedNote.php53 * @param int $offset
59 …protected function search(Tree $tree, string $query, int $offset, int $limit, string $at): Collect… argument
68 $results = $this->search_service->searchSharedNotes([$tree], $search, $offset, $limit);
/webtrees/public/css/
H A Dvendor.min.css6offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}[dir] ::-webkit-color-swatch-wrapp…
11 …ter-events:visiblePainted;pointer-events:auto}.leaflet-container{outline-offset:1px}[dir] .leaflet…
/webtrees/public/js/
H A Dwebtrees.min.js1offset().left-t,o=i.treeview.offset().top-r,a=!0})),$(document).on("mousemove touchmove",(function…
/webtrees/
H A Dphpstan-baseline.neon214 message: '#^Cannot access offset int on mixed\.$#'
244 message: '#^Cannot access offset int on mixed\.$#'
280 message: '#^Cannot access offset int on mixed\.$#'
316 message: '#^Cannot access offset int on mixed\.$#'
346 message: '#^Cannot access offset int on mixed\.$#'
382 message: '#^Cannot access offset int on mixed\.$#'
508 message: '#^Cannot access offset ''BURI'' on mixed\.$#'
514 message: '#^Cannot access offset ''CHAN'' on mixed\.$#'
520 message: '#^Cannot access offset string on mixed\.$#'
1060 message: '#^Cannot access an offset on mixed\.$#'
[all …]
/webtrees/public/ckeditor-4.15.1-custom/
H A Dckeditor.js163 …apsed:f}},createBookmark2:function(){function a(b){var e=b.container,d=b.offset,m;m=e;var f=d;m=m.…
165offset=d}function b(a,c){var e=c.getCustomData("cke-fillingChar");if(e){var d=a.container;e.equals… property
166 …etAddress(c),end:d?null:m.container.getAddress(c),startOffset:f.offset,endOffset:m.offset,normaliz…
453 …gth;if(c.getLength()>f&&e&&e.intersectsNode(c.$)){var g=[{node:d.anchorNode,offset:d.anchorOffset}, property
454offset:d.focusOffset}];d.anchorNode==c.$&&d.anchorOffset>f&&(g[0].offset-=f);d.focusNode==c.$&&d.f… property
477offset:0};for(var e=d.children,f,g,h=b.duplicate(),k=0,l=e.length-1,m=-1,q,r;k<=l;)if(m=Math.floor…
478offset:e.length}:{container:f,offset:f.nodeValue.length};for(d=e.length;0<h&&0<d;)g=e[--d],g.nodeT…
479offset:a(f)+(0<q?0:1)};for(;0<h;)try{g=f[0<q?"previousSibling":"nextSibling"],g.nodeType==CKEDITOR…
480 a.setEnd(new CKEDITOR.dom.node(d.container),d.offset),a.endContainer.getPosition(a.startContainer)&…
547 …unction(a,b,c,d){a=a.toLowerCase();this.icons[a]||(this.icons[a]={path:b,offset:c||0,bgsize:d||"16… property
[all …]