66
77 < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
88 < base href ="../ ">
9+ < link rel ="icon " type ="image/png " sizes ="32x32 " href ="images/favicon-32x32.png "/>
10+ < link rel ="icon " type ="image/png " sizes ="16x16 " href ="images/favicon-16x16.png "/>
911 < link rel ="icon " href ="images/favicon.ico "/>
12+ < link rel ="apple-touch-icon " href ="images/apple-touch-icon.png "/>
1013 < link rel ="stylesheet " href ="css/normalize.css ">
1114 < link rel ="stylesheet " href ="css/base.css ">
1215 < link rel ="preconnect " href ="https://fonts.gstatic.com ">
@@ -979,21 +982,20 @@ <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
979982 </ dl >
980983
981984
982- < h5 class ="phpdocumentor-tag-list__heading " id ="tags ">
985+ < h5 class ="phpdocumentor-tag-list__heading " id ="method_limitFields_tags ">
983986 Tags
984- < a href ="classes/CodeIgniter-API-BaseTransformer.html#method_limitFields#tags " class ="headerlink "> < i class ="fas fa-link "> </ i > </ a >
987+ < a href ="classes/CodeIgniter-API-BaseTransformer.html#method_limitFields_tags " class ="headerlink "> < i class ="fas fa-link "> </ i > </ a >
985988
986989 </ h5 >
987990 < dl class ="phpdocumentor-tag-list ">
988- < dt class ="phpdocumentor-tag-list__entry ">
989- < span class ="phpdocumentor-tag__name "> throws</ span >
990- </ dt >
991- < dd class ="phpdocumentor-tag-list__definition ">
991+ < dt class ="phpdocumentor-tag-list__entry ">
992+ < span class ="phpdocumentor-tag__name "> throws</ span >
993+ </ dt >
994+ < dd class ="phpdocumentor-tag-list__definition ">
992995 < span class ="phpdocumentor-tag-link "> < abbr title ="\InvalidArgumentException "> InvalidArgumentException</ abbr > </ span >
993-
994-
996+
995997 </ dd >
996- </ dl >
998+ </ dl >
997999
9981000
9991001
@@ -1005,100 +1007,7 @@ <h5 class="phpdocumentor-return-value__heading">Return values</h5>
10051007</ article >
10061008 </ section >
10071009
1008- < div class ="phpdocumentor-modal " id ="source-view ">
1009- < div class ="phpdocumentor-modal-bg " data-exit-button > </ div >
1010- < div class ="phpdocumentor-modal-container ">
1011- < div class ="phpdocumentor-modal-content ">
1012- < pre style ="max-height: 500px; overflow-y: scroll " data-src ="files/system/API/BaseTransformer.php.txt " class ="language-php line-numbers linkable-line-numbers "> </ pre >
1013- </ div >
1014- < button data-exit-button class ="phpdocumentor-modal__close "> ×</ button >
1015- </ div >
1016- </ div >
1017-
1018- < script type ="text/javascript ">
1019- ( function ( ) {
1020- function loadExternalCodeSnippet ( el , url , line ) {
1021- Array . prototype . slice . call ( el . querySelectorAll ( 'pre[data-src]' ) ) . forEach ( ( pre ) => {
1022- const src = url || pre . getAttribute ( 'data-src' ) . replace ( / \\ / g, '/' ) ;
1023- const language = 'php' ;
1024-
1025- const code = document . createElement ( 'code' ) ;
1026- code . className = 'language-' + language ;
1027- pre . textContent = '' ;
1028- pre . setAttribute ( 'data-line' , line )
1029- code . textContent = 'Loading…' ;
1030- pre . appendChild ( code ) ;
1031-
1032- var xhr = new XMLHttpRequest ( ) ;
1033-
1034- xhr . open ( 'GET' , src , true ) ;
1035-
1036- xhr . onreadystatechange = function ( ) {
1037- if ( xhr . readyState !== 4 ) {
1038- return ;
1039- }
1040-
1041- if ( xhr . status < 400 && xhr . responseText ) {
1042- code . textContent = xhr . responseText ;
1043- Prism . highlightElement ( code ) ;
1044- d = document . getElementsByClassName ( "line-numbers" ) ;
1045- d [ 0 ] . scrollTop = d [ 0 ] . children [ 1 ] . offsetTop ;
1046- return ;
1047- }
1048-
1049- if ( xhr . status === 404 ) {
1050- code . textContent = '✖ Error: File could not be found' ;
1051- return ;
1052- }
1053-
1054- if ( xhr . status >= 400 ) {
1055- code . textContent = '✖ Error ' + xhr . status + ' while fetching file: ' + xhr . statusText ;
1056- return ;
1057- }
1058-
1059- code . textContent = '✖ Error: An unknown error occurred' ;
1060- } ;
1061-
1062- xhr . send ( null ) ;
1063- } ) ;
1064- }
1065-
1066- const modalButtons = document . querySelectorAll ( "[data-modal]" ) ;
1067- const openedAsLocalFile = window . location . protocol === 'file:' ;
1068- if ( modalButtons . length > 0 && openedAsLocalFile ) {
1069- console . warn (
1070- 'Viewing the source code is unavailable because you are opening this page from the file:// scheme; ' +
1071- 'browsers block XHR requests when a page is opened this way'
1072- ) ;
1073- }
1074-
1075- modalButtons . forEach ( function ( trigger ) {
1076- if ( openedAsLocalFile ) {
1077- trigger . setAttribute ( "hidden" , "hidden" ) ;
1078- }
1079-
1080- trigger . addEventListener ( "click" , function ( event ) {
1081- event . preventDefault ( ) ;
1082- const modal = document . getElementById ( trigger . dataset . modal ) ;
1083- if ( ! modal ) {
1084- console . error ( `Modal with id "${ trigger . dataset . modal } " could not be found` ) ;
1085- return ;
1086- }
1087- modal . classList . add ( "phpdocumentor-modal__open" ) ;
1088-
1089- loadExternalCodeSnippet ( modal , trigger . dataset . src || null , trigger . dataset . line )
1090- const exits = modal . querySelectorAll ( "[data-exit-button]" ) ;
1091- exits . forEach ( function ( exit ) {
1092- exit . addEventListener ( "click" , function ( event ) {
1093- event . preventDefault ( ) ;
1094- modal . classList . remove ( "phpdocumentor-modal__open" ) ;
1095- } ) ;
1096- } ) ;
1097- } ) ;
1098- } ) ;
1099- } ) ( ) ;
1100- </ script >
1101-
1010+
11021011 </ article >
11031012 </ section >
11041013 < section class ="phpdocumentor-on-this-page__sidebar ">
0 commit comments