| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269 |
- <?xml version="1.0" encoding="iso-8859-1"?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <!-- template designed by Marco Von Ballmoos -->
- <title></title>
- <link rel="stylesheet" href="media/stylesheet.css" />
- </head>
- <body>
-
<a name="top"></a>
- <h2>Full index</h2>
- <h3>Package indexes</h3>
- <ul>
- <li><a href="elementindex_sloodleclassroom.html">sloodleclassroom</a></li>
- <li><a href="elementindex_sloodle.html">sloodle</a></li>
- <li><a href="elementindex_sloodlelang.html">sloodlelang</a></li>
- <li><a href="elementindex_sloodlelogin.html">sloodlelogin</a></li>
- <li><a href="elementindex_sloodlechat.html">sloodlechat</a></li>
- <li><a href="elementindex_sloodledistributor.html">sloodledistributor</a></li>
- <li><a href="elementindex_sloodleglossary.html">sloodleglossary</a></li>
- <li><a href="elementindex_sloodlepwreset.html">sloodlepwreset</a></li>
- <li><a href="elementindex_quiz.html">quiz</a></li>
- <li><a href="elementindex_sloodleblog.html">sloodleblog</a></li>
- </ul>
- <br />
- <div class="index-letter-menu">
- <a class="index-letter" href="elementindex.html#a">a</a>
- <a class="index-letter" href="elementindex.html#b">b</a>
- <a class="index-letter" href="elementindex.html#c">c</a>
- <a class="index-letter" href="elementindex.html#d">d</a>
- <a class="index-letter" href="elementindex.html#e">e</a>
- <a class="index-letter" href="elementindex.html#f">f</a>
- <a class="index-letter" href="elementindex.html#g">g</a>
- <a class="index-letter" href="elementindex.html#h">h</a>
- <a class="index-letter" href="elementindex.html#i">i</a>
- <a class="index-letter" href="elementindex.html#l">l</a>
- <a class="index-letter" href="elementindex.html#m">m</a>
- <a class="index-letter" href="elementindex.html#n">n</a>
- <a class="index-letter" href="elementindex.html#o">o</a>
- <a class="index-letter" href="elementindex.html#p">p</a>
- <a class="index-letter" href="elementindex.html#q">q</a>
- <a class="index-letter" href="elementindex.html#r">r</a>
- <a class="index-letter" href="elementindex.html#s">s</a>
- <a class="index-letter" href="elementindex.html#t">t</a>
- <a class="index-letter" href="elementindex.html#u">u</a>
- <a class="index-letter" href="elementindex.html#v">v</a>
- <a class="index-letter" href="elementindex.html#w">w</a>
- <a class="index-letter" href="elementindex.html#_">_</a>
- </div>
- <a name="a"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">a</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$assignment</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#var$assignment">SloodleModuleSloodleObject::$assignment</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Internal only - the Moodle assignment structure.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$avatar_data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#var$avatar_data">SloodleUser::$avatar_data</a> in user.php</div>
- <div class="index-item-description">Internal only - avatar data.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$avatar_uuid</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$avatar_uuid">SloodleResponse::$avatar_uuid</a> in io.php</div>
- <div class="index-item-description">Avatar UUID.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">add_data_line</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodadd_data_line">SloodleResponse::add_data_line()</a> in io.php</div>
- <div class="index-item-description">Adds one line of data to the $data member</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">add_linked_avatar</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodadd_linked_avatar">SloodleUser::add_linked_avatar()</a> in user.php</div>
- <div class="index-item-description">Adds a new avatar to the database, and link it to the specified user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">add_message</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodadd_message">SloodleModuleChat::add_message()</a> in module_chat.php</div>
- <div class="index-item-description">Adds a new chat message.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">add_pending_avatar</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodadd_pending_avatar">SloodleUser::add_pending_avatar()</a> in user.php</div>
- <div class="index-item-description">Adds a new unlinked avatar to the database (the entry is pending linking)</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">add_side_effect</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodadd_side_effect">SloodleResponse::add_side_effect()</a> in io.php</div>
- <div class="index-item-description">Adds a single side effect code to member $status_code</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">add_side_effects</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodadd_side_effects">SloodleResponse::add_side_effects()</a> in io.php</div>
- <div class="index-item-description">Adds one or more integer side effect codes to member $status_code.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- assignment_sloodleobject
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html">assignment_sloodleobject</a> in assignment.class.php</div>
- <div class="index-item-description">Extend the base assignment class for assignments where you submit an SL object in-world.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">assignment_sloodleobject</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html#methodassignment_sloodleobject">assignment_sloodleobject::assignment_sloodleobject()</a> in assignment.class.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- assignment_sloodleobject_submission
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html">assignment_sloodleobject_submission</a> in assignment.class.php</div>
- <div class="index-item-description">Defines a submission for a Sloodle assignment.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">authenticate_request</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodauthenticate_request">SloodleSession::authenticate_request()</a> in sloodle_session.php</div>
- <div class="index-item-description">Verifies security for the incoming request (but does not check user access).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">authorise_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodauthorise_object">SloodleController::authorise_object()</a> in controller.php</div>
- <div class="index-item-description">Authorises an otherwise unauthorised active object against the given user and the current controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">autoregister_avatar_user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodautoregister_avatar_user">SloodleUser::autoregister_avatar_user()</a> in user.php</div>
- <div class="index-item-description">Auto-register a new user account for the current avatar.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">active_object_ping_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleclassroom/_sloodle---classroom---active_object_ping_linker.php.html">active_object_ping_linker.php</a> in active_object_ping_linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">auth_check_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleclassroom/_sloodle---classroom---auth_check_linker.php.html">auth_check_linker.php</a> in auth_check_linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">auth_object_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleclassroom/_sloodle---classroom---auth_object_linker.php.html">auth_object_linker.php</a> in auth_object_linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">access.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---db---access.php.html">access.php</a> in access.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">active_object.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---active_object.php.html">active_object.php</a> in active_object.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">assignment.class.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---primdrop-1.0---sloodleobject---assignment.class.php.html">assignment.class.php</a> in assignment.class.php</div>
- </dd>
- </dl>
- <a name="b"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">b</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- block_sloodle_menu
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/block_sloodle_menu.html">block_sloodle_menu</a> in block_sloodle_menu.php</div>
- <div class="index-item-description">Defines the block class.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">blog_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleblog/_sloodle---mod---toolbar-1.0---blog_linker.php.html">blog_linker.php</a> in blog_linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">block_sloodle_menu.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle_menu---block_sloodle_menu.php.html">block_sloodle_menu.php</a> in block_sloodle_menu.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">block_sloodle_menu.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle_menu---lang---en_utf8---block_sloodle_menu.php.html">block_sloodle_menu.php</a> in block_sloodle_menu.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">block_sloodle_menu.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlelang/_sloodle_menu---lang---es_utf8---block_sloodle_menu.php.html">block_sloodle_menu.php</a> in block_sloodle_menu.php</div>
- </dd>
- </dl>
- <a name="c"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">c</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$cm</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#var$cm">SloodleModuleChat::$cm</a> in module_chat.php</div>
- <div class="index-item-description">Internal for Moodle only - course module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$cm</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#var$cm">SloodleModuleDistributor::$cm</a> in module_distributor.php</div>
- <div class="index-item-description">Internal for Moodle only - course module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$cm</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#var$cm">SloodleController::$cm</a> in controller.php</div>
- <div class="index-item-description">Internal for Moodle only - course module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$cm</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#var$cm">SloodleModuleGlossary::$cm</a> in module_glossary.php</div>
- <div class="index-item-description">Internal for Moodle only - course module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$cm</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#var$cm">SloodleModuleSloodleObject::$cm</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Internal for Moodle only - course module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$concept</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#var$concept">SloodleGlossaryEntry::$concept</a> in module_glossary.php</div>
- <div class="index-item-description">The name of this entry.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$controller</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#var$controller">SloodleCourse::$controller</a> in course.php</div>
- <div class="index-item-description">The <a href="sloodle/SloodleController.html">SloodleController</a> object being used to access this course, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$course</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$course">SloodleActiveObject::$course</a> in active_object.php</div>
- <div class="index-item-description">The course/controller which this object is authorised for.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$course</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$course">SloodleSession::$course</a> in sloodle_session.php</div>
- <div class="index-item-description">The Sloodle course structure for the course this session is accessing</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$course_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#var$course_object">SloodleCourse::$course_object</a> in course.php</div>
- <div class="index-item-description">The database object of the course to which this object relates.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">can_user_authorise_objects</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodcan_user_authorise_objects">SloodleCourse::can_user_authorise_objects()</a> in course.php</div>
- <div class="index-item-description">Checks whether or not the CURRENTLY LOGGED-IN user can authorise objects on this course.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">check_authorisation</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodcheck_authorisation">SloodleController::check_authorisation()</a> in controller.php</div>
- <div class="index-item-description">Checks if the specified object is authorised for this controller with the given password.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">check_autoenrol</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodcheck_autoenrol">SloodleCourse::check_autoenrol()</a> in course.php</div>
- <div class="index-item-description">Is auto enrolment permitted on this site AND course? Takes into account the site-wide setting as well.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">check_autoreg</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodcheck_autoreg">SloodleCourse::check_autoreg()</a> in course.php</div>
- <div class="index-item-description">Is auto registration permitted on this site AND course? Takes into account the site-wide setting as well.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">clear_data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodclear_data">SloodleResponse::clear_data()</a> in io.php</div>
- <div class="index-item-description">Clears all data from member $data</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">confirm_by_login_security_token</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLSLHandler.html#methodconfirm_by_login_security_token">SloodleLSLHandler::confirm_by_login_security_token()</a> in lsl.php</div>
- <div class="index-item-description">Authenticates the avatar identified in the request by the login security token.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">configure_object.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleclassroom/_sloodle---classroom---configure_object.php.html">configure_object.php</a> in configure_object.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">course_info_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleclassroom/_sloodle---classroom---course_info_linker.php.html">course_info_linker.php</a> in course_info_linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">controller.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---controller.php.html">controller.php</a> in controller.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">course.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---course.php.html">course.php</a> in course.php</div>
- </dd>
- </dl>
- <a name="d"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">d</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$data">SloodleResponse::$data</a> in io.php</div>
- <div class="index-item-description">Data to render following the status line in the response.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$definition</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#var$definition">SloodleGlossaryEntry::$definition</a> in module_glossary.php</div>
- <div class="index-item-description">The definition of this entry.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">data_preprocessing</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/mod_sloodle_mod_form.html#methoddata_preprocessing">mod_sloodle_mod_form::data_preprocessing()</a> in mod_form.php</div>
- <div class="index-item-description">Pre-processes form initial values.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">definition</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/mod_sloodle_mod_form.html#methoddefinition">mod_sloodle_mod_form::definition()</a> in mod_form.php</div>
- <div class="index-item-description">Defines the form</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">definition_after_data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/mod_sloodle_mod_form.html#methoddefinition_after_data">mod_sloodle_mod_form::definition_after_data()</a> in mod_form.php</div>
- <div class="index-item-description">Performs extra processing on the form after existing/default data has been specified.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">delete_avatar</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methoddelete_avatar">SloodleUser::delete_avatar()</a> in user.php</div>
- <div class="index-item-description">Deletes the current avatar from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">delete_layout</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methoddelete_layout">SloodleCourse::delete_layout()</a> in course.php</div>
- <div class="index-item-description">Deletes the named layout.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">delete_loginzone_allocation</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methoddelete_loginzone_allocation">SloodleCourse::delete_loginzone_allocation()</a> in course.php</div>
- <div class="index-item-description">Deletes any loginzone allocations for the given user If there are multiple for the same user (which there should never be) it will delete them all.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">disable</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methoddisable">SloodleController::disable()</a> in controller.php</div>
- <div class="index-item-description">Disables this controller</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">disable_autoenrol</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methoddisable_autoenrol">SloodleCourse::disable_autoenrol()</a> in course.php</div>
- <div class="index-item-description">Disables auto-enrolment for this course.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">disable_autoreg</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methoddisable_autoreg">SloodleCourse::disable_autoreg()</a> in course.php</div>
- <div class="index-item-description">Disables auto-registration for this course.</div>
- </dd>
- </dl>
- <a name="e"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">e</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">enable</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodenable">SloodleController::enable()</a> in controller.php</div>
- <div class="index-item-description">Enables this controller</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">enable_autoenrol</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodenable_autoenrol">SloodleCourse::enable_autoenrol()</a> in course.php</div>
- <div class="index-item-description">Enables auto-enrolment for this course.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">enable_autoreg</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodenable_autoreg">SloodleCourse::enable_autoreg()</a> in course.php</div>
- <div class="index-item-description">Enables auto-registration for this course.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">enrol</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodenrol">SloodleUser::enrol()</a> in user.php</div>
- <div class="index-item-description">Enrols the current user in the specified course</div>
- </dd>
- </dl>
- <a name="f"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">f</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$field_separator</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$field_separator">SloodleResponse::$field_separator</a> in io.php</div>
- <div class="index-item-description">The separation string between fields of a response line (by default, a pipe character |).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">file.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---primdrop-1.0---sloodleobject---file.php.html">file.php</a> in file.php</div>
- </dd>
- </dl>
- <a name="g"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">g</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">generate_loginzone_allocation</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodgenerate_loginzone_allocation">SloodleCourse::generate_loginzone_allocation()</a> in course.php</div>
- <div class="index-item-description">Generates a new LoginZone allocation for the specified user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_authorizing_user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_authorizing_user">SloodleController::get_authorizing_user()</a> in controller.php</div>
- <div class="index-item-description">Gets the ID of the user who authorised the specified object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_autoenrol</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_autoenrol">SloodleCourse::get_autoenrol()</a> in course.php</div>
- <div class="index-item-description">Gets the auto enrolment value for this course only.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_autoreg</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_autoreg">SloodleCourse::get_autoreg()</a> in course.php</div>
- <div class="index-item-description">Gets the autoregistration value for this course only.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_avatar_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_avatar_id">SloodleUser::get_avatar_id()</a> in user.php</div>
- <div class="index-item-description">Gets the unique ID of the avatar.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_avatar_last_active</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_avatar_last_active">SloodleUser::get_avatar_last_active()</a> in user.php</div>
- <div class="index-item-description">Gets the timestamp of whenever the avatar was last active</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_avatar_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_avatar_name">SloodleRequest::get_avatar_name()</a> in io.php</div>
- <div class="index-item-description">Fetches the avatar name request parameter.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_avatar_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_avatar_name">SloodleUser::get_avatar_name()</a> in user.php</div>
- <div class="index-item-description">Gets the name of the avatar</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_avatar_uuid</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_avatar_uuid">SloodleUser::get_avatar_uuid()</a> in user.php</div>
- <div class="index-item-description">Gets the UUID of the avatar</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_avatar_uuid</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_avatar_uuid">SloodleRequest::get_avatar_uuid()</a> in io.php</div>
- <div class="index-item-description">Fetches the avatar UUID request parameter.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_chat_history</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_chat_history">SloodleModuleChat::get_chat_history()</a> in module_chat.php</div>
- <div class="index-item-description">Gets a recent history of messages from the chatroom.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_content</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/block_sloodle_menu.html#methodget_content">block_sloodle_menu::get_content()</a> in block_sloodle_menu.php</div>
- <div class="index-item-description">Defines *and* returns the content of this block.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_controller_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_controller_id">SloodleController::get_controller_id()</a> in controller.php</div>
- <div class="index-item-description">Gets the identifier for controller (unique among all Sloodle controlers - may be the same as get_id() in some environments</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_controller_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_controller_id">SloodleRequest::get_controller_id()</a> in io.php</div>
- <div class="index-item-description">Fetches the controller ID request parameter.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_course_id">SloodleController::get_course_id()</a> in controller.php</div>
- <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_course_id">SloodleModuleChat::get_course_id()</a> in module_chat.php</div>
- <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_course_id">SloodleModuleDistributor::get_course_id()</a> in module_distributor.php</div>
- <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_course_id">SloodleModuleSloodleObject::get_course_id()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_course_id">SloodleCourse::get_course_id()</a> in course.php</div>
- <div class="index-item-description">Gets the identifier of the course in the VLE.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_course_id">SloodleRequest::get_course_id()</a> in io.php</div>
- <div class="index-item-description">Fetches the course ID request parameter.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_course_id">SloodleModuleGlossary::get_course_id()</a> in module_glossary.php</div>
- <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_course_id">SloodleModule::get_course_id()</a> in module_base.php</div>
- <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_module_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_course_module_instance">SloodleRequest::get_course_module_instance()</a> in io.php</div>
- <div class="index-item-description">Get a course module instance for the module specified in the request Uses the ID specified in $module_id.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_course_object">SloodleCourse::get_course_object()</a> in course.php</div>
- <div class="index-item-description">Gets the VLE course object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_course_record</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_course_record">SloodleRequest::get_course_record()</a> in io.php</div>
- <div class="index-item-description">Gets a database record for the course identified in the request.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_creation_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_creation_time">SloodleModule::get_creation_time()</a> in module_base.php</div>
- <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_creation_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_creation_time">SloodleController::get_creation_time()</a> in controller.php</div>
- <div class="index-item-description">Gets the time at which this controller was created.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_creation_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_creation_time">SloodleModuleChat::get_creation_time()</a> in module_chat.php</div>
- <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_creation_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_creation_time">SloodleModuleSloodleObject::get_creation_time()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_creation_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_creation_time">SloodleModuleDistributor::get_creation_time()</a> in module_distributor.php</div>
- <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_creation_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_creation_time">SloodleModuleGlossary::get_creation_time()</a> in module_glossary.php</div>
- <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_enrolled_courses</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_enrolled_courses">SloodleUser::get_enrolled_courses()</a> in user.php</div>
- <div class="index-item-description">Gets a numeric array of <a href="sloodle/SloodleCourse.html">SloodleCourse</a> objects for courses the user is enrolled in.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_field_separator</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodget_field_separator">SloodleResponse::get_field_separator()</a> in io.php</div>
- <div class="index-item-description">Gets the field separator.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_full_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_full_name">SloodleCourse::get_full_name()</a> in course.php</div>
- <div class="index-item-description">Gets the full name of this course in the VLE.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_id">SloodleController::get_id()</a> in controller.php</div>
- <div class="index-item-description">Gets the site-wide unique identifier for this module.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_intro</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_intro">SloodleModuleGlossary::get_intro()</a> in module_glossary.php</div>
- <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_intro</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_intro">SloodleModuleChat::get_intro()</a> in module_chat.php</div>
- <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_intro</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_intro">SloodleModuleDistributor::get_intro()</a> in module_distributor.php</div>
- <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_intro</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_intro">SloodleModuleSloodleObject::get_intro()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_intro</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_intro">SloodleModule::get_intro()</a> in module_base.php</div>
- <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_intro</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_intro">SloodleController::get_intro()</a> in controller.php</div>
- <div class="index-item-description">Gets the intro description of this controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_layout_entries</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_layout_entries">SloodleCourse::get_layout_entries()</a> in course.php</div>
- <div class="index-item-description">Gets all the entries in the named layout.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_layout_names</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_layout_names">SloodleCourse::get_layout_names()</a> in course.php</div>
- <div class="index-item-description">Gets an array associating layout ID's to names</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_line_separator</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodget_line_separator">SloodleResponse::get_line_separator()</a> in io.php</div>
- <div class="index-item-description">Gets the line separator.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_loginzone_allocation</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_allocation">SloodleCourse::get_loginzone_allocation()</a> in course.php</div>
- <div class="index-item-description">Gets the SLurl for the specified user's loginzone alloation</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_loginzone_position</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_position">SloodleCourse::get_loginzone_position()</a> in course.php</div>
- <div class="index-item-description">Gets the position of the loginzone as a string vector <x,y,z></div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_loginzone_region</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_region">SloodleCourse::get_loginzone_region()</a> in course.php</div>
- <div class="index-item-description">Gets the region of the loginzone</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_loginzone_size</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_size">SloodleCourse::get_loginzone_size()</a> in course.php</div>
- <div class="index-item-description">Gets the size of the loginzone as a string vector <x,y,z></div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_loginzone_time_updated</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_time_updated">SloodleCourse::get_loginzone_time_updated()</a> in course.php</div>
- <div class="index-item-description">Gets the timestamp of the last time the loginzone was updated</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_modification_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_modification_time">SloodleModuleChat::get_modification_time()</a> in module_chat.php</div>
- <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_modification_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_modification_time">SloodleModuleDistributor::get_modification_time()</a> in module_distributor.php</div>
- <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_modification_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_modification_time">SloodleModuleGlossary::get_modification_time()</a> in module_glossary.php</div>
- <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_modification_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_modification_time">SloodleModuleSloodleObject::get_modification_time()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_modification_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_modification_time">SloodleModule::get_modification_time()</a> in module_base.php</div>
- <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_modification_time</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_modification_time">SloodleController::get_modification_time()</a> in controller.php</div>
- <div class="index-item-description">Gets the time at which this controller was last modified.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_module_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_module_id">SloodleRequest::get_module_id()</a> in io.php</div>
- <div class="index-item-description">Fetches the module ID request parameter.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_name">SloodleModuleSloodleObject::get_name()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Gets the name of this module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_name">SloodleModuleGlossary::get_name()</a> in module_glossary.php</div>
- <div class="index-item-description">Gets the name of this module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_name">SloodleModuleDistributor::get_name()</a> in module_distributor.php</div>
- <div class="index-item-description">Gets the name of this module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_name">SloodleController::get_name()</a> in controller.php</div>
- <div class="index-item-description">Gets the name of this controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_name">SloodleModule::get_name()</a> in module_base.php</div>
- <div class="index-item-description">Gets the name of this module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_name">SloodleModuleChat::get_name()</a> in module_chat.php</div>
- <div class="index-item-description">Gets the name of this module instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_object">SloodleController::get_object()</a> in controller.php</div>
- <div class="index-item-description">Gets data about an active object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_objects</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_objects">SloodleModuleDistributor::get_objects()</a> in module_distributor.php</div>
- <div class="index-item-description">Gets a list of all objects for this Distributor.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_object_configuration</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_object_configuration">SloodleController::get_object_configuration()</a> in controller.php</div>
- <div class="index-item-description">Gets an array of object configuration settings.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_param</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_param">SloodleRequest::get_param()</a> in io.php</div>
- <div class="index-item-description">Obtains a named HTTP request parameter, optionally requiring it or not</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_password</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_password">SloodleRequest::get_password()</a> in io.php</div>
- <div class="index-item-description">Fetches the password request parameter.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_password</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_password">SloodleController::get_password()</a> in controller.php</div>
- <div class="index-item-description">Gets the prim password of this controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_request_descriptor</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_request_descriptor">SloodleRequest::get_request_descriptor()</a> in io.php</div>
- <div class="index-item-description">Fetches the request descriptor request parameter.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_server_access_level</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_server_access_level">SloodleRequest::get_server_access_level()</a> in io.php</div>
- <div class="index-item-description">Fetches the server access level parameter, if specified.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_short_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_short_name">SloodleCourse::get_short_name()</a> in course.php</div>
- <div class="index-item-description">Gets the short name of this course in the VLE.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_staff_courses</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_staff_courses">SloodleUser::get_staff_courses()</a> in user.php</div>
- <div class="index-item-description">Gets a numeric array of <a href="sloodle/SloodleCourse.html">SloodleCourse</a> objects for courses the user is Sloodle staff.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_type">SloodleModule::get_type()</a> in module_base.php</div>
- <div class="index-item-description">Gets the short type name of this instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_type">SloodleModuleDistributor::get_type()</a> in module_distributor.php</div>
- <div class="index-item-description">Gets the short type name of this instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_type">SloodleModuleChat::get_type()</a> in module_chat.php</div>
- <div class="index-item-description">Gets the short type name of this instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_type">SloodleModuleSloodleObject::get_type()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Gets the short type name of this instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_type">SloodleModuleGlossary::get_type()</a> in module_glossary.php</div>
- <div class="index-item-description">Gets the short type name of this instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type_full</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_type_full">SloodleModuleSloodleObject::get_type_full()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type_full</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_type_full">SloodleModuleDistributor::get_type_full()</a> in module_distributor.php</div>
- <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type_full</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_type_full">SloodleModule::get_type_full()</a> in module_base.php</div>
- <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type_full</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_type_full">SloodleModuleChat::get_type_full()</a> in module_chat.php</div>
- <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_type_full</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_type_full">SloodleModuleGlossary::get_type_full()</a> in module_glossary.php</div>
- <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_username</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_username">SloodleUser::get_username()</a> in user.php</div>
- <div class="index-item-description">Gets the user's username</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_user_email</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_email">SloodleUser::get_user_email()</a> in user.php</div>
- <div class="index-item-description">Gets the user's email address.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_user_firstname</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_firstname">SloodleUser::get_user_firstname()</a> in user.php</div>
- <div class="index-item-description">Gets the first name of the user</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_user_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_id">SloodleUser::get_user_id()</a> in user.php</div>
- <div class="index-item-description">Gets the unique ID of the VLE user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_user_lastname</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_lastname">SloodleUser::get_user_lastname()</a> in user.php</div>
- <div class="index-item-description">Gets the last name of the user</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_x</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#methodget_x">assignment_sloodleobject_submission::get_x()</a> in assignment.class.php</div>
- <div class="index-item-description">Gets the X coordinate of the position</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_y</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#methodget_y">assignment_sloodleobject_submission::get_y()</a> in assignment.class.php</div>
- <div class="index-item-description">Gets the Y coordinate of the position</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">get_z</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#methodget_z">assignment_sloodleobject_submission::get_z()</a> in assignment.class.php</div>
- <div class="index-item-description">Gets the Z coordinate of the position</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">general.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html">general.php</a> in general.php</div>
- </dd>
- </dl>
- <a name="h"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">h</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">has_config</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/block_sloodle_menu.html#methodhas_config">block_sloodle_menu::has_config()</a> in block_sloodle_menu.php</div>
- <div class="index-item-description">Indicates whether or not this module has a global configuration page.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">has_loginzone_data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodhas_loginzone_data">SloodleCourse::has_loginzone_data()</a> in course.php</div>
- <div class="index-item-description">Determines whether or not LoginZone data exists for this course.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">hide_header</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/block_sloodle_menu.html#methodhide_header">block_sloodle_menu::hide_header()</a> in block_sloodle_menu.php</div>
- <div class="index-item-description">Indicates whether or not to hide the header of this block.</div>
- </dd>
- </dl>
- <a name="i"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">i</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#var$id">SloodleGlossaryEntry::$id</a> in module_glossary.php</div>
- <div class="index-item-description">The ID of the entry.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#var$id">SloodleChatMessage::$id</a> in module_chat.php</div>
- <div class="index-item-description">The ID of the message.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$is_loaded</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#var$is_loaded">assignment_sloodleobject_submission::$is_loaded</a> in assignment.class.php</div>
- <div class="index-item-description">Indicates whether or not a submission is loaded</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">init</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/block_sloodle_menu.html#methodinit">block_sloodle_menu::init()</a> in block_sloodle_menu.php</div>
- <div class="index-item-description">Perform block initialisation.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_available</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodis_available">SloodleCourse::is_available()</a> in course.php</div>
- <div class="index-item-description">Determines whether or not the course is available.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_available</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodis_available">SloodleController::is_available()</a> in controller.php</div>
- <div class="index-item-description">Determines whether or not this controller is available (i.e. not hidden).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_avatar_linked</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_avatar_linked">SloodleUser::is_avatar_linked()</a> in user.php</div>
- <div class="index-item-description">Determines whether or not the current user and avatar are linked.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_avatar_loaded</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_avatar_loaded">SloodleUser::is_avatar_loaded()</a> in user.php</div>
- <div class="index-item-description">Determines whether or not an avatar is loaded.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_enabled</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodis_enabled">SloodleController::is_enabled()</a> in controller.php</div>
- <div class="index-item-description">Determines if this controller is enabled or not.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_enrolled</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_enrolled">SloodleUser::is_enrolled()</a> in user.php</div>
- <div class="index-item-description">Is the current user enrolled in the specified course?</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_loaded</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodis_loaded">SloodleCourse::is_loaded()</a> in course.php</div>
- <div class="index-item-description">Determines whether or not course data has been loaded.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_loaded</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodis_loaded">SloodleController::is_loaded()</a> in controller.php</div>
- <div class="index-item-description">Determines whether or not this controller is loaded.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_object_request</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodis_object_request">SloodleRequest::is_object_request()</a> in io.php</div>
- <div class="index-item-description">Checks the parameters to determine if the request relates to an object rather than a user</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_request_data_processed</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodis_request_data_processed">SloodleRequest::is_request_data_processed()</a> in io.php</div>
- <div class="index-item-description">Checks whether or not the request data has already been processed.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_staff</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_staff">SloodleUser::is_staff()</a> in user.php</div>
- <div class="index-item-description">Is the current user Sloodle staff in the specified course?</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_too_early</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodis_too_early">SloodleModuleSloodleObject::is_too_early()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Checks if an assignment submitted at the specified time would be too early for submission.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_too_late</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodis_too_late">SloodleModuleSloodleObject::is_too_late()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Checks if an assignment submitted at the specified time would be too late for submission.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_user_enrolled_by_request</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLSLHandler.html#methodis_user_enrolled_by_request">SloodleLSLHandler::is_user_enrolled_by_request()</a> in lsl.php</div>
- <div class="index-item-description">Checks that a user is enrolled in a course, based on request data.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">is_user_loaded</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_user_loaded">SloodleUser::is_user_loaded()</a> in user.php</div>
- <div class="index-item-description">Determines whether or not a VLE user is loaded.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">index.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---index.php.html">index.php</a> in index.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">io.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html">io.php</a> in io.php</div>
- </dd>
- </dl>
- <a name="l"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">l</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$line_separator</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$line_separator">SloodleResponse::$line_separator</a> in io.php</div>
- <div class="index-item-description">The separation string between lines of the response (typically just a newline).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">link_avatar</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodlink_avatar">SloodleUser::link_avatar()</a> in user.php</div>
- <div class="index-item-description">Links the current avatar to the current user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodload">SloodleModuleChat::load()</a> in module_chat.php</div>
- <div class="index-item-description">Loads data from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodload">SloodleModule::load()</a> in module_base.php</div>
- <div class="index-item-description">Loads data from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodload">SloodleModuleDistributor::load()</a> in module_distributor.php</div>
- <div class="index-item-description">Loads data from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodload">SloodleController::load()</a> in controller.php</div>
- <div class="index-item-description">Loads data from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodload">SloodleModuleSloodleObject::load()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Loads data from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodload">SloodleCourse::load()</a> in course.php</div>
- <div class="index-item-description">Reads fresh data into the structure from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodload">SloodleModuleGlossary::load()</a> in module_glossary.php</div>
- <div class="index-item-description">Loads data from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_avatar</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_avatar">SloodleUser::load_avatar()</a> in user.php</div>
- <div class="index-item-description">Finds an avatar with the given UUID and/or name, and loads its data.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_avatar_by_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_avatar_by_id">SloodleUser::load_avatar_by_id()</a> in user.php</div>
- <div class="index-item-description">Loads the specified avatar from the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_by_controller</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodload_by_controller">SloodleCourse::load_by_controller()</a> in course.php</div>
- <div class="index-item-description">Loads course and controller data by the unqiue site-wide identifier of a Sloodle controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_linked_avatar</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_linked_avatar">SloodleUser::load_linked_avatar()</a> in user.php</div>
- <div class="index-item-description">Load the avatar linked to the current user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_linked_user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_linked_user">SloodleUser::load_linked_user()</a> in user.php</div>
- <div class="index-item-description">Find the VLE user linked to the current avatar.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_module</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodload_module">SloodleSession::load_module()</a> in sloodle_session.php</div>
- <div class="index-item-description">Constructs and loads the appropriate module part of the session.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_submission</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#methodload_submission">assignment_sloodleobject_submission::load_submission()</a> in assignment.class.php</div>
- <div class="index-item-description">Parses the data from a Submission database record object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_user">SloodleUser::load_user()</a> in user.php</div>
- <div class="index-item-description">Load the specified user from the database</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">load_user_by_loginzone</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodload_user_by_loginzone">SloodleCourse::load_user_by_loginzone()</a> in course.php</div>
- <div class="index-item-description">Finds the user identified by LoginZone allocation, and loads it into the given user object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">login</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodlogin">SloodleUser::login()</a> in user.php</div>
- <div class="index-item-description">Internally 'log-in' the current user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">login_by_request</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLSLHandler.html#methodlogin_by_request">SloodleLSLHandler::login_by_request()</a> in lsl.php</div>
- <div class="index-item-description">Performs an internal 'login' based on user identified in request.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">loginzone.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---classroom---loginzone.php.html">loginzone.php</a> in loginzone.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">layout_profile.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---layout_profile.php.html">layout_profile.php</a> in layout_profile.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">lsl.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---lsl.php.html">lsl.php</a> in lsl.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">lib.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html">lib.php</a> in lib.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---chat-1.0---linker.php.html">linker.php</a> in linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---distributor-1.0---linker.php.html">linker.php</a> in linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleglossary/_sloodle---mod---glossary-1.0---linker.php.html">linker.php</a> in linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlelogin/_sloodle---mod---loginzone-1.0---linker.php.html">linker.php</a> in linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---primdrop-1.0---linker.php.html">linker.php</a> in linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlepwreset/_sloodle---mod---pwreset-1.0---linker.php.html">linker.php</a> in linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---quiz-1.0---linker.php.html">linker.php</a> in linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">locallib.1.9.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html">locallib.1.9.php</a> in locallib.1.9.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">layout_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---set-1.0---layout_linker.php.html">layout_linker.php</a> in layout_linker.php</div>
- </dd>
- </dl>
- <a name="m"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">m</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$message</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#var$message">SloodleChatMessage::$message</a> in module_chat.php</div>
- <div class="index-item-description">The text of the message.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$module</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$module">SloodleSession::$module</a> in sloodle_session.php</div>
- <div class="index-item-description">The Sloodle module this session relates to, if any.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$moodle_assignment_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#var$moodle_assignment_instance">SloodleModuleSloodleObject::$moodle_assignment_instance</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Internal only - Moodle assignment module instance database object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$moodle_chat_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#var$moodle_chat_instance">SloodleModuleChat::$moodle_chat_instance</a> in module_chat.php</div>
- <div class="index-item-description">Internal only - Moodle chat module instance database object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$moodle_glossary_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#var$moodle_glossary_instance">SloodleModuleGlossary::$moodle_glossary_instance</a> in module_glossary.php</div>
- <div class="index-item-description">Internal only - Moodle glossary module instance database object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- mod_sloodle_mod_form
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/mod_sloodle_mod_form.html">mod_sloodle_mod_form</a> in mod_form.php</div>
- <div class="index-item-description">Used to define the Sloodle module instance add/edit form.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">mail.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---mail.php.html">mail.php</a> in mail.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">module_base.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---modules---module_base.php.html">module_base.php</a> in module_base.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">module_chat.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---modules---module_chat.php.html">module_chat.php</a> in module_chat.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">module_distributor.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---modules---module_distributor.php.html">module_distributor.php</a> in module_distributor.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">module_glossary.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---modules---module_glossary.php.html">module_glossary.php</a> in module_glossary.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">module_sloodleobject.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---modules---module_sloodleobject.php.html">module_sloodleobject.php</a> in module_sloodleobject.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">modules.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---modules.php.html">modules.php</a> in modules.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">mod_form.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod_form.php.html">mod_form.php</a> in mod_form.php</div>
- </dd>
- </dl>
- <a name="n"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">n</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$name">SloodleActiveObject::$name</a> in active_object.php</div>
- <div class="index-item-description">The name of this object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$name">SloodleLayoutEntry::$name</a> in layout_profile.php</div>
- <div class="index-item-description">The name of the object this entry represents.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$num_prims</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#var$num_prims">assignment_sloodleobject_submission::$num_prims</a> in assignment.class.php</div>
- <div class="index-item-description">Number of prims in the object which has been submitted</div>
- </dd>
- </dl>
- <a name="o"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">o</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$obj_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#var$obj_name">assignment_sloodleobject_submission::$obj_name</a> in assignment.class.php</div>
- <div class="index-item-description">Name of the object which has been submitted.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">optional_param</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodoptional_param">SloodleRequest::optional_param()</a> in io.php</div>
- <div class="index-item-description">Obtains a named HTTP request parameter, or NULL if it has not been provided.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleclassroom/_sloodle---classroom---object_config_linker.php.html">object_config_linker.php</a> in object_config_linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---accesschecker-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---accesscheckerdoor-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---chat-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodledistributor/_sloodle---mod---distributor-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---enrolbooth-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---glossary-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlepwreset/_sloodle---mod---loginzone-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---primdrop-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlepwreset/_sloodle---mod---pwreset-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---quiz-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---regbooth-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---toolbar-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
- </dd>
- </dl>
- <a name="p"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">p</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$page_number</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$page_number">SloodleResponse::$page_number</a> in io.php</div>
- <div class="index-item-description">Current page number.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$page_total</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$page_total">SloodleResponse::$page_total</a> in io.php</div>
- <div class="index-item-description">Total number of pages.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$password</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$password">SloodleActiveObject::$password</a> in active_object.php</div>
- <div class="index-item-description">The password of this object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$position</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$position">SloodleLayoutEntry::$position</a> in layout_profile.php</div>
- <div class="index-item-description">The position of the object, as a 3d vector, in string format "<x,y,z>"</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$primdrop_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#var$primdrop_name">assignment_sloodleobject_submission::$primdrop_name</a> in assignment.class.php</div>
- <div class="index-item-description">Name of the PrimDrop object into which this object was submitted.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$primdrop_pos</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#var$primdrop_pos">assignment_sloodleobject_submission::$primdrop_pos</a> in assignment.class.php</div>
- <div class="index-item-description">Position where this object was submitted (as a vector, "<x,y,z>")</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$primdrop_region</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#var$primdrop_region">assignment_sloodleobject_submission::$primdrop_region</a> in assignment.class.php</div>
- <div class="index-item-description">Name of the region where this object was submitted</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$primdrop_uuid</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#var$primdrop_uuid">assignment_sloodleobject_submission::$primdrop_uuid</a> in assignment.class.php</div>
- <div class="index-item-description">UUID of the PrimDrop object into which this object was submitted.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">ping_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodping_object">SloodleController::ping_object()</a> in controller.php</div>
- <div class="index-item-description">Updates the last active timer on an object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">preprocess_submission</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html#methodpreprocess_submission">assignment_sloodleobject::preprocess_submission()</a> in assignment.class.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">print_student_answer</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html#methodprint_student_answer">assignment_sloodleobject::print_student_answer()</a> in assignment.class.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">print_user_files</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html#methodprint_user_files">assignment_sloodleobject::print_user_files()</a> in assignment.class.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">process_request_data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodprocess_request_data">SloodleRequest::process_request_data()</a> in io.php</div>
- <div class="index-item-description">Process all of the standard data provided by the HTTP request, and write it into our <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">purge_password_notifications</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodpurge_password_notifications">SloodleUser::purge_password_notifications()</a> in user.php</div>
- <div class="index-item-description">If the system is waiting to send a password notification to this user, then remove it</div>
- </dd>
- </dl>
- <a name="q"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">q</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">quick_output</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodquick_output">SloodleResponse::quick_output()</a> in io.php</div>
- <div class="index-item-description">Quick output of data to avoid several accessor calls if the response is very basic.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_ATTEMPTFIRST</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_ATTEMPTFIRST">QUIZ_ATTEMPTFIRST</a> in locallib.1.9.php</div>
- <div class="index-item-description">Options determining how the grades from individual attempts are combined to give</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_ATTEMPTLAST</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_ATTEMPTLAST">QUIZ_ATTEMPTLAST</a> in locallib.1.9.php</div>
- <div class="index-item-description">Options determining how the grades from individual attempts are combined to give</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_calculate_best_attempt</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_calculate_best_attempt">quiz_calculate_best_attempt()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Return the attempt with the best grade for a quiz</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_calculate_best_grade</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_calculate_best_grade">quiz_calculate_best_grade()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Calculate the overall grade for a quiz given a number of attempts by a particular user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_create_attempt</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_create_attempt">quiz_create_attempt()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Creates an object to represent a new attempt at a quiz</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_delete_attempt</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_delete_attempt">quiz_delete_attempt()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Delete a quiz attempt.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_feedback_for_grade</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_feedback_for_grade">quiz_feedback_for_grade()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Get the feedback text that should be show to a student who got this grade on this quiz. The feedback is processed ready for diplay.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_first_questionnumber</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_first_questionnumber">quiz_first_questionnumber()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Returns the first question number for the current quiz page</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_get_all_question_grades</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_get_all_question_grades">quiz_get_all_question_grades()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Creates an array of maximum grades for a quiz</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_get_best_grade</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_get_best_grade">quiz_get_best_grade()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Get the best current grade for a particular user in a quiz.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_get_combined_reviewoptions</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_get_combined_reviewoptions">quiz_get_combined_reviewoptions()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Combines the review options from a number of different quiz attempts.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_get_grading_options</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_get_grading_options">quiz_get_grading_options()</a> in locallib.1.9.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_get_grading_option_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_get_grading_option_name">quiz_get_grading_option_name()</a> in locallib.1.9.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_get_renderoptions</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_get_renderoptions">quiz_get_renderoptions()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Determine render options</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_get_reviewoptions</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_get_reviewoptions">quiz_get_reviewoptions()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Determine review options</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_get_user_attempt_unfinished</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_get_user_attempt_unfinished">quiz_get_user_attempt_unfinished()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Returns an unfinished attempt (if there is one) for the given user on the given quiz. This function does not return preview attempts.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_GRADEAVERAGE</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_GRADEAVERAGE">QUIZ_GRADEAVERAGE</a> in locallib.1.9.php</div>
- <div class="index-item-description">Options determining how the grades from individual attempts are combined to give</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_GRADEHIGHEST</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_GRADEHIGHEST">QUIZ_GRADEHIGHEST</a> in locallib.1.9.php</div>
- <div class="index-item-description">Options determining how the grades from individual attempts are combined to give</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_has_feedback</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_has_feedback">quiz_has_feedback()</a> in locallib.1.9.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_number_of_pages</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_number_of_pages">quiz_number_of_pages()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Returns the number of pages in the quiz layout</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_parse_fieldname</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_parse_fieldname">quiz_parse_fieldname()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Parse field names used for the replace options on question edit forms</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_print_navigation_panel</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_print_navigation_panel">quiz_print_navigation_panel()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Print navigation panel for quiz attempt and review pages</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_questions_in_quiz</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_questions_in_quiz">quiz_questions_in_quiz()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Returns a comma separated list of question ids for the quiz</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_questions_on_page</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_questions_on_page">quiz_questions_on_page()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Returns a comma separated list of question ids for the current page</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_question_preview_button</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_question_preview_button">quiz_question_preview_button()</a> in locallib.1.9.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_repaginate</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_repaginate">quiz_repaginate()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Re-paginates the quiz layout</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_rescale_grade</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_rescale_grade">quiz_rescale_grade()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Convert the raw grade stored in $attempt into a grade out of the maximum grade for this quiz.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_save_best_grade</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_save_best_grade">quiz_save_best_grade()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Save the overall grade for a user at a quiz in the quiz_grades table</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_send_confirmation</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_send_confirmation">quiz_send_confirmation()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Sends confirmation email to the student taking the course</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_send_notification</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_send_notification">quiz_send_notification()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Sends notification email to the interested parties that assign the role capability</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_send_notification_emails</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_send_notification_emails">quiz_send_notification_emails()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Takes a bunch of information to format into an email and send to the specified recipient.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_set_grade</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_set_grade">quiz_set_grade()</a> in locallib.1.9.php</div>
- <div class="index-item-description">The quiz grade is the score that student's results are marked out of. When it changes, the corresponding data in quiz_grades and quiz_feedback needs to be rescaled.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_STATE_CLOSED</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_STATE_CLOSED">QUIZ_STATE_CLOSED</a> in locallib.1.9.php</div>
- <div class="index-item-description">Constants to describe the various states a quiz attempt can be in.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_STATE_DURING</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_STATE_DURING">QUIZ_STATE_DURING</a> in locallib.1.9.php</div>
- <div class="index-item-description">Constants to describe the various states a quiz attempt can be in.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_STATE_IMMEDIATELY</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_STATE_IMMEDIATELY">QUIZ_STATE_IMMEDIATELY</a> in locallib.1.9.php</div>
- <div class="index-item-description">Constants to describe the various states a quiz attempt can be in.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_STATE_OPEN</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_STATE_OPEN">QUIZ_STATE_OPEN</a> in locallib.1.9.php</div>
- <div class="index-item-description">Constants to describe the various states a quiz attempt can be in.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">QUIZ_STATE_TEACHERACCESS</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#defineQUIZ_STATE_TEACHERACCESS">QUIZ_STATE_TEACHERACCESS</a> in locallib.1.9.php</div>
- <div class="index-item-description">Constants to describe the various states a quiz attempt can be in.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">quiz_upgrade_states</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="quiz/_sloodle---mod---quiz-1.0---locallib.1.9.php.html#functionquiz_upgrade_states">quiz_upgrade_states()</a> in locallib.1.9.php</div>
- <div class="index-item-description">Upgrade states for an attempt to Moodle 1.5 model</div>
- </dd>
- </dl>
- <a name="r"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">r</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$request</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLSLHandler.html#var$request">SloodleLSLHandler::$request</a> in lsl.php</div>
- <div class="index-item-description">A Sloodle request handling object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$request</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$request">SloodleSession::$request</a> in sloodle_session.php</div>
- <div class="index-item-description">Incoming HTTP request.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$request_data_processed</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#var$request_data_processed">SloodleRequest::$request_data_processed</a> in io.php</div>
- <div class="index-item-description">Indicates whether or not the basic request data has already been processed.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$request_descriptor</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$request_descriptor">SloodleResponse::$request_descriptor</a> in io.php</div>
- <div class="index-item-description">Request descriptor.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$request_timestamp</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$request_timestamp">SloodleResponse::$request_timestamp</a> in io.php</div>
- <div class="index-item-description">Timestamp when the request was originally made by the LSL script.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$response</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$response">SloodleSession::$response</a> in sloodle_session.php</div>
- <div class="index-item-description">Outgoing response - can be rendered to HTTP or as a string.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$response</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLSLHandler.html#var$response">SloodleLSLHandler::$response</a> in lsl.php</div>
- <div class="index-item-description">A Sloodle response handling object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$response_timestamp</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$response_timestamp">SloodleResponse::$response_timestamp</a> in io.php</div>
- <div class="index-item-description">Timestamp when the response was generated on the Moodle site.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$rotation</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$rotation">SloodleLayoutEntry::$rotation</a> in layout_profile.php</div>
- <div class="index-item-description">The rotation of the object, as a 3d vector of Euler angles, in string format "<x,y,z>"</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">register_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodregister_object">SloodleController::register_object()</a> in controller.php</div>
- <div class="index-item-description">Registers a new active object (or renew an existing authorisation) with this controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">register_unauth_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodregister_unauth_object">SloodleController::register_unauth_object()</a> in controller.php</div>
- <div class="index-item-description">Registers a new unauthorised object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">remove_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodremove_object">SloodleController::remove_object()</a> in controller.php</div>
- <div class="index-item-description">Removes an active object and all its related items.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">render_to_output</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodrender_to_output">SloodleResponse::render_to_output()</a> in io.php</div>
- <div class="index-item-description">Outputs the response directly to the HTTP response.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">render_to_string</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodrender_to_string">SloodleResponse::render_to_string()</a> in io.php</div>
- <div class="index-item-description">Renders the response to a string.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">required_param</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodrequired_param">SloodleRequest::required_param()</a> in io.php</div>
- <div class="index-item-description">Obtains a named HTTP request parameter, or terminates with an error message if it has not been provided.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">reset_password</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodreset_password">SloodleUser::reset_password()</a> in user.php</div>
- <div class="index-item-description">Resets the user's password</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">resubmit_allowed</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodresubmit_allowed">SloodleModuleSloodleObject::resubmit_allowed()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Checks if re-submissions are permitted.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">regenrol_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---login---regenrol_linker.php.html">regenrol_linker.php</a> in regenrol_linker.php</div>
- </dd>
- </dl>
- <a name="s"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">s</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$side_effects</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$side_effects">SloodleResponse::$side_effects</a> in io.php</div>
- <div class="index-item-description">Integer side effect(s) codes.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$sloodle_controller_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#var$sloodle_controller_instance">SloodleController::$sloodle_controller_instance</a> in controller.php</div>
- <div class="index-item-description">Internal only - Sloodle Controller instance database object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$sloodle_course_data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#var$sloodle_course_data">SloodleCourse::$sloodle_course_data</a> in course.php</div>
- <div class="index-item-description">The Sloodle course data object, if it exists.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$sloodle_distributor_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#var$sloodle_distributor_instance">SloodleModuleDistributor::$sloodle_distributor_instance</a> in module_distributor.php</div>
- <div class="index-item-description">Internal only - Sloodle Distributor instance database object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$sloodle_module_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#var$sloodle_module_instance">SloodleController::$sloodle_module_instance</a> in controller.php</div>
- <div class="index-item-description">Internal only - Sloodle module instance database object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$sloodle_module_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#var$sloodle_module_instance">SloodleModuleDistributor::$sloodle_module_instance</a> in module_distributor.php</div>
- <div class="index-item-description">Internal only - Sloodle module instance database object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$status_code</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$status_code">SloodleResponse::$status_code</a> in io.php</div>
- <div class="index-item-description">Integer status code of the response.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$status_descriptor</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$status_descriptor">SloodleResponse::$status_descriptor</a> in io.php</div>
- <div class="index-item-description">Status descriptor string.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">save_layout</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodsave_layout">SloodleCourse::save_layout()</a> in course.php</div>
- <div class="index-item-description">Save the given entries in the named profile.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">search</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodsearch">SloodleModuleGlossary::search()</a> in module_glossary.php</div>
- <div class="index-item-description">Searches all entries in the current glossary for the given term.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">send_object</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodsend_object">SloodleModuleDistributor::send_object()</a> in module_distributor.php</div>
- <div class="index-item-description">Request that the specified object be sent to the specified avatar.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#methodset">SloodleGlossaryEntry::set()</a> in module_glossary.php</div>
- <div class="index-item-description">Accessor - set all members in a single call.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#methodset">SloodleChatMessage::set()</a> in module_chat.php</div>
- <div class="index-item-description">Accessor - set all members in a single call.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">setup_elements</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html#methodsetup_elements">assignment_sloodleobject::setup_elements()</a> in assignment.class.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_avatar_last_active</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodset_avatar_last_active">SloodleUser::set_avatar_last_active()</a> in user.php</div>
- <div class="index-item-description">Sets the timestamp of when the user was last active</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_avatar_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodset_avatar_name">SloodleUser::set_avatar_name()</a> in user.php</div>
- <div class="index-item-description">Sets the name of the avatar</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_avatar_uuid</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_avatar_uuid">SloodleResponse::set_avatar_uuid()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $avatar_uuid</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_avatar_uuid</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodset_avatar_uuid">SloodleUser::set_avatar_uuid()</a> in user.php</div>
- <div class="index-item-description">Sets the UUID of the avatar</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_channel</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodset_channel">SloodleModuleDistributor::set_channel()</a> in module_distributor.php</div>
- <div class="index-item-description">Sets the UUID of the XMLRPC channel used for requests.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_data">SloodleResponse::set_data()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $data. <strong>Note: it is recommended that you use the add_data_line() and clear_data() functions instead of this.</strong></div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_field_separator</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_field_separator">SloodleResponse::set_field_separator()</a> in io.php</div>
- <div class="index-item-description">Sets the field separator.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_intro</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodset_intro">SloodleController::set_intro()</a> in controller.php</div>
- <div class="index-item-description">Sets the intro description of this controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_line_separator</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_line_separator">SloodleResponse::set_line_separator()</a> in io.php</div>
- <div class="index-item-description">Sets the line separator.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_loginzone_position</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_position">SloodleCourse::set_loginzone_position()</a> in course.php</div>
- <div class="index-item-description">Sets the position of the loginzone as a string vector <x,y,z></div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_loginzone_position_xyz</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_position_xyz">SloodleCourse::set_loginzone_position_xyz()</a> in course.php</div>
- <div class="index-item-description">Sets the position of the loginzone as a set of components</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_loginzone_region</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_region">SloodleCourse::set_loginzone_region()</a> in course.php</div>
- <div class="index-item-description">Sets the region of the loginzone</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_loginzone_size</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_size">SloodleCourse::set_loginzone_size()</a> in course.php</div>
- <div class="index-item-description">Sets the size of the loginzone as a string vector <x,y,z></div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_loginzone_size_xyz</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_size_xyz">SloodleCourse::set_loginzone_size_xyz()</a> in course.php</div>
- <div class="index-item-description">Sets the size of the loginzone as a set of components</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_loginzone_time_updated</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_time_updated">SloodleCourse::set_loginzone_time_updated()</a> in course.php</div>
- <div class="index-item-description">Sets the timestamp of the last time the loginzone was updated</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_name</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodset_name">SloodleController::set_name()</a> in controller.php</div>
- <div class="index-item-description">Sets the name of this controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_objects</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodset_objects">SloodleModuleDistributor::set_objects()</a> in module_distributor.php</div>
- <div class="index-item-description">Sets the list of objects in this Distributor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_page_number</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_page_number">SloodleResponse::set_page_number()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $page_number</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_page_total</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_page_total">SloodleResponse::set_page_total()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $page_total</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_password</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodset_password">SloodleController::set_password()</a> in controller.php</div>
- <div class="index-item-description">Sets the prim password of this controller.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_pos</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#methodset_pos">assignment_sloodleobject_submission::set_pos()</a> in assignment.class.php</div>
- <div class="index-item-description">Sets the position as 3 components.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_position_xyz</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodset_position_xyz">SloodleLayoutEntry::set_position_xyz()</a> in layout_profile.php</div>
- <div class="index-item-description">Sets the position as separate X,Y,Z components</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_request_descriptor</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_request_descriptor">SloodleResponse::set_request_descriptor()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $request_descriptor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_request_timestamp</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_request_timestamp">SloodleResponse::set_request_timestamp()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $request_timestamp</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_response_timestamp</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_response_timestamp">SloodleResponse::set_response_timestamp()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $response_timestamp</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_rotation_xyz</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodset_rotation_xyz">SloodleLayoutEntry::set_rotation_xyz()</a> in layout_profile.php</div>
- <div class="index-item-description">Sets the rotation as separate X,Y,Z components</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_side_effects</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_side_effects">SloodleResponse::set_side_effects()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $side_effects. <strong>Note:</strong> it is recommended that you use add_side_effect() or add_side_effects() instead.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_status_code</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_status_code">SloodleResponse::set_status_code()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $status_code</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_status_descriptor</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_status_descriptor">SloodleResponse::set_status_descriptor()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $status_descriptor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">set_tracking_code</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_tracking_code">SloodleResponse::set_tracking_code()</a> in io.php</div>
- <div class="index-item-description">Accessor function to set member value $tracking_code</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">store_object_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleclassroom/_sloodle---classroom---store_object_config.php.html">store_object_config.php</a> in store_object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">sloodle.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlelang/_sloodle---lang---en_utf8---sloodle.php.html">sloodle.php</a> in sloodle.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">sloodle_session.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---sloodle_session.php.html">sloodle_session.php</a> in sloodle_session.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">sl_welcome_reg.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlelogin/_sloodle---login---sl_welcome_reg.php.html">sl_welcome_reg.php</a> in sl_welcome_reg.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">settings.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---settings.php.html">settings.php</a> in settings.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">sl_config.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html">sl_config.php</a> in sl_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleActiveObject
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html">SloodleActiveObject</a> in active_object.php</div>
- <div class="index-item-description">An active object, relating to the Sloodle active objects DB table.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleChatMessage</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#methodSloodleChatMessage">SloodleChatMessage::SloodleChatMessage()</a> in module_chat.php</div>
- <div class="index-item-description">Constructor - initialises members.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleChatMessage
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html">SloodleChatMessage</a> in module_chat.php</div>
- <div class="index-item-description">Represents a single chat message</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleController</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodSloodleController">SloodleController::SloodleController()</a> in controller.php</div>
- <div class="index-item-description">Constructor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleController
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html">SloodleController</a> in controller.php</div>
- <div class="index-item-description">Represents a Sloodle Controller, including data such as prim password.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleCourse</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodSloodleCourse">SloodleCourse::SloodleCourse()</a> in course.php</div>
- <div class="index-item-description">Constructor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleCourse
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html">SloodleCourse</a> in course.php</div>
- <div class="index-item-description">The Sloodle course data class</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleGlossaryEntry</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#methodSloodleGlossaryEntry">SloodleGlossaryEntry::SloodleGlossaryEntry()</a> in module_glossary.php</div>
- <div class="index-item-description">Constructor - initialises members.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleGlossaryEntry
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html">SloodleGlossaryEntry</a> in module_glossary.php</div>
- <div class="index-item-description">Represents a single glossary entry</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleLayoutEntry
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html">SloodleLayoutEntry</a> in layout_profile.php</div>
- <div class="index-item-description">Stores data for a single entry in a layout profile.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleLSLHandler
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLSLHandler.html">SloodleLSLHandler</a> in lsl.php</div>
- <div class="index-item-description">A helper class to automate many API features.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleLSLHandler</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLSLHandler.html#methodSloodleLSLHandler">SloodleLSLHandler::SloodleLSLHandler()</a> in lsl.php</div>
- <div class="index-item-description">Class constructor.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleModule</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodSloodleModule">SloodleModule::SloodleModule()</a> in module_base.php</div>
- <div class="index-item-description">Constructor - initialises the session variable</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleModule
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html">SloodleModule</a> in module_base.php</div>
- <div class="index-item-description">Sloodle module base class.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleModuleChat
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html">SloodleModuleChat</a> in module_chat.php</div>
- <div class="index-item-description">The Sloodle chat module class.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleModuleChat</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodSloodleModuleChat">SloodleModuleChat::SloodleModuleChat()</a> in module_chat.php</div>
- <div class="index-item-description">Constructor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleModuleDistributor</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodSloodleModuleDistributor">SloodleModuleDistributor::SloodleModuleDistributor()</a> in module_distributor.php</div>
- <div class="index-item-description">Constructor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleModuleDistributor
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html">SloodleModuleDistributor</a> in module_distributor.php</div>
- <div class="index-item-description">The Sloodle Distributor module class.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleModuleGlossary
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html">SloodleModuleGlossary</a> in module_glossary.php</div>
- <div class="index-item-description">The Sloodle glossary module class.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleModuleGlossary</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodSloodleModuleGlossary">SloodleModuleGlossary::SloodleModuleGlossary()</a> in module_glossary.php</div>
- <div class="index-item-description">Constructor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleModuleSloodleObject</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodSloodleModuleSloodleObject">SloodleModuleSloodleObject::SloodleModuleSloodleObject()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Constructor</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleModuleSloodleObject
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html">SloodleModuleSloodleObject</a> in module_sloodleobject.php</div>
- <div class="index-item-description">The Sloodle Object assignment module class.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleRequest
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html">SloodleRequest</a> in io.php</div>
- <div class="index-item-description">Handles incoming HTTP requests, typically from LSL if dealing with Second Life.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleRequest</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodSloodleRequest">SloodleRequest::SloodleRequest()</a> in io.php</div>
- <div class="index-item-description"><em>Constructor</em><ul><li>initialises the <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</li></ul></div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleResponse
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html">SloodleResponse</a> in io.php</div>
- <div class="index-item-description">A helper class to validate and structure data for output according to the <a href="http://slisweb.sjsu.edu/sl/index.php/Sloodle_communications_specification">Sloodle communications specification</a>.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleResponse</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodSloodleResponse">SloodleResponse::SloodleResponse()</a> in io.php</div>
- <div class="index-item-description"><em>Constructor</em><ul><li>can intialise some variables</li></ul></div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleSession</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodSloodleSession">SloodleSession::SloodleSession()</a> in sloodle_session.php</div>
- <div class="index-item-description">Constructor - initialises members</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleSession
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html">SloodleSession</a> in sloodle_session.php</div>
- <div class="index-item-description">The primary API class, which manages all other parts.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
- <span class="method-title">SloodleUser</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodSloodleUser">SloodleUser::SloodleUser()</a> in user.php</div>
- <div class="index-item-description">Class constructor.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Class.png" alt="Class" title="Class" /></title>
- SloodleUser
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html">SloodleUser</a> in user.php</div>
- <div class="index-item-description">A class to represent a single user, including Moodle and Sloodle data.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_add_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_add_instance">sloodle_add_instance()</a> in lib.php</div>
- <div class="index-item-description">Given an object containing all the necessary data, (defined by the form in mod.html) this function will create a new instance and return the id number of the new instance.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_add_to_log</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_add_to_log">sloodle_add_to_log()</a> in general.php</div>
- <div class="index-item-description">Old logging function</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_array_to_vector</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_array_to_vector">sloodle_array_to_vector()</a> in general.php</div>
- <div class="index-item-description">Converts an array vector to a string vector.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_autoenrol_enabled_site</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_autoenrol_enabled_site">sloodle_autoenrol_enabled_site()</a> in general.php</div>
- <div class="index-item-description">Determines whether or not auto-enrolment is allowed for the site.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_autoreg_enabled_site</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_autoreg_enabled_site">sloodle_autoreg_enabled_site()</a> in general.php</div>
- <div class="index-item-description">Determines whether or not auto-registration is allowed for the site.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_check_course_module_instance_type</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_check_course_module_instance_type">sloodle_check_course_module_instance_type()</a> in general.php</div>
- <div class="index-item-description">Determines if the specified course module instance is of the named type.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_cron</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_cron">sloodle_cron()</a> in lib.php</div>
- <div class="index-item-description">Function to be run periodically according to the Moodle cron.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_DEBUG</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_DEBUG">SLOODLE_DEBUG</a> in sl_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_debug</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#functionsloodle_debug">sloodle_debug()</a> in sl_config.php</div>
- <div class="index-item-description">Outputs messages if in debug mode.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_DEBUG_MODE_PARAM_NAME</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_DEBUG_MODE_PARAM_NAME">SLOODLE_DEBUG_MODE_PARAM_NAME</a> in sl_config.php</div>
- <div class="index-item-description">The name of the HTTP parameter which can be used to activate Sloodle debug mode.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_delete_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_delete_instance">sloodle_delete_instance()</a> in lib.php</div>
- <div class="index-item-description">Given an ID of an instance of this module, this function will permanently delete the instance and any data that depends on it.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_DIRROOT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_DIRROOT">SLOODLE_DIRROOT</a> in sl_config.php</div>
- <div class="index-item-description">The data path for the root of the Sloodle folder.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_display_config_form</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---chat-1.0---object_config.php.html#functionsloodle_display_config_form">sloodle_display_config_form()</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_display_config_form</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlepwreset/_sloodle---mod---loginzone-1.0---object_config.php.html#functionsloodle_display_config_form">sloodle_display_config_form()</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_display_config_form</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---mod---accesschecker-1.0---object_config.php.html#functionsloodle_display_config_form">sloodle_display_config_form()</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_display_config_form</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodledistributor/_sloodle---mod---distributor-1.0---object_config.php.html#functionsloodle_display_config_form">sloodle_display_config_form()</a> in object_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_finished_login_coordinates</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_finished_login_coordinates">sloodle_finished_login_coordinates()</a> in general.php</div>
- <div class="index-item-description">Generates teleport coordinates for a user who has already finished the LoginZone process.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_get_config</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_get_config">sloodle_get_config()</a> in general.php</div>
- <div class="index-item-description">Gets a Sloodle configuration value from Moodle's "config" table.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_get_course_module_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_get_course_module_instance">sloodle_get_course_module_instance()</a> in general.php</div>
- <div class="index-item-description">Obtains the identified course module instance database record.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_get_module_id</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_get_module_id">sloodle_get_module_id()</a> in general.php</div>
- <div class="index-item-description">Obtains the ID number of the specified module (type not instance).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_get_participants</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_get_participants">sloodle_get_participants()</a> in lib.php</div>
- <div class="index-item-description">Must return an array of user records (all data) who are participants for a given instance of sloodle. Must include every user involved in the instance, independient of his role (student, teacher, admin...) See other modules as example.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_get_types</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_get_types">sloodle_get_types()</a> in lib.php</div>
- <div class="index-item-description">Gets the different sub-types of Sloodle module available as a list for the "Add Activity..." menu.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_get_value</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_get_value">sloodle_get_value()</a> in general.php</div>
- <div class="index-item-description">Extracts a value from a name-value associative array if it is set.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_grades</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_grades">sloodle_grades()</a> in lib.php</div>
- <div class="index-item-description">Must return an array of grades for a given instance of this module, indexed by user. It also returns a maximum allowed grade.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_is_course_module_instance_visible</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_is_course_module_instance_visible">sloodle_is_course_module_instance_visible()</a> in general.php</div>
- <div class="index-item-description">Determines whether or not the specified course module instance is visible.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_is_installed</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_is_installed">sloodle_is_installed()</a> in general.php</div>
- <div class="index-item-description">Determines whether or not Sloodle is installed.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_LIBROOT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_LIBROOT">SLOODLE_LIBROOT</a> in sl_config.php</div>
- <div class="index-item-description">The data path for the root of the Sloodle library folder.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_LINKER_SCRIPT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleclassroom/_sloodle---classroom---active_object_ping_linker.php.html#defineSLOODLE_LINKER_SCRIPT">SLOODLE_LINKER_SCRIPT</a> in active_object_ping_linker.php</div>
- <div class="index-item-description">Lets Sloodle know we are in a linker script.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_LINKER_SCRIPT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleblog/_sloodle---mod---toolbar-1.0---blog_linker.php.html#defineSLOODLE_LINKER_SCRIPT">SLOODLE_LINKER_SCRIPT</a> in blog_linker.php</div>
- <div class="index-item-description">Lets Sloodle know we are in a linker script.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_LINKER_SCRIPT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---login---regenrol_linker.php.html#defineSLOODLE_LINKER_SCRIPT">SLOODLE_LINKER_SCRIPT</a> in regenrol_linker.php</div>
- <div class="index-item-description">Lets Sloodle know we are in a linker script.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_LINKER_SCRIPT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlepwreset/_sloodle---mod---pwreset-1.0---linker.php.html#defineSLOODLE_LINKER_SCRIPT">SLOODLE_LINKER_SCRIPT</a> in linker.php</div>
- <div class="index-item-description">Lets Sloodle know we are in a linker script.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_LINKER_SCRIPT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodlechat/_sloodle---mod---chat-1.0---linker.php.html#defineSLOODLE_LINKER_SCRIPT">SLOODLE_LINKER_SCRIPT</a> in linker.php</div>
- <div class="index-item-description">Lets Sloodle know we are in a linker script.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_LINKER_SCRIPT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodleglossary/_sloodle---mod---glossary-1.0---linker.php.html#defineSLOODLE_LINKER_SCRIPT">SLOODLE_LINKER_SCRIPT</a> in linker.php</div>
- <div class="index-item-description">Lets Sloodle know we are in a linker script.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_load_module</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---modules.php.html#functionsloodle_load_module">sloodle_load_module()</a> in modules.php</div>
- <div class="index-item-description">Constructs a appropriate Sloodle module object based on the named type.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_login_notification</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_login_notification">sloodle_login_notification()</a> in general.php</div>
- <div class="index-item-description">Stores a pending login notification for an auto-registered user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_login_zone_bounds</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_login_zone_bounds">sloodle_login_zone_bounds()</a> in general.php</div>
- <div class="index-item-description">Calculates the maximum and minimum bounds of the specified LoginZone Returns the bounds as a numeric array of two associate array vectors: ($max, $min).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_MENU_VERSION</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle_menu---block_sloodle_menu.php.html#defineSLOODLE_MENU_VERSION">SLOODLE_MENU_VERSION</a> in block_sloodle_menu.php</div>
- <div class="index-item-description">Define the Sloodle Menu Block version.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_OBJECT_ACCESS_LEVEL_GROUP</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_OBJECT_ACCESS_LEVEL_GROUP">SLOODLE_OBJECT_ACCESS_LEVEL_GROUP</a> in sl_config.php</div>
- <div class="index-item-description">Indicates that only in-world group-members may access an object in-world.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_OBJECT_ACCESS_LEVEL_OWNER</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_OBJECT_ACCESS_LEVEL_OWNER">SLOODLE_OBJECT_ACCESS_LEVEL_OWNER</a> in sl_config.php</div>
- <div class="index-item-description">Indicates that only the owner may access an object in-world.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_OBJECT_ACCESS_LEVEL_PUBLIC</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_OBJECT_ACCESS_LEVEL_PUBLIC">SLOODLE_OBJECT_ACCESS_LEVEL_PUBLIC</a> in sl_config.php</div>
- <div class="index-item-description">Indicates that anybody may access an object in-world.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_AVATAR_NAME</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_AVATAR_NAME">SLOODLE_PARAM_AVATAR_NAME</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for an avatar name.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_AVATAR_UUID</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_AVATAR_UUID">SLOODLE_PARAM_AVATAR_UUID</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for an avatar UUID.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_CONTROLLER_ID</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_CONTROLLER_ID">SLOODLE_PARAM_CONTROLLER_ID</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for a Sloodle controller ID.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_COURSE_ID</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_COURSE_ID">SLOODLE_PARAM_COURSE_ID</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for a course ID.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_IS_OBJECT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_IS_OBJECT">SLOODLE_PARAM_IS_OBJECT</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for indicating a request which relates to an object instead of a user.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_MODULE_ID</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_MODULE_ID">SLOODLE_PARAM_MODULE_ID</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for a module ID.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_PASSWORD</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_PASSWORD">SLOODLE_PARAM_PASSWORD</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for a Sloodle password.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_REQUEST_DESC</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_REQUEST_DESC">SLOODLE_PARAM_REQUEST_DESC</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for a request descriptor.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_PARAM_SERVER_ACCESS_LEVEL</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#defineSLOODLE_PARAM_SERVER_ACCESS_LEVEL">SLOODLE_PARAM_SERVER_ACCESS_LEVEL</a> in io.php</div>
- <div class="index-item-description">Defines the HTTP parameter name for specifying server access level.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_position_is_in_login_zone</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_position_is_in_login_zone">sloodle_position_is_in_login_zone()</a> in general.php</div>
- <div class="index-item-description">Checks if the specified position is in the current (site-wide) loginzone.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_print_access_level_options</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_print_access_level_options">sloodle_print_access_level_options()</a> in general.php</div>
- <div class="index-item-description">Outputs the standard form elements for access levels in object configuration.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_print_recent_activity</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_print_recent_activity">sloodle_print_recent_activity()</a> in lib.php</div>
- <div class="index-item-description">Given a course and a time, this module should find recent activity that has occurred in sloodle activities and print it out.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_process_login_notifications</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_process_login_notifications">sloodle_process_login_notifications()</a> in general.php</div>
- <div class="index-item-description">Processes pending login notifications, up to a certain limit.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_process_options</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_process_options">sloodle_process_options()</a> in lib.php</div>
- <div class="index-item-description">Processes the module configuration options prior to saving them.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_random_position_in_zone</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_random_position_in_zone">sloodle_random_position_in_zone()</a> in general.php</div>
- <div class="index-item-description">Generates a random position within a cuboid zone of the specified size.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_random_prim_password</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_random_prim_password">sloodle_random_prim_password()</a> in general.php</div>
- <div class="index-item-description">Generates a random prim password (7 to 9 digit number).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_random_security_token</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_random_security_token">sloodle_random_security_token()</a> in general.php</div>
- <div class="index-item-description">Generates a random login security token.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_random_web_password</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_random_web_password">sloodle_random_web_password()</a> in general.php</div>
- <div class="index-item-description">Generates a random web password Uses mixed-case letters and numbers to generate a random 8-character string.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_required_param</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---io.php.html#functionsloodle_required_param">sloodle_required_param()</a> in io.php</div>
- <div class="index-item-description">Obtains a named HTTP request parameter, and terminates script with an error message if it was not provided.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_round_vector</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_round_vector">sloodle_round_vector()</a> in general.php</div>
- <div class="index-item-description">Rounds the specified 3d vector integer values.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_scale_used</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_scale_used">sloodle_scale_used()</a> in lib.php</div>
- <div class="index-item-description">This function returns if a scale is being used by one sloodle it it has support for grading and scales. Commented code should be modified if necessary. See forum, glossary or journal modules as reference.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_send_login_notification</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_send_login_notification">sloodle_send_login_notification()</a> in general.php</div>
- <div class="index-item-description">Send a login notification.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_send_xmlrpc_message</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_send_xmlrpc_message">sloodle_send_xmlrpc_message()</a> in general.php</div>
- <div class="index-item-description">Sends an XMLRPC message into Second Life.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_SERVER_ACCESS_LEVEL_COURSE</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_SERVER_ACCESS_LEVEL_COURSE">SLOODLE_SERVER_ACCESS_LEVEL_COURSE</a> in sl_config.php</div>
- <div class="index-item-description">Indicates that only those registered and enrolled in a specific course may access a server resource.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_SERVER_ACCESS_LEVEL_PUBLIC</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_SERVER_ACCESS_LEVEL_PUBLIC">SLOODLE_SERVER_ACCESS_LEVEL_PUBLIC</a> in sl_config.php</div>
- <div class="index-item-description">Indicates that anybody may access a server resource (still requires an authenticated request).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_SERVER_ACCESS_LEVEL_SITE</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_SERVER_ACCESS_LEVEL_SITE">SLOODLE_SERVER_ACCESS_LEVEL_SITE</a> in sl_config.php</div>
- <div class="index-item-description">Indicates that only those registered on the site may access a server resource.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_SERVER_ACCESS_LEVEL_STAFF</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_SERVER_ACCESS_LEVEL_STAFF">SLOODLE_SERVER_ACCESS_LEVEL_STAFF</a> in sl_config.php</div>
- <div class="index-item-description">Indicates that only those with Sloodle staff status on a course may access a server resource.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_set_config</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_set_config">sloodle_set_config()</a> in general.php</div>
- <div class="index-item-description">Sets a Sloodle configuration value.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_text_email</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---mail.php.html#functionsloodle_text_email">sloodle_text_email()</a> in mail.php</div>
- <div class="index-item-description">Send an email to a specific address, using the Moodle system.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_text_email_sl</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---mail.php.html#functionsloodle_text_email_sl">sloodle_text_email_sl()</a> in mail.php</div>
- <div class="index-item-description">Send an email to an object in SL.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_TYPE_CTRL</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_TYPE_CTRL">SLOODLE_TYPE_CTRL</a> in sl_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_TYPE_DISTRIB</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_TYPE_DISTRIB">SLOODLE_TYPE_DISTRIB</a> in sl_config.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_update_instance</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_update_instance">sloodle_update_instance()</a> in lib.php</div>
- <div class="index-item-description">Given an object containing all the necessary data, (defined by the form in mod.html) this function will update an existing instance with new data.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_user_complete</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_user_complete">sloodle_user_complete()</a> in lib.php</div>
- <div class="index-item-description">Print a detailed representation of what a user has done with a given particular instance of this module, for user activity reports.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_user_outline</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib.php.html#functionsloodle_user_outline">sloodle_user_outline()</a> in lib.php</div>
- <div class="index-item-description">Return a small object with summary information about what a user has done with a given particular instance of this module Used for user activity reports.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_validate_prim_password</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_validate_prim_password">sloodle_validate_prim_password()</a> in general.php</div>
- <div class="index-item-description">Checks if the given prim password is valid.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_validate_prim_password_verbose</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_validate_prim_password_verbose">sloodle_validate_prim_password_verbose()</a> in general.php</div>
- <div class="index-item-description">Checks if the given prim password is valid, and provides feedback.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_vector_to_array</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---general.php.html#functionsloodle_vector_to_array">sloodle_vector_to_array()</a> in general.php</div>
- <div class="index-item-description">Converts a string vector to an array vector.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_VERSION</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_VERSION">SLOODLE_VERSION</a> in sl_config.php</div>
- <div class="index-item-description">The Sloodle version number.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_view_controller</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view---view_controller.php.html#functionsloodle_view_controller">sloodle_view_controller()</a> in view_controller.php</div>
- <div class="index-item-description">Displays information about the given Sloodle module.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Function.png" alt="Function" title="Function" /></title>
- <span class="method-title">sloodle_view_distributor</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view---view_distributor.php.html#functionsloodle_view_distributor">sloodle_view_distributor()</a> in view_distributor.php</div>
- <div class="index-item-description">Displays information about the given Sloodle Distributor.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
- <span class="const-title">SLOODLE_WWWROOT</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---sl_config.php.html#defineSLOODLE_WWWROOT">SLOODLE_WWWROOT</a> in sl_config.php</div>
- <div class="index-item-description">The path for browsing to the root of the Sloodle folder.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">submit</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodsubmit">SloodleModuleSloodleObject::submit()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Add a new submission (or replace an existing one).</div>
- </dd>
- </dl>
- <a name="t"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">t</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$timestamp</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#var$timestamp">SloodleChatMessage::$timestamp</a> in module_chat.php</div>
- <div class="index-item-description">Timestamp of the message.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$tracking_code</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$tracking_code">SloodleResponse::$tracking_code</a> in io.php</div>
- <div class="index-item-description">Tracking code of the request.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$type</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$type">SloodleActiveObject::$type</a> in active_object.php</div>
- <div class="index-item-description">The type of this object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">text_summary</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject_submission.html#methodtext_summary">assignment_sloodleobject_submission::text_summary()</a> in assignment.class.php</div>
- <div class="index-item-description">Construct a text summary of this submission.</div>
- </dd>
- </dl>
- <a name="u"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">u</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$user">SloodleActiveObject::$user</a> in active_object.php</div>
- <div class="index-item-description">The user who authorised this object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$user">SloodleSession::$user</a> in sloodle_session.php</div>
- <div class="index-item-description">Current user information.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleLSLHandler.html#var$user">SloodleLSLHandler::$user</a> in lsl.php</div>
- <div class="index-item-description">A Sloodle user object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#var$user">SloodleChatMessage::$user</a> in module_chat.php</div>
- <div class="index-item-description">The user who wrote this message.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$user_data</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#var$user_data">SloodleUser::$user_data</a> in user.php</div>
- <div class="index-item-description">Internal only - user data. (i.e. VLE user) In Moodle, corresponds to a record from the 'user' table.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$uuid</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$uuid">SloodleActiveObject::$uuid</a> in active_object.php</div>
- <div class="index-item-description">The UUID of this object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">user.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---lib---user.php.html">user.php</a> in user.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">update_object_type</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodupdate_object_type">SloodleController::update_object_type()</a> in controller.php</div>
- <div class="index-item-description">Updates the type of a given active object to the specified type.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">update_submission</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html#methodupdate_submission">assignment_sloodleobject::update_submission()</a> in assignment.class.php</div>
- <div class="index-item-description">Update the submission with the provided data.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">user_can_submit</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methoduser_can_submit">SloodleModuleSloodleObject::user_can_submit()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Checks if the specified user is permitted to submit to this assignment.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">user_can_view</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methoduser_can_view">SloodleModuleSloodleObject::user_can_view()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Checks if the specified user is permitted to view submissions to this assignment.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">user_has_submitted</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methoduser_has_submitted">SloodleModuleSloodleObject::user_has_submitted()</a> in module_sloodleobject.php</div>
- <div class="index-item-description">Checks if the specified user has submitted to this assignment already.</div>
- </dd>
- </dl>
- <a name="v"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">v</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">version.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---version.php.html">version.php</a> in version.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">version_linker.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---version_linker.php.html">version_linker.php</a> in version_linker.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">view_configuration_notecard.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view---view_configuration_notecard.php.html">view_configuration_notecard.php</a> in view_configuration_notecard.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">view_controller.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view---view_controller.php.html">view_controller.php</a> in view_controller.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">view_course.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view---view_course.php.html">view_course.php</a> in view_course.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">view_distributor.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view---view_distributor.php.html">view_distributor.php</a> in view_distributor.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">view_user.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view---view_user.php.html">view_user.php</a> in view_user.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">view_users.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view---view_users.php.html">view_users.php</a> in view_users.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Page.png" alt="Page" title="Page" /></title>
- <span class="include-title">view.php</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/_sloodle---view.php.html">view.php</a> in view.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">validate_user</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodvalidate_user">SloodleSession::validate_user()</a> in sloodle_session.php</div>
- <div class="index-item-description">Validates the user account and enrolment (ensures there is an avatar linked to a VLE account, and that the VLE account is enrolled in the current course).</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">validation</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/mod_sloodle_mod_form.html#methodvalidation">mod_sloodle_mod_form::validation()</a> in mod_form.php</div>
- <div class="index-item-description">Validates the form data.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">view</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html#methodview">assignment_sloodleobject::view()</a> in assignment.class.php</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">view_dates</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/assignment_sloodleobject.html#methodview_dates">assignment_sloodleobject::view_dates()</a> in assignment.class.php</div>
- </dd>
- </dl>
- <a name="w"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">w</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">write</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleController.html#methodwrite">SloodleController::write()</a> in controller.php</div>
- <div class="index-item-description">Updates the currently loaded entry in the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">write</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodwrite">SloodleCourse::write()</a> in course.php</div>
- <div class="index-item-description">Writes current Sloodle course data back to the database.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Method.png" alt="Method" title="Method" /></title>
- <span class="method-title">write_avatar</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodwrite_avatar">SloodleUser::write_avatar()</a> in user.php</div>
- <div class="index-item-description">Uses the current avatar data to update the database.</div>
- </dd>
- </dl>
- <a name="_"></a>
- <div class="index-letter-section">
- <div style="float: left" class="index-letter-title">_</div>
- <div style="float: right"><a href="#top">top</a></div>
- <div style="clear: both"></div>
- </div>
- <dl>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$_session</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleModule.html#var$_session">SloodleModule::$_session</a> in module_base.php</div>
- <div class="index-item-description">Reference to the containing <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$_session</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleRequest.html#var$_session">SloodleRequest::$_session</a> in io.php</div>
- <div class="index-item-description">Reference to the containing <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
- <span class="var-title">$_session</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleUser.html#var$_session">SloodleUser::$_session</a> in user.php</div>
- <div class="index-item-description">Internal only - reference to the containing <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</div>
- </dd>
- <dt class="field">
- <img src="media/images/PrivateMethod.png" alt="Method" title="Method" /></title>
- <span class="method-title">_internal_validation_error</span>
- </dt>
- <dd class="index-item-body">
- <div class="index-item-details"><a href="sloodle/SloodleResponse.html#method_internal_validation_error">SloodleResponse::_internal_validation_error()</a> in io.php</div>
- <div class="index-item-description">Internal function to report a data validation error.</div>
- </dd>
- </dl>
- <div class="index-letter-menu">
- <a class="index-letter" href="elementindex.html#a">a</a>
- <a class="index-letter" href="elementindex.html#b">b</a>
- <a class="index-letter" href="elementindex.html#c">c</a>
- <a class="index-letter" href="elementindex.html#d">d</a>
- <a class="index-letter" href="elementindex.html#e">e</a>
- <a class="index-letter" href="elementindex.html#f">f</a>
- <a class="index-letter" href="elementindex.html#g">g</a>
- <a class="index-letter" href="elementindex.html#h">h</a>
- <a class="index-letter" href="elementindex.html#i">i</a>
- <a class="index-letter" href="elementindex.html#l">l</a>
- <a class="index-letter" href="elementindex.html#m">m</a>
- <a class="index-letter" href="elementindex.html#n">n</a>
- <a class="index-letter" href="elementindex.html#o">o</a>
- <a class="index-letter" href="elementindex.html#p">p</a>
- <a class="index-letter" href="elementindex.html#q">q</a>
- <a class="index-letter" href="elementindex.html#r">r</a>
- <a class="index-letter" href="elementindex.html#s">s</a>
- <a class="index-letter" href="elementindex.html#t">t</a>
- <a class="index-letter" href="elementindex.html#u">u</a>
- <a class="index-letter" href="elementindex.html#v">v</a>
- <a class="index-letter" href="elementindex.html#w">w</a>
- <a class="index-letter" href="elementindex.html#_">_</a>
- </div>
</body>
- </html>
|