elementindex_sloodle.html 414 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335
  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <!-- template designed by Marco Von Ballmoos -->
  6. <title></title>
  7. <link rel="stylesheet" href="media/stylesheet.css" />
  8. </head>
  9. <body>
  10. <a name="top"></a>
  11. <h2>[sloodle] element index</h2>
  12. <h3>Package indexes</h3>
  13. <ul>
  14. <li><a href="elementindex_sloodleclassroom.html">sloodleclassroom</a></li>
  15. <li><a href="elementindex_sloodlelang.html">sloodlelang</a></li>
  16. <li><a href="elementindex_sloodleregenrol.html">sloodleregenrol</a></li>
  17. <li><a href="elementindex_sloodlechat.html">sloodlechat</a></li>
  18. <li><a href="elementindex_sloodlechoice.html">sloodlechoice</a></li>
  19. <li><a href="elementindex_sloodledistributor.html">sloodledistributor</a></li>
  20. <li><a href="elementindex_sloodleglossary.html">sloodleglossary</a></li>
  21. <li><a href="elementindex_iBank.html">iBank</a></li>
  22. <li><a href="elementindex_sloodleprimdrop.html">sloodleprimdrop</a></li>
  23. <li><a href="elementindex_sloodlepwreset.html">sloodlepwreset</a></li>
  24. <li><a href="elementindex_sloodlequiz.html">sloodlequiz</a></li>
  25. <li><a href="elementindex_sloodleset.html">sloodleset</a></li>
  26. </ul>
  27. <a href="elementindex.html">All elements</a>
  28. <br />
  29. <div class="index-letter-menu">
  30. <a class="index-letter" href="elementindex_sloodle.html#a">a</a>
  31. <a class="index-letter" href="elementindex_sloodle.html#b">b</a>
  32. <a class="index-letter" href="elementindex_sloodle.html#c">c</a>
  33. <a class="index-letter" href="elementindex_sloodle.html#d">d</a>
  34. <a class="index-letter" href="elementindex_sloodle.html#e">e</a>
  35. <a class="index-letter" href="elementindex_sloodle.html#f">f</a>
  36. <a class="index-letter" href="elementindex_sloodle.html#g">g</a>
  37. <a class="index-letter" href="elementindex_sloodle.html#h">h</a>
  38. <a class="index-letter" href="elementindex_sloodle.html#i">i</a>
  39. <a class="index-letter" href="elementindex_sloodle.html#l">l</a>
  40. <a class="index-letter" href="elementindex_sloodle.html#m">m</a>
  41. <a class="index-letter" href="elementindex_sloodle.html#n">n</a>
  42. <a class="index-letter" href="elementindex_sloodle.html#o">o</a>
  43. <a class="index-letter" href="elementindex_sloodle.html#p">p</a>
  44. <a class="index-letter" href="elementindex_sloodle.html#q">q</a>
  45. <a class="index-letter" href="elementindex_sloodle.html#r">r</a>
  46. <a class="index-letter" href="elementindex_sloodle.html#s">s</a>
  47. <a class="index-letter" href="elementindex_sloodle.html#t">t</a>
  48. <a class="index-letter" href="elementindex_sloodle.html#u">u</a>
  49. <a class="index-letter" href="elementindex_sloodle.html#v">v</a>
  50. <a class="index-letter" href="elementindex_sloodle.html#w">w</a>
  51. <a class="index-letter" href="elementindex_sloodle.html#x">x</a>
  52. <a class="index-letter" href="elementindex_sloodle.html#y">y</a>
  53. <a class="index-letter" href="elementindex_sloodle.html#_">_</a>
  54. </div>
  55. <a name="_"></a>
  56. <div class="index-letter-section">
  57. <div style="float: left" class="index-letter-title">_</div>
  58. <div style="float: right"><a href="#top">top</a></div>
  59. <div style="clear: both"></div>
  60. </div>
  61. <dl>
  62. <dt class="field">
  63. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  64. <span class="var-title">$_session</span>
  65. </dt>
  66. <dd class="index-item-body">
  67. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#var$_session">SloodleRequest::$_session</a> in io.php</div>
  68. <div class="index-item-description">Reference to the containing <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</div>
  69. </dd>
  70. <dt class="field">
  71. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  72. <span class="var-title">$_session</span>
  73. </dt>
  74. <dd class="index-item-body">
  75. <div class="index-item-details"><a href="sloodle/SloodleUser.html#var$_session">SloodleUser::$_session</a> in user.php</div>
  76. <div class="index-item-description">Internal only - reference to the containing <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</div>
  77. </dd>
  78. <dt class="field">
  79. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  80. <span class="var-title">$_session</span>
  81. </dt>
  82. <dd class="index-item-body">
  83. <div class="index-item-details"><a href="sloodle/SloodleModule.html#var$_session">SloodleModule::$_session</a> in module_base.php</div>
  84. <div class="index-item-description">Reference to the containing <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</div>
  85. </dd>
  86. <dt class="field">
  87. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  88. <span class="var-title">$_session</span>
  89. </dt>
  90. <dd class="index-item-body">
  91. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#var$_session">sloodle_view_presenter::$_session</a> in presenter.php</div>
  92. <div class="index-item-description">A SLOODLE session object to give us access to plugins and other functionality.</div>
  93. </dd>
  94. <dt class="field">
  95. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  96. <span class="var-title">$_session</span>
  97. </dt>
  98. <dd class="index-item-body">
  99. <div class="index-item-details"><a href="sloodle/SloodlePluginManager.html#var$_session">SloodlePluginManager::$_session</a> in plugins.php</div>
  100. <div class="index-item-description">Internal only - reference to the containing <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</div>
  101. </dd>
  102. <dt class="field">
  103. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  104. <span class="include-title">_base.php</span>
  105. </dt>
  106. <dd class="index-item-body">
  107. <div class="index-item-details"><a href="sloodle/_plugin---presenter---_base.php.html">_base.php</a> in _base.php</div>
  108. </dd>
  109. <dt class="field">
  110. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  111. <span class="include-title">_base.php</span>
  112. </dt>
  113. <dd class="index-item-body">
  114. <div class="index-item-details"><a href="sloodle/_plugin---_base.php.html">_base.php</a> in _base.php</div>
  115. </dd>
  116. <dt class="field">
  117. <img src="media/images/PrivateMethod.png" alt="Method" title="Method" /></title>
  118. <span class="method-title">_import_ImageMagick</span>
  119. </dt>
  120. <dd class="index-item-body">
  121. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#method_import_ImageMagick">SloodlePluginPresenterPDFImporter::_import_ImageMagick()</a> in pdfimporter.php</div>
  122. <div class="index-item-description">Imports the given file using the ImageMagick command line programs if possible. (Internal only)</div>
  123. </dd>
  124. <dt class="field">
  125. <img src="media/images/PrivateMethod.png" alt="Method" title="Method" /></title>
  126. <span class="method-title">_import_MagickWand</span>
  127. </dt>
  128. <dd class="index-item-body">
  129. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#method_import_MagickWand">SloodlePluginPresenterPDFImporter::_import_MagickWand()</a> in pdfimporter.php</div>
  130. <div class="index-item-description">Imports the given file using the MagickWand extension if possible. (Internal only)</div>
  131. </dd>
  132. <dt class="field">
  133. <img src="media/images/PrivateMethod.png" alt="Method" title="Method" /></title>
  134. <span class="method-title">_internal_validation_error</span>
  135. </dt>
  136. <dd class="index-item-body">
  137. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#method_internal_validation_error">SloodleResponse::_internal_validation_error()</a> in io.php</div>
  138. <div class="index-item-description">Internal function to report a data validation error.</div>
  139. </dd>
  140. </dl>
  141. <a name="a"></a>
  142. <div class="index-letter-section">
  143. <div style="float: left" class="index-letter-title">a</div>
  144. <div style="float: right"><a href="#top">top</a></div>
  145. <div style="clear: both"></div>
  146. </div>
  147. <dl>
  148. <dt class="field">
  149. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  150. <span class="var-title">$assignment</span>
  151. </dt>
  152. <dd class="index-item-body">
  153. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#var$assignment">SloodleModuleSloodleObject::$assignment</a> in module_sloodleobject.php</div>
  154. <div class="index-item-description">Internal only - the Moodle assignment structure.</div>
  155. </dd>
  156. <dt class="field">
  157. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  158. <span class="var-title">$authorized</span>
  159. </dt>
  160. <dd class="index-item-body">
  161. <div class="index-item-details"><a href="sloodle/SloodleUserObject.html#var$authorized">SloodleUserObject::$authorized</a> in user_object.php</div>
  162. <div class="index-item-description">Indicates whether or not this object is currently authorized.</div>
  163. </dd>
  164. <dt class="field">
  165. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  166. <span class="var-title">$avatarList</span>
  167. </dt>
  168. <dd class="index-item-body">
  169. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$avatarList">sloodleCourseObj::$avatarList</a> in sloodlecourseobject.php</div>
  170. </dd>
  171. <dt class="field">
  172. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  173. <span class="var-title">$avatar_data</span>
  174. </dt>
  175. <dd class="index-item-body">
  176. <div class="index-item-details"><a href="sloodle/SloodleUser.html#var$avatar_data">SloodleUser::$avatar_data</a> in user.php</div>
  177. <div class="index-item-description">Internal only - avatar data.</div>
  178. </dd>
  179. <dt class="field">
  180. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  181. <span class="var-title">$avatar_name</span>
  182. </dt>
  183. <dd class="index-item-body">
  184. <div class="index-item-details"><a href="sloodle/SloodleAviListName.html#var$avatar_name">SloodleAviListName::$avatar_name</a> in module_avilister.php</div>
  185. <div class="index-item-description">Avatar name (&quot;firstname lastname&quot;)</div>
  186. </dd>
  187. <dt class="field">
  188. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  189. <span class="var-title">$avatar_uuid</span>
  190. </dt>
  191. <dd class="index-item-body">
  192. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$avatar_uuid">SloodleResponse::$avatar_uuid</a> in io.php</div>
  193. <div class="index-item-description">Avatar UUID.</div>
  194. </dd>
  195. <dt class="field">
  196. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  197. <span class="var-title">$avuuid</span>
  198. </dt>
  199. <dd class="index-item-body">
  200. <div class="index-item-details"><a href="sloodle/SloodleUserObject.html#var$avuuid">SloodleUserObject::$avuuid</a> in user_object.php</div>
  201. <div class="index-item-description">The UUID of the object's user</div>
  202. </dd>
  203. <dt class="field">
  204. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  205. <span class="method-title">addCommas</span>
  206. </dt>
  207. <dd class="index-item-body">
  208. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodaddCommas">sloodle_view_ibank::addCommas()</a> in ibank.php</div>
  209. <div class="index-item-description">addCommas takes an array of strings and add commas between elements except at the last element, or if there is only one element</div>
  210. </dd>
  211. <dt class="field">
  212. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  213. <span class="method-title">add_data_line</span>
  214. </dt>
  215. <dd class="index-item-body">
  216. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodadd_data_line">SloodleResponse::add_data_line()</a> in io.php</div>
  217. <div class="index-item-description">Adds one line of data to the $data member</div>
  218. </dd>
  219. <dt class="field">
  220. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  221. <span class="method-title">add_entry</span>
  222. </dt>
  223. <dd class="index-item-body">
  224. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodadd_entry">SloodleModulePresenter::add_entry()</a> in module_presenter.php</div>
  225. <div class="index-item-description">Adds a new entry to the presentation.</div>
  226. </dd>
  227. <dt class="field">
  228. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  229. <span class="method-title">add_entry</span>
  230. </dt>
  231. <dd class="index-item-body">
  232. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodadd_entry">SloodleModuleBlog::add_entry()</a> in module_blog.php</div>
  233. <div class="index-item-description">Attempts to write a new blog entry to the database, attributed to the user currently loaded in the <a href="sloodle/SloodleSession.html">SloodleSession</a>.</div>
  234. </dd>
  235. <dt class="field">
  236. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  237. <span class="method-title">add_entry</span>
  238. </dt>
  239. <dd class="index-item-body">
  240. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodadd_entry">SloodleLayout::add_entry()</a> in layout_profile.php</div>
  241. </dd>
  242. <dt class="field">
  243. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  244. <span class="method-title">add_linked_avatar</span>
  245. </dt>
  246. <dd class="index-item-body">
  247. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodadd_linked_avatar">SloodleUser::add_linked_avatar()</a> in user.php</div>
  248. <div class="index-item-description">Adds a new avatar to the database, and link it to the specified user.</div>
  249. </dd>
  250. <dt class="field">
  251. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  252. <span class="method-title">add_location</span>
  253. </dt>
  254. <dd class="index-item-body">
  255. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodadd_location">SloodleModuleMap::add_location()</a> in module_map.php</div>
  256. <div class="index-item-description">Adds a new location to this map.</div>
  257. </dd>
  258. <dt class="field">
  259. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  260. <span class="method-title">add_message</span>
  261. </dt>
  262. <dd class="index-item-body">
  263. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodadd_message">SloodleModuleChat::add_message()</a> in module_chat.php</div>
  264. <div class="index-item-description">Adds a new chat message.</div>
  265. </dd>
  266. <dt class="field">
  267. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  268. <span class="method-title">add_pending_avatar</span>
  269. </dt>
  270. <dd class="index-item-body">
  271. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodadd_pending_avatar">SloodleUser::add_pending_avatar()</a> in user.php</div>
  272. <div class="index-item-description">Adds a new unlinked avatar to the database (the entry is pending linking)</div>
  273. </dd>
  274. <dt class="field">
  275. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  276. <span class="method-title">add_side_effect</span>
  277. </dt>
  278. <dd class="index-item-body">
  279. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodadd_side_effect">SloodleResponse::add_side_effect()</a> in io.php</div>
  280. <div class="index-item-description">Adds a single side effect code to member $status_code</div>
  281. </dd>
  282. <dt class="field">
  283. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  284. <span class="method-title">add_side_effects</span>
  285. </dt>
  286. <dd class="index-item-body">
  287. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodadd_side_effects">SloodleResponse::add_side_effects()</a> in io.php</div>
  288. <div class="index-item-description">Adds one or more integer side effect codes to member $status_code.</div>
  289. </dd>
  290. <dt class="field">
  291. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  292. <span class="method-title">add_user_object</span>
  293. </dt>
  294. <dd class="index-item-body">
  295. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodadd_user_object">SloodleUser::add_user_object()</a> in user.php</div>
  296. <div class="index-item-description">Adds or udpates the given user object as unauthorised.</div>
  297. </dd>
  298. <dt class="field">
  299. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  300. <span class="method-title">allow_update</span>
  301. </dt>
  302. <dd class="index-item-body">
  303. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodallow_update">SloodleModuleChoice::allow_update()</a> in module_choice.php</div>
  304. <div class="index-item-description">Checks if users are allowed to re-select their answer in this choice.</div>
  305. </dd>
  306. <dt class="field">
  307. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  308. <span class="method-title">authenticate_request</span>
  309. </dt>
  310. <dd class="index-item-body">
  311. <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodauthenticate_request">SloodleSession::authenticate_request()</a> in sloodle_session.php</div>
  312. <div class="index-item-description">Verifies security for the incoming request (but does not check user access).</div>
  313. </dd>
  314. <dt class="field">
  315. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  316. <span class="method-title">authenticate_user_request</span>
  317. </dt>
  318. <dd class="index-item-body">
  319. <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodauthenticate_user_request">SloodleSession::authenticate_user_request()</a> in sloodle_session.php</div>
  320. <div class="index-item-description">Verifies security for the incoming user-centric request.</div>
  321. </dd>
  322. <dt class="field">
  323. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  324. <span class="method-title">authorise_object</span>
  325. </dt>
  326. <dd class="index-item-body">
  327. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodauthorise_object">SloodleController::authorise_object()</a> in controller.php</div>
  328. <div class="index-item-description">Authorises an otherwise unauthorised active object against the given user and the current controller.</div>
  329. </dd>
  330. <dt class="field">
  331. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  332. <span class="method-title">authorise_user_object</span>
  333. </dt>
  334. <dd class="index-item-body">
  335. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodauthorise_user_object">SloodleUser::authorise_user_object()</a> in user.php</div>
  336. <div class="index-item-description">Authorises the given object for the current avatar.</div>
  337. </dd>
  338. <dt class="field">
  339. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  340. <span class="method-title">autoregister_avatar_user</span>
  341. </dt>
  342. <dd class="index-item-body">
  343. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodautoregister_avatar_user">SloodleUser::autoregister_avatar_user()</a> in user.php</div>
  344. <div class="index-item-description">Auto-register a new user account for the current avatar.</div>
  345. </dd>
  346. <dt class="field">
  347. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  348. <span class="include-title">access.php</span>
  349. </dt>
  350. <dd class="index-item-body">
  351. <div class="index-item-details"><a href="sloodle/_db---access.php.html">access.php</a> in access.php</div>
  352. </dd>
  353. <dt class="field">
  354. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  355. <span class="include-title">active_object.php</span>
  356. </dt>
  357. <dd class="index-item-body">
  358. <div class="index-item-details"><a href="sloodle/_lib---active_object.php.html">active_object.php</a> in active_object.php</div>
  359. </dd>
  360. <dt class="field">
  361. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  362. <span class="include-title">avilister_linker.php</span>
  363. </dt>
  364. <dd class="index-item-body">
  365. <div class="index-item-details"><a href="sloodle/_toolbar---avilister_linker.php.html">avilister_linker.php</a> in avilister_linker.php</div>
  366. </dd>
  367. </dl>
  368. <a name="b"></a>
  369. <div class="index-letter-section">
  370. <div style="float: left" class="index-letter-title">b</div>
  371. <div style="float: right"><a href="#top">top</a></div>
  372. <div style="clear: both"></div>
  373. </div>
  374. <dl>
  375. <dt class="field">
  376. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  377. <span class="var-title">$body</span>
  378. </dt>
  379. <dd class="index-item-body">
  380. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#var$body">SloodleBlogPost::$body</a> in module_blog.php</div>
  381. <div class="index-item-description">The body of the post.</div>
  382. </dd>
  383. <dt class="field">
  384. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  385. <span class="method-title">buildAvTable</span>
  386. </dt>
  387. <dd class="index-item-body">
  388. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodbuildAvTable">sloodle_view_ibank::buildAvTable()</a> in ibank.php</div>
  389. <div class="index-item-description">Simply sets up the inner avatar table, alignment, and sizes</div>
  390. </dd>
  391. <dt class="field">
  392. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  393. <span class="include-title">blog_linker.php</span>
  394. </dt>
  395. <dd class="index-item-body">
  396. <div class="index-item-details"><a href="sloodle/_toolbar---blog_linker.php.html">blog_linker.php</a> in blog_linker.php</div>
  397. </dd>
  398. <dt class="field">
  399. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  400. <span class="include-title">base_view.php</span>
  401. </dt>
  402. <dd class="index-item-body">
  403. <div class="index-item-details"><a href="sloodle/_view---base---base_view.php.html">base_view.php</a> in base_view.php</div>
  404. </dd>
  405. <dt class="field">
  406. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  407. <span class="include-title">base_view_module.php</span>
  408. </dt>
  409. <dd class="index-item-body">
  410. <div class="index-item-details"><a href="sloodle/_view---base---base_view_module.php.html">base_view_module.php</a> in base_view_module.php</div>
  411. </dd>
  412. </dl>
  413. <a name="c"></a>
  414. <div class="index-letter-section">
  415. <div style="float: left" class="index-letter-title">c</div>
  416. <div style="float: right"><a href="#top">top</a></div>
  417. <div style="clear: both"></div>
  418. </div>
  419. <dl>
  420. <dt class="field">
  421. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  422. <span class="var-title">$canedit</span>
  423. </dt>
  424. <dd class="index-item-body">
  425. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$canedit">sloodle_view_user::$canedit</a> in user.php</div>
  426. <div class="index-item-description">Can the user edit the data they are viewing?</div>
  427. </dd>
  428. <dt class="field">
  429. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  430. <span class="var-title">$canedit</span>
  431. </dt>
  432. <dd class="index-item-body">
  433. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#var$canedit">sloodle_base_view_module::$canedit</a> in base_view_module.php</div>
  434. <div class="index-item-description">Indicates whether or the user can edit (or 'manage') this module, according to the VLE permissions.</div>
  435. </dd>
  436. <dt class="field">
  437. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  438. <span class="var-title">$cm</span>
  439. </dt>
  440. <dd class="index-item-body">
  441. <div class="index-item-details"><a href="sloodle/SloodleController.html#var$cm">SloodleController::$cm</a> in controller.php</div>
  442. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  443. </dd>
  444. <dt class="field">
  445. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  446. <span class="var-title">$cm</span>
  447. </dt>
  448. <dd class="index-item-body">
  449. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#var$cm">SloodleModuleGlossary::$cm</a> in module_glossary.php</div>
  450. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  451. </dd>
  452. <dt class="field">
  453. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  454. <span class="var-title">$cm</span>
  455. </dt>
  456. <dd class="index-item-body">
  457. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#var$cm">SloodleModuleDistributor::$cm</a> in module_distributor.php</div>
  458. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  459. </dd>
  460. <dt class="field">
  461. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  462. <span class="var-title">$cm</span>
  463. </dt>
  464. <dd class="index-item-body">
  465. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#var$cm">SloodleModuleChat::$cm</a> in module_chat.php</div>
  466. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  467. </dd>
  468. <dt class="field">
  469. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  470. <span class="var-title">$cm</span>
  471. </dt>
  472. <dd class="index-item-body">
  473. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#var$cm">SloodleModuleiBank::$cm</a> in module_ibank.php</div>
  474. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  475. </dd>
  476. <dt class="field">
  477. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  478. <span class="var-title">$cm</span>
  479. </dt>
  480. <dd class="index-item-body">
  481. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#var$cm">SloodleModuleChoice::$cm</a> in module_choice.php</div>
  482. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  483. </dd>
  484. <dt class="field">
  485. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  486. <span class="var-title">$cm</span>
  487. </dt>
  488. <dd class="index-item-body">
  489. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#var$cm">SloodleModuleMap::$cm</a> in module_map.php</div>
  490. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  491. </dd>
  492. <dt class="field">
  493. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  494. <span class="var-title">$cm</span>
  495. </dt>
  496. <dd class="index-item-body">
  497. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$cm">sloodleCourseObj::$cm</a> in sloodlecourseobject.php</div>
  498. </dd>
  499. <dt class="field">
  500. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  501. <span class="var-title">$cm</span>
  502. </dt>
  503. <dd class="index-item-body">
  504. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#var$cm">SloodleModuleSloodleObject::$cm</a> in module_sloodleobject.php</div>
  505. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  506. </dd>
  507. <dt class="field">
  508. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  509. <span class="var-title">$cm</span>
  510. </dt>
  511. <dd class="index-item-body">
  512. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$cm">sloodle_view_ibank::$cm</a> in ibank.php</div>
  513. <div class="index-item-description">The course module instance, retrieved directly from the database (table: course_modules)</div>
  514. </dd>
  515. <dt class="field">
  516. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  517. <span class="var-title">$cm</span>
  518. </dt>
  519. <dd class="index-item-body">
  520. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#var$cm">SloodleModulePresenter::$cm</a> in module_presenter.php</div>
  521. <div class="index-item-description">Internal for Moodle only - course module instance.</div>
  522. </dd>
  523. <dt class="field">
  524. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  525. <span class="var-title">$cm</span>
  526. </dt>
  527. <dd class="index-item-body">
  528. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#var$cm">sloodle_base_view_module::$cm</a> in base_view_module.php</div>
  529. <div class="index-item-description">The course module instance, retrieved directly from the database (table: course_modules)</div>
  530. </dd>
  531. <dt class="field">
  532. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  533. <span class="var-title">$concept</span>
  534. </dt>
  535. <dd class="index-item-body">
  536. <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#var$concept">SloodleGlossaryEntry::$concept</a> in module_glossary.php</div>
  537. <div class="index-item-description">The name of this entry.</div>
  538. </dd>
  539. <dt class="field">
  540. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  541. <span class="var-title">$configs</span>
  542. </dt>
  543. <dd class="index-item-body">
  544. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$configs">SloodleLayoutEntry::$configs</a> in layout_profile.php</div>
  545. </dd>
  546. <dt class="field">
  547. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  548. <span class="var-title">$controller</span>
  549. </dt>
  550. <dd class="index-item-body">
  551. <div class="index-item-details"><a href="sloodle/sloodle_view_controller.html#var$controller">sloodle_view_controller::$controller</a> in controller.php</div>
  552. <div class="index-item-description">SLOODLE Controller data object, retreived directly from the database (table: sloodle_controller).</div>
  553. </dd>
  554. <dt class="field">
  555. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  556. <span class="var-title">$controller</span>
  557. </dt>
  558. <dd class="index-item-body">
  559. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#var$controller">SloodleCourse::$controller</a> in course.php</div>
  560. <div class="index-item-description">The <a href="sloodle/SloodleController.html">SloodleController</a> object being used to access this course, if available.</div>
  561. </dd>
  562. <dt class="field">
  563. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  564. <span class="var-title">$course</span>
  565. </dt>
  566. <dd class="index-item-body">
  567. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$course">sloodle_view_ibank::$course</a> in ibank.php</div>
  568. <div class="index-item-description">The VLE course object, retrieved directly from the database (table: course)</div>
  569. </dd>
  570. <dt class="field">
  571. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  572. <span class="var-title">$course</span>
  573. </dt>
  574. <dd class="index-item-body">
  575. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#var$course">sloodle_base_view_module::$course</a> in base_view_module.php</div>
  576. <div class="index-item-description">The VLE course object, retrieved directly from the database (table: course)</div>
  577. </dd>
  578. <dt class="field">
  579. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  580. <span class="var-title">$course</span>
  581. </dt>
  582. <dd class="index-item-body">
  583. <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$course">SloodleActiveObject::$course</a> in active_object.php</div>
  584. <div class="index-item-description">The course/controller which this object is authorised for.</div>
  585. </dd>
  586. <dt class="field">
  587. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  588. <span class="var-title">$course</span>
  589. </dt>
  590. <dd class="index-item-body">
  591. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$course">sloodle_view_user::$course</a> in user.php</div>
  592. <div class="index-item-description">The VLE course object, retrieved directly from database.</div>
  593. </dd>
  594. <dt class="field">
  595. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  596. <span class="var-title">$course</span>
  597. </dt>
  598. <dd class="index-item-body">
  599. <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$course">SloodleSession::$course</a> in sloodle_session.php</div>
  600. <div class="index-item-description">The Sloodle course structure for the course this session is accessing</div>
  601. </dd>
  602. <dt class="field">
  603. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  604. <span class="var-title">$course</span>
  605. </dt>
  606. <dd class="index-item-body">
  607. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#var$course">sloodle_view_course::$course</a> in course.php</div>
  608. <div class="index-item-description">The VLE course object, retrieved directly from database.</div>
  609. </dd>
  610. <dt class="field">
  611. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  612. <span class="var-title">$course</span>
  613. </dt>
  614. <dd class="index-item-body">
  615. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$course">sloodle_view_users::$course</a> in users.php</div>
  616. <div class="index-item-description">The VLE course object, retrieved directly from database.</div>
  617. </dd>
  618. <dt class="field">
  619. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  620. <span class="var-title">$courseContext</span>
  621. </dt>
  622. <dd class="index-item-body">
  623. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$courseContext">sloodleCourseObj::$courseContext</a> in sloodlecourseobject.php</div>
  624. </dd>
  625. <dt class="field">
  626. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  627. <span class="var-title">$coursefullname</span>
  628. </dt>
  629. <dd class="index-item-body">
  630. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$coursefullname">sloodle_view_users::$coursefullname</a> in users.php</div>
  631. <div class="index-item-description">Full name of the current course.</div>
  632. </dd>
  633. <dt class="field">
  634. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  635. <span class="var-title">$courseFullName</span>
  636. </dt>
  637. <dd class="index-item-body">
  638. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$courseFullName">sloodleCourseObj::$courseFullName</a> in sloodlecourseobject.php</div>
  639. <div class="index-item-description">Full name of the current course.</div>
  640. </dd>
  641. <dt class="field">
  642. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  643. <span class="var-title">$courseid</span>
  644. </dt>
  645. <dd class="index-item-body">
  646. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#var$courseid">SloodleLayout::$courseid</a> in layout_profile.php</div>
  647. </dd>
  648. <dt class="field">
  649. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  650. <span class="var-title">$courseId</span>
  651. </dt>
  652. <dd class="index-item-body">
  653. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$courseId">sloodleCourseObj::$courseId</a> in sloodlecourseobject.php</div>
  654. </dd>
  655. <dt class="field">
  656. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  657. <span class="var-title">$courseid</span>
  658. </dt>
  659. <dd class="index-item-body">
  660. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$courseid">sloodle_view_user::$courseid</a> in user.php</div>
  661. <div class="index-item-description">Integer ID of the course which is being accessed.</div>
  662. </dd>
  663. <dt class="field">
  664. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  665. <span class="var-title">$courseid</span>
  666. </dt>
  667. <dd class="index-item-body">
  668. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$courseid">sloodle_view_users::$courseid</a> in users.php</div>
  669. <div class="index-item-description">Integer ID of the course which is being accessed.</div>
  670. </dd>
  671. <dt class="field">
  672. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  673. <span class="var-title">$courseRec</span>
  674. </dt>
  675. <dd class="index-item-body">
  676. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$courseRec">sloodleCourseObj::$courseRec</a> in sloodlecourseobject.php</div>
  677. </dd>
  678. <dt class="field">
  679. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  680. <span class="var-title">$courseshortname</span>
  681. </dt>
  682. <dd class="index-item-body">
  683. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$courseshortname">sloodle_view_users::$courseshortname</a> in users.php</div>
  684. <div class="index-item-description">Short name of the current course.</div>
  685. </dd>
  686. <dt class="field">
  687. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  688. <span class="var-title">$courseShortName</span>
  689. </dt>
  690. <dd class="index-item-body">
  691. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$courseShortName">sloodleCourseObj::$courseShortName</a> in sloodlecourseobject.php</div>
  692. <div class="index-item-description">Short name of the current course.</div>
  693. </dd>
  694. <dt class="field">
  695. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  696. <span class="var-title">$courseUrl</span>
  697. </dt>
  698. <dd class="index-item-body">
  699. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$courseUrl">sloodleCourseObj::$courseUrl</a> in sloodlecourseobject.php</div>
  700. <div class="index-item-description">URL for accessing the current course.</div>
  701. </dd>
  702. <dt class="field">
  703. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  704. <span class="var-title">$courseurl</span>
  705. </dt>
  706. <dd class="index-item-body">
  707. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$courseurl">sloodle_view_users::$courseurl</a> in users.php</div>
  708. <div class="index-item-description">URL for accessing the current course.</div>
  709. </dd>
  710. <dt class="field">
  711. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  712. <span class="var-title">$course_context</span>
  713. </dt>
  714. <dd class="index-item-body">
  715. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$course_context">sloodle_view_user::$course_context</a> in user.php</div>
  716. <div class="index-item-description">Moodle permissions context for the current course.</div>
  717. </dd>
  718. <dt class="field">
  719. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  720. <span class="var-title">$course_context</span>
  721. </dt>
  722. <dd class="index-item-body">
  723. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$course_context">sloodle_view_ibank::$course_context</a> in ibank.php</div>
  724. <div class="index-item-description">Context object for permissions in the Moodle course.</div>
  725. </dd>
  726. <dt class="field">
  727. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  728. <span class="var-title">$course_context</span>
  729. </dt>
  730. <dd class="index-item-body">
  731. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#var$course_context">sloodle_base_view_module::$course_context</a> in base_view_module.php</div>
  732. <div class="index-item-description">Context object for permissions in the Moodle course.</div>
  733. </dd>
  734. <dt class="field">
  735. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  736. <span class="var-title">$course_context</span>
  737. </dt>
  738. <dd class="index-item-body">
  739. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$course_context">sloodle_view_users::$course_context</a> in users.php</div>
  740. <div class="index-item-description">Moodle permissions context for the current course.</div>
  741. </dd>
  742. <dt class="field">
  743. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  744. <span class="var-title">$course_context</span>
  745. </dt>
  746. <dd class="index-item-body">
  747. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#var$course_context">sloodle_view_course::$course_context</a> in course.php</div>
  748. <div class="index-item-description">Course context for Moodle permissions.</div>
  749. </dd>
  750. <dt class="field">
  751. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  752. <span class="var-title">$course_object</span>
  753. </dt>
  754. <dd class="index-item-body">
  755. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#var$course_object">SloodleCourse::$course_object</a> in course.php</div>
  756. <div class="index-item-description">The database object of the course to which this object relates.</div>
  757. </dd>
  758. <dt class="field">
  759. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  760. <span class="method-title">can_show_results</span>
  761. </dt>
  762. <dd class="index-item-body">
  763. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodcan_show_results">SloodleModuleChoice::can_show_results()</a> in module_choice.php</div>
  764. <div class="index-item-description">Checks if results are to be shown.</div>
  765. </dd>
  766. <dt class="field">
  767. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  768. <span class="method-title">can_user_authorise_objects</span>
  769. </dt>
  770. <dd class="index-item-body">
  771. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodcan_user_authorise_objects">SloodleCourse::can_user_authorise_objects()</a> in course.php</div>
  772. <div class="index-item-description">Checks whether or not the CURRENTLY LOGGED-IN user can authorise objects on this course.</div>
  773. </dd>
  774. <dt class="field">
  775. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  776. <span class="method-title">check_allow_drag</span>
  777. </dt>
  778. <dd class="index-item-body">
  779. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodcheck_allow_drag">SloodleModuleMap::check_allow_drag()</a> in module_map.php</div>
  780. <div class="index-item-description">Checks if map dragging should be enabled.</div>
  781. </dd>
  782. <dt class="field">
  783. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  784. <span class="method-title">check_authorisation</span>
  785. </dt>
  786. <dd class="index-item-body">
  787. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodcheck_authorisation">SloodleController::check_authorisation()</a> in controller.php</div>
  788. <div class="index-item-description">Checks if the specified object is authorised for this controller with the given password.</div>
  789. </dd>
  790. <dt class="field">
  791. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  792. <span class="method-title">check_autoenrol</span>
  793. </dt>
  794. <dd class="index-item-body">
  795. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodcheck_autoenrol">SloodleCourse::check_autoenrol()</a> in course.php</div>
  796. <div class="index-item-description">Is auto enrolment permitted on this site AND course? Takes into account the site-wide setting as well.</div>
  797. </dd>
  798. <dt class="field">
  799. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  800. <span class="method-title">check_autoreg</span>
  801. </dt>
  802. <dd class="index-item-body">
  803. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodcheck_autoreg">SloodleCourse::check_autoreg()</a> in course.php</div>
  804. <div class="index-item-description">Is auto registration permitted on this site AND course? Takes into account the site-wide setting as well.</div>
  805. </dd>
  806. <dt class="field">
  807. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  808. <span class="method-title">check_pan_controls</span>
  809. </dt>
  810. <dd class="index-item-body">
  811. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodcheck_pan_controls">SloodleModuleMap::check_pan_controls()</a> in module_map.php</div>
  812. <div class="index-item-description">Checks if the pan controls should be visible.</div>
  813. </dd>
  814. <dt class="field">
  815. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  816. <span class="method-title">check_permission</span>
  817. </dt>
  818. <dd class="index-item-body">
  819. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html#methodcheck_permission">sloodle_base_view::check_permission()</a> in base_view.php</div>
  820. <div class="index-item-description">Check that the user has permission to access the current resources.</div>
  821. </dd>
  822. <dt class="field">
  823. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  824. <span class="method-title">check_permission</span>
  825. </dt>
  826. <dd class="index-item-body">
  827. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#methodcheck_permission">sloodle_base_view_module::check_permission()</a> in base_view_module.php</div>
  828. <div class="index-item-description">Check that the user has permission to view this module, and check if they can edit it too.</div>
  829. </dd>
  830. <dt class="field">
  831. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  832. <span class="method-title">check_permission</span>
  833. </dt>
  834. <dd class="index-item-body">
  835. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodcheck_permission">sloodle_view_ibank::check_permission()</a> in ibank.php</div>
  836. <div class="index-item-description">Check that the user has permission to view this module, and check if they can edit it too.</div>
  837. </dd>
  838. <dt class="field">
  839. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  840. <span class="method-title">check_permission</span>
  841. </dt>
  842. <dd class="index-item-body">
  843. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#methodcheck_permission">sloodle_view_user::check_permission()</a> in user.php</div>
  844. <div class="index-item-description">Check that the user is logged-in and has permission to alter course settings.</div>
  845. </dd>
  846. <dt class="field">
  847. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  848. <span class="method-title">check_permission</span>
  849. </dt>
  850. <dd class="index-item-body">
  851. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#methodcheck_permission">sloodle_view_users::check_permission()</a> in users.php</div>
  852. <div class="index-item-description">Check that the user is logged-in and has permission to alter course settings.</div>
  853. </dd>
  854. <dt class="field">
  855. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  856. <span class="method-title">check_permission</span>
  857. </dt>
  858. <dd class="index-item-body">
  859. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#methodcheck_permission">sloodle_view_course::check_permission()</a> in course.php</div>
  860. <div class="index-item-description">Check that the user is logged-in and has permission to alter course settings.</div>
  861. </dd>
  862. <dt class="field">
  863. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  864. <span class="method-title">check_zoom_controls</span>
  865. </dt>
  866. <dd class="index-item-body">
  867. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodcheck_zoom_controls">SloodleModuleMap::check_zoom_controls()</a> in module_map.php</div>
  868. <div class="index-item-description">Checks if the zoom controls should be visible.</div>
  869. </dd>
  870. <dt class="field">
  871. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  872. <span class="method-title">clear_data</span>
  873. </dt>
  874. <dd class="index-item-body">
  875. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodclear_data">SloodleResponse::clear_data()</a> in io.php</div>
  876. <div class="index-item-description">Clears all data from member $data</div>
  877. </dd>
  878. <dt class="field">
  879. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  880. <span class="method-title">configure_object_from_layout_entry</span>
  881. </dt>
  882. <dd class="index-item-body">
  883. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodconfigure_object_from_layout_entry">SloodleController::configure_object_from_layout_entry()</a> in controller.php</div>
  884. <div class="index-item-description">Configures a registered object based on the defaults for its layout entry id</div>
  885. </dd>
  886. <dt class="field">
  887. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  888. <span class="method-title">configure_object_from_parent</span>
  889. </dt>
  890. <dd class="index-item-body">
  891. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodconfigure_object_from_parent">SloodleController::configure_object_from_parent()</a> in controller.php</div>
  892. </dd>
  893. <dt class="field">
  894. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  895. <span class="include-title">controller.php</span>
  896. </dt>
  897. <dd class="index-item-body">
  898. <div class="index-item-details"><a href="sloodle/_lib---controller.php.html">controller.php</a> in controller.php</div>
  899. </dd>
  900. <dt class="field">
  901. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  902. <span class="include-title">course.php</span>
  903. </dt>
  904. <dd class="index-item-body">
  905. <div class="index-item-details"><a href="sloodle/_lib---course.php.html">course.php</a> in course.php</div>
  906. </dd>
  907. <dt class="field">
  908. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  909. <span class="include-title">check.php</span>
  910. </dt>
  911. <dd class="index-item-body">
  912. <div class="index-item-details"><a href="sloodle/_lib---jquery---check.php.html">check.php</a> in check.php</div>
  913. </dd>
  914. <dt class="field">
  915. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  916. <span class="include-title">check_user_auth_linker.php</span>
  917. </dt>
  918. <dd class="index-item-body">
  919. <div class="index-item-details"><a href="sloodle/_login---check_user_auth_linker.php.html">check_user_auth_linker.php</a> in check_user_auth_linker.php</div>
  920. </dd>
  921. <dt class="field">
  922. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  923. <span class="include-title">controller.php</span>
  924. </dt>
  925. <dd class="index-item-body">
  926. <div class="index-item-details"><a href="sloodle/_view---controller.php.html">controller.php</a> in controller.php</div>
  927. </dd>
  928. <dt class="field">
  929. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  930. <span class="include-title">course.php</span>
  931. </dt>
  932. <dd class="index-item-body">
  933. <div class="index-item-details"><a href="sloodle/_view---course.php.html">course.php</a> in course.php</div>
  934. </dd>
  935. </dl>
  936. <a name="d"></a>
  937. <div class="index-letter-section">
  938. <div style="float: left" class="index-letter-title">d</div>
  939. <div style="float: right"><a href="#top">top</a></div>
  940. <div style="clear: both"></div>
  941. </div>
  942. <dl>
  943. <dt class="field">
  944. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  945. <span class="var-title">$data</span>
  946. </dt>
  947. <dd class="index-item-body">
  948. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$data">SloodleResponse::$data</a> in io.php</div>
  949. <div class="index-item-description">Data to render following the status line in the response.</div>
  950. </dd>
  951. <dt class="field">
  952. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  953. <span class="var-title">$definition</span>
  954. </dt>
  955. <dd class="index-item-body">
  956. <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#var$definition">SloodleGlossaryEntry::$definition</a> in module_glossary.php</div>
  957. <div class="index-item-description">The definition of this entry.</div>
  958. </dd>
  959. <dt class="field">
  960. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  961. <span class="var-title">$deletesloodleentry</span>
  962. </dt>
  963. <dd class="index-item-body">
  964. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$deletesloodleentry">sloodle_view_user::$deletesloodleentry</a> in user.php</div>
  965. <div class="index-item-description">Integer ID of a SLOODLE user entry to delete, where supplied by request parameter.</div>
  966. </dd>
  967. <dt class="field">
  968. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  969. <span class="var-title">$deleteuserobjects</span>
  970. </dt>
  971. <dd class="index-item-body">
  972. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$deleteuserobjects">sloodle_view_user::$deleteuserobjects</a> in user.php</div>
  973. <div class="index-item-description">List of user objects to be deleted (stored as a string, retrieved from request parameters).</div>
  974. </dd>
  975. <dt class="field">
  976. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  977. <span class="var-title">$distributor</span>
  978. </dt>
  979. <dd class="index-item-body">
  980. <div class="index-item-details"><a href="sloodle/sloodle_view_distributor.html#var$distributor">sloodle_view_distributor::$distributor</a> in distributor.php</div>
  981. <div class="index-item-description">SLOODLE data about a Distributor, retrieved directly from the database (table: sloodle_distributor)</div>
  982. </dd>
  983. <dt class="field">
  984. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  985. <span class="method-title">data_preprocessing</span>
  986. </dt>
  987. <dd class="index-item-body">
  988. <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>
  989. <div class="index-item-description">Pre-processes form initial values.</div>
  990. </dd>
  991. <dt class="field">
  992. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  993. <span class="const-title">DEFAULT_CENTER_X</span>
  994. </dt>
  995. <dd class="index-item-body">
  996. <div class="index-item-details"><a href="sloodle/_view_layout.php.html#defineDEFAULT_CENTER_X">DEFAULT_CENTER_X</a> in view_layout.php</div>
  997. </dd>
  998. <dt class="field">
  999. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  1000. <span class="const-title">DEFAULT_CENTER_Y</span>
  1001. </dt>
  1002. <dd class="index-item-body">
  1003. <div class="index-item-details"><a href="sloodle/_view_layout.php.html#defineDEFAULT_CENTER_Y">DEFAULT_CENTER_Y</a> in view_layout.php</div>
  1004. </dd>
  1005. <dt class="field">
  1006. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  1007. <span class="const-title">DEFAULT_SPACING_X</span>
  1008. </dt>
  1009. <dd class="index-item-body">
  1010. <div class="index-item-details"><a href="sloodle/_view_layout.php.html#defineDEFAULT_SPACING_X">DEFAULT_SPACING_X</a> in view_layout.php</div>
  1011. </dd>
  1012. <dt class="field">
  1013. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  1014. <span class="const-title">DEFAULT_SPACING_Y</span>
  1015. </dt>
  1016. <dd class="index-item-body">
  1017. <div class="index-item-details"><a href="sloodle/_view_layout.php.html#defineDEFAULT_SPACING_Y">DEFAULT_SPACING_Y</a> in view_layout.php</div>
  1018. </dd>
  1019. <dt class="field">
  1020. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1021. <span class="method-title">definition</span>
  1022. </dt>
  1023. <dd class="index-item-body">
  1024. <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>
  1025. <div class="index-item-description">Defines the form</div>
  1026. </dd>
  1027. <dt class="field">
  1028. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1029. <span class="method-title">definition_after_data</span>
  1030. </dt>
  1031. <dd class="index-item-body">
  1032. <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>
  1033. <div class="index-item-description">Performs extra processing on the form after existing/default data has been specified.</div>
  1034. </dd>
  1035. <dt class="field">
  1036. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1037. <span class="method-title">delete</span>
  1038. </dt>
  1039. <dd class="index-item-body">
  1040. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methoddelete">SloodleLayoutEntry::delete()</a> in layout_profile.php</div>
  1041. </dd>
  1042. <dt class="field">
  1043. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1044. <span class="method-title">delete_avatar</span>
  1045. </dt>
  1046. <dd class="index-item-body">
  1047. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methoddelete_avatar">SloodleUser::delete_avatar()</a> in user.php</div>
  1048. <div class="index-item-description">Deletes the current avatar from the database.</div>
  1049. </dd>
  1050. <dt class="field">
  1051. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1052. <span class="method-title">delete_configs</span>
  1053. </dt>
  1054. <dd class="index-item-body">
  1055. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methoddelete_configs">SloodleLayoutEntry::delete_configs()</a> in layout_profile.php</div>
  1056. </dd>
  1057. <dt class="field">
  1058. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1059. <span class="method-title">delete_entry</span>
  1060. </dt>
  1061. <dd class="index-item-body">
  1062. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methoddelete_entry">SloodleModulePresenter::delete_entry()</a> in module_presenter.php</div>
  1063. <div class="index-item-description">Deletes the identified entry by ID.</div>
  1064. </dd>
  1065. <dt class="field">
  1066. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1067. <span class="method-title">delete_layout</span>
  1068. </dt>
  1069. <dd class="index-item-body">
  1070. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methoddelete_layout">SloodleCourse::delete_layout()</a> in course.php</div>
  1071. <div class="index-item-description">Deletes the named layout.</div>
  1072. </dd>
  1073. <dt class="field">
  1074. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1075. <span class="method-title">delete_loginzone_allocation</span>
  1076. </dt>
  1077. <dd class="index-item-body">
  1078. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methoddelete_loginzone_allocation">SloodleCourse::delete_loginzone_allocation()</a> in course.php</div>
  1079. <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>
  1080. </dd>
  1081. <dt class="field">
  1082. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1083. <span class="method-title">delete_user_object</span>
  1084. </dt>
  1085. <dd class="index-item-body">
  1086. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methoddelete_user_object">SloodleUser::delete_user_object()</a> in user.php</div>
  1087. <div class="index-item-description">Deletes a user-centric object by UUID.</div>
  1088. </dd>
  1089. <dt class="field">
  1090. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1091. <span class="method-title">destroy</span>
  1092. </dt>
  1093. <dd class="index-item-body">
  1094. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methoddestroy">sloodle_view_ibank::destroy()</a> in ibank.php</div>
  1095. </dd>
  1096. <dt class="field">
  1097. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1098. <span class="method-title">disable</span>
  1099. </dt>
  1100. <dd class="index-item-body">
  1101. <div class="index-item-details"><a href="sloodle/SloodleController.html#methoddisable">SloodleController::disable()</a> in controller.php</div>
  1102. <div class="index-item-description">Disables this controller</div>
  1103. </dd>
  1104. <dt class="field">
  1105. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1106. <span class="method-title">disable_autoenrol</span>
  1107. </dt>
  1108. <dd class="index-item-body">
  1109. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methoddisable_autoenrol">SloodleCourse::disable_autoenrol()</a> in course.php</div>
  1110. <div class="index-item-description">Disables auto-enrolment for this course.</div>
  1111. </dd>
  1112. <dt class="field">
  1113. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1114. <span class="method-title">disable_autoreg</span>
  1115. </dt>
  1116. <dd class="index-item-body">
  1117. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methoddisable_autoreg">SloodleCourse::disable_autoreg()</a> in course.php</div>
  1118. <div class="index-item-description">Disables auto-registration for this course.</div>
  1119. </dd>
  1120. <dt class="field">
  1121. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  1122. <span class="include-title">distributor.php</span>
  1123. </dt>
  1124. <dd class="index-item-body">
  1125. <div class="index-item-details"><a href="sloodle/_view---distributor.php.html">distributor.php</a> in distributor.php</div>
  1126. </dd>
  1127. </dl>
  1128. <a name="e"></a>
  1129. <div class="index-letter-section">
  1130. <div style="float: left" class="index-letter-title">e</div>
  1131. <div style="float: right"><a href="#top">top</a></div>
  1132. <div style="clear: both"></div>
  1133. </div>
  1134. <dl>
  1135. <dt class="field">
  1136. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  1137. <span class="var-title">$entries</span>
  1138. </dt>
  1139. <dd class="index-item-body">
  1140. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#var$entries">SloodleLayout::$entries</a> in layout_profile.php</div>
  1141. </dd>
  1142. <dt class="field">
  1143. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1144. <span class="method-title">edit_entry</span>
  1145. </dt>
  1146. <dd class="index-item-body">
  1147. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodedit_entry">SloodleModulePresenter::edit_entry()</a> in module_presenter.php</div>
  1148. <div class="index-item-description">Edits an existing entry in the presentation.</div>
  1149. </dd>
  1150. <dt class="field">
  1151. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1152. <span class="method-title">enable</span>
  1153. </dt>
  1154. <dd class="index-item-body">
  1155. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodenable">SloodleController::enable()</a> in controller.php</div>
  1156. <div class="index-item-description">Enables this controller</div>
  1157. </dd>
  1158. <dt class="field">
  1159. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1160. <span class="method-title">enable_autoenrol</span>
  1161. </dt>
  1162. <dd class="index-item-body">
  1163. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodenable_autoenrol">SloodleCourse::enable_autoenrol()</a> in course.php</div>
  1164. <div class="index-item-description">Enables auto-enrolment for this course.</div>
  1165. </dd>
  1166. <dt class="field">
  1167. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1168. <span class="method-title">enable_autoreg</span>
  1169. </dt>
  1170. <dd class="index-item-body">
  1171. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodenable_autoreg">SloodleCourse::enable_autoreg()</a> in course.php</div>
  1172. <div class="index-item-description">Enables auto-registration for this course.</div>
  1173. </dd>
  1174. <dt class="field">
  1175. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1176. <span class="method-title">enrol</span>
  1177. </dt>
  1178. <dd class="index-item-body">
  1179. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodenrol">SloodleUser::enrol()</a> in user.php</div>
  1180. <div class="index-item-description">Enrols the current user in the specified course</div>
  1181. </dd>
  1182. </dl>
  1183. <a name="f"></a>
  1184. <div class="index-letter-section">
  1185. <div style="float: left" class="index-letter-title">f</div>
  1186. <div style="float: right"><a href="#top">top</a></div>
  1187. <div style="clear: both"></div>
  1188. </div>
  1189. <dl>
  1190. <dt class="field">
  1191. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  1192. <span class="var-title">$feedback</span>
  1193. </dt>
  1194. <dd class="index-item-body">
  1195. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#var$feedback">sloodle_view_presenter::$feedback</a> in presenter.php</div>
  1196. <div class="index-item-description">Stores an optional feedback string which we may pick up from session data.</div>
  1197. </dd>
  1198. <dt class="field">
  1199. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  1200. <span class="var-title">$field_separator</span>
  1201. </dt>
  1202. <dd class="index-item-body">
  1203. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$field_separator">SloodleResponse::$field_separator</a> in io.php</div>
  1204. <div class="index-item-description">The separation string between fields of a response line (by default, a pipe character |).</div>
  1205. </dd>
  1206. <dt class="field">
  1207. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1208. <span class="method-title">find_real_name</span>
  1209. </dt>
  1210. <dd class="index-item-body">
  1211. <div class="index-item-details"><a href="sloodle/SloodleModuleAviLister.html#methodfind_real_name">SloodleModuleAviLister::find_real_name()</a> in module_avilister.php</div>
  1212. <div class="index-item-description">Fetch the real name to match the given avatar.</div>
  1213. </dd>
  1214. <dt class="field">
  1215. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1216. <span class="method-title">find_real_names</span>
  1217. </dt>
  1218. <dd class="index-item-body">
  1219. <div class="index-item-details"><a href="sloodle/SloodleModuleAviLister.html#methodfind_real_names">SloodleModuleAviLister::find_real_names()</a> in module_avilister.php</div>
  1220. <div class="index-item-description">Lookup the realnames for all the given avatar names.</div>
  1221. </dd>
  1222. <dt class="field">
  1223. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1224. <span class="method-title">find_real_names_course</span>
  1225. </dt>
  1226. <dd class="index-item-body">
  1227. <div class="index-item-details"><a href="sloodle/SloodleModuleAviLister.html#methodfind_real_names_course">SloodleModuleAviLister::find_real_names_course()</a> in module_avilister.php</div>
  1228. <div class="index-item-description">Lookup the avatar/real name associations for everybody in the current course.</div>
  1229. </dd>
  1230. </dl>
  1231. <a name="g"></a>
  1232. <div class="index-letter-section">
  1233. <div style="float: left" class="index-letter-title">g</div>
  1234. <div style="float: right"><a href="#top">top</a></div>
  1235. <div style="clear: both"></div>
  1236. </div>
  1237. <dl>
  1238. <dt class="field">
  1239. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1240. <span class="method-title">generate_loginzone_allocation</span>
  1241. </dt>
  1242. <dd class="index-item-body">
  1243. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodgenerate_loginzone_allocation">SloodleCourse::generate_loginzone_allocation()</a> in course.php</div>
  1244. <div class="index-item-description">Generates a new LoginZone allocation for the specified user.</div>
  1245. </dd>
  1246. <dt class="field">
  1247. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1248. <span class="method-title">getAvatarDebits</span>
  1249. </dt>
  1250. <dd class="index-item-body">
  1251. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodgetAvatarDebits">iPointBank::getAvatarDebits()</a> in ipointbank_object.php</div>
  1252. <div class="index-item-description">This function will search through all the transactions for this stipend based on avatar uuid and return the TOTAL debits amount</div>
  1253. </dd>
  1254. <dt class="field">
  1255. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1256. <span class="method-title">getAvatarList</span>
  1257. </dt>
  1258. <dd class="index-item-body">
  1259. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodgetAvatarList">sloodleCourseObj::getAvatarList()</a> in sloodlecourseobject.php</div>
  1260. </dd>
  1261. <dt class="field">
  1262. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1263. <span class="method-title">geticurrency</span>
  1264. </dt>
  1265. <dd class="index-item-body">
  1266. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodgeticurrency">stipendGiverObject::geticurrency()</a> in stipendgiver_object.php</div>
  1267. </dd>
  1268. <dt class="field">
  1269. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1270. <span class="method-title">getRenderMessage</span>
  1271. </dt>
  1272. <dd class="index-item-body">
  1273. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodgetRenderMessage">sloodle_view_ibank::getRenderMessage()</a> in ibank.php</div>
  1274. </dd>
  1275. <dt class="field">
  1276. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1277. <span class="method-title">getSloodleId</span>
  1278. </dt>
  1279. <dd class="index-item-body">
  1280. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodgetSloodleId">iPointBank::getSloodleId()</a> in ipointbank_object.php</div>
  1281. </dd>
  1282. <dt class="field">
  1283. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1284. <span class="method-title">getSloodleId</span>
  1285. </dt>
  1286. <dd class="index-item-body">
  1287. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodgetSloodleId">stipendGiverObject::getSloodleId()</a> in stipendgiver_object.php</div>
  1288. </dd>
  1289. <dt class="field">
  1290. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1291. <span class="method-title">getSloodleId</span>
  1292. </dt>
  1293. <dd class="index-item-body">
  1294. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodgetSloodleId">sloodleCourseObj::getSloodleId()</a> in sloodlecourseobject.php</div>
  1295. </dd>
  1296. <dt class="field">
  1297. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1298. <span class="method-title">getStartingBalance</span>
  1299. </dt>
  1300. <dd class="index-item-body">
  1301. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodgetStartingBalance">stipendGiverObject::getStartingBalance()</a> in stipendgiver_object.php</div>
  1302. </dd>
  1303. <dt class="field">
  1304. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1305. <span class="method-title">getStipendBudget</span>
  1306. </dt>
  1307. <dd class="index-item-body">
  1308. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodgetStipendBudget">stipendGiverObject::getStipendBudget()</a> in stipendgiver_object.php</div>
  1309. </dd>
  1310. <dt class="field">
  1311. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1312. <span class="method-title">getStipendRec</span>
  1313. </dt>
  1314. <dd class="index-item-body">
  1315. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodgetStipendRec">stipendGiverObject::getStipendRec()</a> in stipendgiver_object.php</div>
  1316. </dd>
  1317. <dt class="field">
  1318. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1319. <span class="method-title">getTransactionRecords</span>
  1320. </dt>
  1321. <dd class="index-item-body">
  1322. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodgetTransactionRecords">iPointBank::getTransactionRecords()</a> in ipointbank_object.php</div>
  1323. </dd>
  1324. <dt class="field">
  1325. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1326. <span class="method-title">getUserDebits</span>
  1327. </dt>
  1328. <dd class="index-item-body">
  1329. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodgetUserDebits">iPointBank::getUserDebits()</a> in ipointbank_object.php</div>
  1330. <div class="index-item-description">This function will search through all the transactions and return TOTAL debits for this course user</div>
  1331. </dd>
  1332. <dt class="field">
  1333. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1334. <span class="method-title">getUserList</span>
  1335. </dt>
  1336. <dd class="index-item-body">
  1337. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodgetUserList">sloodleCourseObj::getUserList()</a> in sloodlecourseobject.php</div>
  1338. </dd>
  1339. <dt class="field">
  1340. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1341. <span class="method-title">get_absolute_url</span>
  1342. </dt>
  1343. <dd class="index-item-body">
  1344. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideImage.html#methodget_absolute_url">SloodlePluginPresenterSlideImage::get_absolute_url()</a> in image.php</div>
  1345. <div class="index-item-description">Construct an absolute URL, based on the given source data.</div>
  1346. </dd>
  1347. <dt class="field">
  1348. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1349. <span class="method-title">get_absolute_url</span>
  1350. </dt>
  1351. <dd class="index-item-body">
  1352. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideVideo.html#methodget_absolute_url">SloodlePluginPresenterSlideVideo::get_absolute_url()</a> in video.php</div>
  1353. <div class="index-item-description">Construct an absolute URL, based on the given source data.</div>
  1354. </dd>
  1355. <dt class="field">
  1356. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1357. <span class="method-title">get_absolute_url</span>
  1358. </dt>
  1359. <dd class="index-item-body">
  1360. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideWeb.html#methodget_absolute_url">SloodlePluginPresenterSlideWeb::get_absolute_url()</a> in web.php</div>
  1361. <div class="index-item-description">Construct an absolute URL, based on the given source data.</div>
  1362. </dd>
  1363. <dt class="field">
  1364. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1365. <span class="method-title">get_amount</span>
  1366. </dt>
  1367. <dd class="index-item-body">
  1368. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_amount">SloodleModuleiBank::get_amount()</a> in module_ibank.php</div>
  1369. </dd>
  1370. <dt class="field">
  1371. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1372. <span class="method-title">get_authorizing_user</span>
  1373. </dt>
  1374. <dd class="index-item-body">
  1375. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_authorizing_user">SloodleController::get_authorizing_user()</a> in controller.php</div>
  1376. <div class="index-item-description">Gets the ID of the user who authorised the specified object.</div>
  1377. </dd>
  1378. <dt class="field">
  1379. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1380. <span class="method-title">get_autoenrol</span>
  1381. </dt>
  1382. <dd class="index-item-body">
  1383. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_autoenrol">SloodleCourse::get_autoenrol()</a> in course.php</div>
  1384. <div class="index-item-description">Gets the auto enrolment value for this course only.</div>
  1385. </dd>
  1386. <dt class="field">
  1387. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1388. <span class="method-title">get_autoreg</span>
  1389. </dt>
  1390. <dd class="index-item-body">
  1391. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_autoreg">SloodleCourse::get_autoreg()</a> in course.php</div>
  1392. <div class="index-item-description">Gets the autoregistration value for this course only.</div>
  1393. </dd>
  1394. <dt class="field">
  1395. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1396. <span class="method-title">get_avatars</span>
  1397. </dt>
  1398. <dd class="index-item-body">
  1399. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodget_avatars">sloodleCourseObj::get_avatars()</a> in sloodlecourseobject.php</div>
  1400. </dd>
  1401. <dt class="field">
  1402. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1403. <span class="method-title">get_avatar_id</span>
  1404. </dt>
  1405. <dd class="index-item-body">
  1406. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_avatar_id">SloodleUser::get_avatar_id()</a> in user.php</div>
  1407. <div class="index-item-description">Gets the unique ID of the avatar.</div>
  1408. </dd>
  1409. <dt class="field">
  1410. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1411. <span class="method-title">get_avatar_last_active</span>
  1412. </dt>
  1413. <dd class="index-item-body">
  1414. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_avatar_last_active">SloodleUser::get_avatar_last_active()</a> in user.php</div>
  1415. <div class="index-item-description">Gets the timestamp of whenever the avatar was last active</div>
  1416. </dd>
  1417. <dt class="field">
  1418. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1419. <span class="method-title">get_avatar_name</span>
  1420. </dt>
  1421. <dd class="index-item-body">
  1422. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_avatar_name">SloodleUser::get_avatar_name()</a> in user.php</div>
  1423. <div class="index-item-description">Gets the name of the avatar</div>
  1424. </dd>
  1425. <dt class="field">
  1426. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1427. <span class="method-title">get_avatar_name</span>
  1428. </dt>
  1429. <dd class="index-item-body">
  1430. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_avatar_name">SloodleRequest::get_avatar_name()</a> in io.php</div>
  1431. <div class="index-item-description">Fetches the avatar name request parameter.</div>
  1432. </dd>
  1433. <dt class="field">
  1434. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1435. <span class="method-title">get_avatar_uuid</span>
  1436. </dt>
  1437. <dd class="index-item-body">
  1438. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_avatar_uuid">SloodleUser::get_avatar_uuid()</a> in user.php</div>
  1439. <div class="index-item-description">Gets the UUID of the avatar</div>
  1440. </dd>
  1441. <dt class="field">
  1442. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1443. <span class="method-title">get_avatar_uuid</span>
  1444. </dt>
  1445. <dd class="index-item-body">
  1446. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_avatar_uuid">SloodleRequest::get_avatar_uuid()</a> in io.php</div>
  1447. <div class="index-item-description">Fetches the avatar UUID request parameter.</div>
  1448. </dd>
  1449. <dt class="field">
  1450. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1451. <span class="method-title">get_chat_history</span>
  1452. </dt>
  1453. <dd class="index-item-body">
  1454. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_chat_history">SloodleModuleChat::get_chat_history()</a> in module_chat.php</div>
  1455. <div class="index-item-description">Gets a recent history of messages from the chatroom.</div>
  1456. </dd>
  1457. <dt class="field">
  1458. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1459. <span class="method-title">get_class_list</span>
  1460. </dt>
  1461. <dd class="index-item-body">
  1462. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_class_list">SloodleModuleiBank::get_class_list()</a> in module_ibank.php</div>
  1463. <div class="index-item-description">Gets a list of students in the class</div>
  1464. </dd>
  1465. <dt class="field">
  1466. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1467. <span class="method-title">get_closing_time</span>
  1468. </dt>
  1469. <dd class="index-item-body">
  1470. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_closing_time">SloodleModuleChoice::get_closing_time()</a> in module_choice.php</div>
  1471. <div class="index-item-description">Gets the time at which this choice closes.</div>
  1472. </dd>
  1473. <dt class="field">
  1474. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1475. <span class="method-title">get_controller_id</span>
  1476. </dt>
  1477. <dd class="index-item-body">
  1478. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_controller_id">SloodleController::get_controller_id()</a> in controller.php</div>
  1479. <div class="index-item-description">Gets the identifier for controller (unique among all Sloodle controlers - may be the same as <a href="sloodle/SloodlePluginBase.html#methodget_id">get_id()</a> in some environments</div>
  1480. </dd>
  1481. <dt class="field">
  1482. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1483. <span class="method-title">get_controller_id</span>
  1484. </dt>
  1485. <dd class="index-item-body">
  1486. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_controller_id">SloodleRequest::get_controller_id()</a> in io.php</div>
  1487. <div class="index-item-description">Fetches the controller ID request parameter.</div>
  1488. </dd>
  1489. <dt class="field">
  1490. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1491. <span class="method-title">get_course</span>
  1492. </dt>
  1493. <dd class="index-item-body">
  1494. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodget_course">SloodleLayout::get_course()</a> in layout_profile.php</div>
  1495. </dd>
  1496. <dt class="field">
  1497. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1498. <span class="method-title">get_course_id</span>
  1499. </dt>
  1500. <dd class="index-item-body">
  1501. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_course_id">SloodleModule::get_course_id()</a> in module_base.php</div>
  1502. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1503. </dd>
  1504. <dt class="field">
  1505. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1506. <span class="method-title">get_course_id</span>
  1507. </dt>
  1508. <dd class="index-item-body">
  1509. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_course_id">SloodleCourse::get_course_id()</a> in course.php</div>
  1510. <div class="index-item-description">Gets the identifier of the course in the VLE.</div>
  1511. </dd>
  1512. <dt class="field">
  1513. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1514. <span class="method-title">get_course_id</span>
  1515. </dt>
  1516. <dd class="index-item-body">
  1517. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_course_id">SloodleModuleChoice::get_course_id()</a> in module_choice.php</div>
  1518. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1519. </dd>
  1520. <dt class="field">
  1521. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1522. <span class="method-title">get_course_id</span>
  1523. </dt>
  1524. <dd class="index-item-body">
  1525. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_course_id">SloodleModuleBlog::get_course_id()</a> in module_blog.php</div>
  1526. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1527. </dd>
  1528. <dt class="field">
  1529. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1530. <span class="method-title">get_course_id</span>
  1531. </dt>
  1532. <dd class="index-item-body">
  1533. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_course_id">SloodleModuleiBank::get_course_id()</a> in module_ibank.php</div>
  1534. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1535. </dd>
  1536. <dt class="field">
  1537. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1538. <span class="method-title">get_course_id</span>
  1539. </dt>
  1540. <dd class="index-item-body">
  1541. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_course_id">SloodleModuleDistributor::get_course_id()</a> in module_distributor.php</div>
  1542. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1543. </dd>
  1544. <dt class="field">
  1545. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1546. <span class="method-title">get_course_id</span>
  1547. </dt>
  1548. <dd class="index-item-body">
  1549. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_course_id">SloodleModuleSloodleObject::get_course_id()</a> in module_sloodleobject.php</div>
  1550. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1551. </dd>
  1552. <dt class="field">
  1553. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1554. <span class="method-title">get_course_id</span>
  1555. </dt>
  1556. <dd class="index-item-body">
  1557. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_course_id">SloodleModuleGlossary::get_course_id()</a> in module_glossary.php</div>
  1558. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1559. </dd>
  1560. <dt class="field">
  1561. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1562. <span class="method-title">get_course_id</span>
  1563. </dt>
  1564. <dd class="index-item-body">
  1565. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_course_id">SloodleController::get_course_id()</a> in controller.php</div>
  1566. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1567. </dd>
  1568. <dt class="field">
  1569. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1570. <span class="method-title">get_course_id</span>
  1571. </dt>
  1572. <dd class="index-item-body">
  1573. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_course_id">SloodleModuleMap::get_course_id()</a> in module_map.php</div>
  1574. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1575. </dd>
  1576. <dt class="field">
  1577. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1578. <span class="method-title">get_course_id</span>
  1579. </dt>
  1580. <dd class="index-item-body">
  1581. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_course_id">SloodleRequest::get_course_id()</a> in io.php</div>
  1582. <div class="index-item-description">Fetches the course ID request parameter.</div>
  1583. </dd>
  1584. <dt class="field">
  1585. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1586. <span class="method-title">get_course_id</span>
  1587. </dt>
  1588. <dd class="index-item-body">
  1589. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_course_id">SloodleModulePresenter::get_course_id()</a> in module_presenter.php</div>
  1590. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1591. </dd>
  1592. <dt class="field">
  1593. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1594. <span class="method-title">get_course_id</span>
  1595. </dt>
  1596. <dd class="index-item-body">
  1597. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_course_id">SloodleModuleChat::get_course_id()</a> in module_chat.php</div>
  1598. <div class="index-item-description">Gets the identifier of the course this controller belongs to.</div>
  1599. </dd>
  1600. <dt class="field">
  1601. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1602. <span class="method-title">get_course_module_instance</span>
  1603. </dt>
  1604. <dd class="index-item-body">
  1605. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_course_module_instance">SloodleRequest::get_course_module_instance()</a> in io.php</div>
  1606. <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>
  1607. </dd>
  1608. <dt class="field">
  1609. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1610. <span class="method-title">get_course_object</span>
  1611. </dt>
  1612. <dd class="index-item-body">
  1613. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_course_object">SloodleCourse::get_course_object()</a> in course.php</div>
  1614. <div class="index-item-description">Gets the VLE course object.</div>
  1615. </dd>
  1616. <dt class="field">
  1617. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1618. <span class="method-title">get_course_record</span>
  1619. </dt>
  1620. <dd class="index-item-body">
  1621. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_course_record">SloodleRequest::get_course_record()</a> in io.php</div>
  1622. <div class="index-item-description">Gets a database record for the course identified in the request.</div>
  1623. </dd>
  1624. <dt class="field">
  1625. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1626. <span class="method-title">get_creation_time</span>
  1627. </dt>
  1628. <dd class="index-item-body">
  1629. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_creation_time">SloodleModuleiBank::get_creation_time()</a> in module_ibank.php</div>
  1630. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1631. </dd>
  1632. <dt class="field">
  1633. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1634. <span class="method-title">get_creation_time</span>
  1635. </dt>
  1636. <dd class="index-item-body">
  1637. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_creation_time">SloodleModulePresenter::get_creation_time()</a> in module_presenter.php</div>
  1638. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1639. </dd>
  1640. <dt class="field">
  1641. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1642. <span class="method-title">get_creation_time</span>
  1643. </dt>
  1644. <dd class="index-item-body">
  1645. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_creation_time">SloodleModuleSloodleObject::get_creation_time()</a> in module_sloodleobject.php</div>
  1646. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1647. </dd>
  1648. <dt class="field">
  1649. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1650. <span class="method-title">get_creation_time</span>
  1651. </dt>
  1652. <dd class="index-item-body">
  1653. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_creation_time">SloodleModuleDistributor::get_creation_time()</a> in module_distributor.php</div>
  1654. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1655. </dd>
  1656. <dt class="field">
  1657. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1658. <span class="method-title">get_creation_time</span>
  1659. </dt>
  1660. <dd class="index-item-body">
  1661. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_creation_time">SloodleModuleBlog::get_creation_time()</a> in module_blog.php</div>
  1662. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1663. </dd>
  1664. <dt class="field">
  1665. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1666. <span class="method-title">get_creation_time</span>
  1667. </dt>
  1668. <dd class="index-item-body">
  1669. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_creation_time">SloodleController::get_creation_time()</a> in controller.php</div>
  1670. <div class="index-item-description">Gets the time at which this controller was created.</div>
  1671. </dd>
  1672. <dt class="field">
  1673. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1674. <span class="method-title">get_creation_time</span>
  1675. </dt>
  1676. <dd class="index-item-body">
  1677. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_creation_time">SloodleModuleChat::get_creation_time()</a> in module_chat.php</div>
  1678. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1679. </dd>
  1680. <dt class="field">
  1681. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1682. <span class="method-title">get_creation_time</span>
  1683. </dt>
  1684. <dd class="index-item-body">
  1685. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_creation_time">SloodleModuleChoice::get_creation_time()</a> in module_choice.php</div>
  1686. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1687. </dd>
  1688. <dt class="field">
  1689. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1690. <span class="method-title">get_creation_time</span>
  1691. </dt>
  1692. <dd class="index-item-body">
  1693. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_creation_time">SloodleModuleGlossary::get_creation_time()</a> in module_glossary.php</div>
  1694. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1695. </dd>
  1696. <dt class="field">
  1697. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1698. <span class="method-title">get_creation_time</span>
  1699. </dt>
  1700. <dd class="index-item-body">
  1701. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_creation_time">SloodleModuleMap::get_creation_time()</a> in module_map.php</div>
  1702. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1703. </dd>
  1704. <dt class="field">
  1705. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1706. <span class="method-title">get_creation_time</span>
  1707. </dt>
  1708. <dd class="index-item-body">
  1709. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_creation_time">SloodleModule::get_creation_time()</a> in module_base.php</div>
  1710. <div class="index-item-description">Gets the time at which this instance was created, or 0 if unknown.</div>
  1711. </dd>
  1712. <dt class="field">
  1713. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1714. <span class="method-title">get_enrolled_courses</span>
  1715. </dt>
  1716. <dd class="index-item-body">
  1717. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_enrolled_courses">SloodleUser::get_enrolled_courses()</a> in user.php</div>
  1718. <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>
  1719. </dd>
  1720. <dt class="field">
  1721. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1722. <span class="method-title">get_entries</span>
  1723. </dt>
  1724. <dd class="index-item-body">
  1725. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodget_entries">SloodleLayout::get_entries()</a> in layout_profile.php</div>
  1726. </dd>
  1727. <dt class="field">
  1728. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1729. <span class="method-title">get_entry_urls</span>
  1730. </dt>
  1731. <dd class="index-item-body">
  1732. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_entry_urls">SloodleModulePresenter::get_entry_urls()</a> in module_presenter.php</div>
  1733. <div class="index-item-description">Gets an array of absolute URLs to images in this slideshow, all correctly ordered.</div>
  1734. </dd>
  1735. <dt class="field">
  1736. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1737. <span class="method-title">get_field_separator</span>
  1738. </dt>
  1739. <dd class="index-item-body">
  1740. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodget_field_separator">SloodleResponse::get_field_separator()</a> in io.php</div>
  1741. <div class="index-item-description">Gets the field separator.</div>
  1742. </dd>
  1743. <dt class="field">
  1744. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1745. <span class="method-title">get_frame_height</span>
  1746. </dt>
  1747. <dd class="index-item-body">
  1748. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_frame_height">SloodleModulePresenter::get_frame_height()</a> in module_presenter.php</div>
  1749. <div class="index-item-description">Gets the height of the Presenter frame (for viewing in Moodle).</div>
  1750. </dd>
  1751. <dt class="field">
  1752. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1753. <span class="method-title">get_frame_width</span>
  1754. </dt>
  1755. <dd class="index-item-body">
  1756. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_frame_width">SloodleModulePresenter::get_frame_width()</a> in module_presenter.php</div>
  1757. <div class="index-item-description">Gets the width of the Presenter frame (for viewing in Moodle).</div>
  1758. </dd>
  1759. <dt class="field">
  1760. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1761. <span class="method-title">get_full_name</span>
  1762. </dt>
  1763. <dd class="index-item-body">
  1764. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_full_name">SloodleCourse::get_full_name()</a> in course.php</div>
  1765. <div class="index-item-description">Gets the full name of this course in the VLE.</div>
  1766. </dd>
  1767. <dt class="field">
  1768. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1769. <span class="method-title">get_full_real_name</span>
  1770. </dt>
  1771. <dd class="index-item-body">
  1772. <div class="index-item-details"><a href="sloodle/SloodleAviListName.html#methodget_full_real_name">SloodleAviListName::get_full_real_name()</a> in module_avilister.php</div>
  1773. <div class="index-item-description">Gets the full real name of the user (&quot;firstname lastname&quot;)</div>
  1774. </dd>
  1775. <dt class="field">
  1776. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1777. <span class="method-title">get_id</span>
  1778. </dt>
  1779. <dd class="index-item-body">
  1780. <div class="index-item-details"><a href="sloodle/SloodlePluginBase.html#methodget_id">SloodlePluginBase::get_id()</a> in _base.php</div>
  1781. <div class="index-item-description">Gets the identifier of this plugin.</div>
  1782. </dd>
  1783. <dt class="field">
  1784. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1785. <span class="method-title">get_id</span>
  1786. </dt>
  1787. <dd class="index-item-body">
  1788. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_id">SloodleController::get_id()</a> in controller.php</div>
  1789. <div class="index-item-description">Gets the site-wide unique identifier for this module.</div>
  1790. </dd>
  1791. <dt class="field">
  1792. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1793. <span class="method-title">get_initial_coordinates</span>
  1794. </dt>
  1795. <dd class="index-item-body">
  1796. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_initial_coordinates">SloodleModuleMap::get_initial_coordinates()</a> in module_map.php</div>
  1797. <div class="index-item-description">Gets the initial coordinates of the map.</div>
  1798. </dd>
  1799. <dt class="field">
  1800. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1801. <span class="method-title">get_initial_zoom</span>
  1802. </dt>
  1803. <dd class="index-item-body">
  1804. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_initial_zoom">SloodleModuleMap::get_initial_zoom()</a> in module_map.php</div>
  1805. <div class="index-item-description">Gets the initial zoom factor of the map (1 - 6).</div>
  1806. </dd>
  1807. <dt class="field">
  1808. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1809. <span class="method-title">get_intro</span>
  1810. </dt>
  1811. <dd class="index-item-body">
  1812. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_intro">SloodleModuleChat::get_intro()</a> in module_chat.php</div>
  1813. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1814. </dd>
  1815. <dt class="field">
  1816. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1817. <span class="method-title">get_intro</span>
  1818. </dt>
  1819. <dd class="index-item-body">
  1820. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_intro">SloodleModuleiBank::get_intro()</a> in module_ibank.php</div>
  1821. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1822. </dd>
  1823. <dt class="field">
  1824. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1825. <span class="method-title">get_intro</span>
  1826. </dt>
  1827. <dd class="index-item-body">
  1828. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_intro">SloodleModuleChoice::get_intro()</a> in module_choice.php</div>
  1829. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1830. </dd>
  1831. <dt class="field">
  1832. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1833. <span class="method-title">get_intro</span>
  1834. </dt>
  1835. <dd class="index-item-body">
  1836. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_intro">SloodleModuleDistributor::get_intro()</a> in module_distributor.php</div>
  1837. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1838. </dd>
  1839. <dt class="field">
  1840. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1841. <span class="method-title">get_intro</span>
  1842. </dt>
  1843. <dd class="index-item-body">
  1844. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_intro">SloodleModuleMap::get_intro()</a> in module_map.php</div>
  1845. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1846. </dd>
  1847. <dt class="field">
  1848. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1849. <span class="method-title">get_intro</span>
  1850. </dt>
  1851. <dd class="index-item-body">
  1852. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_intro">SloodleModulePresenter::get_intro()</a> in module_presenter.php</div>
  1853. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1854. </dd>
  1855. <dt class="field">
  1856. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1857. <span class="method-title">get_intro</span>
  1858. </dt>
  1859. <dd class="index-item-body">
  1860. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_intro">SloodleModuleGlossary::get_intro()</a> in module_glossary.php</div>
  1861. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1862. </dd>
  1863. <dt class="field">
  1864. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1865. <span class="method-title">get_intro</span>
  1866. </dt>
  1867. <dd class="index-item-body">
  1868. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_intro">SloodleModuleSloodleObject::get_intro()</a> in module_sloodleobject.php</div>
  1869. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1870. </dd>
  1871. <dt class="field">
  1872. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1873. <span class="method-title">get_intro</span>
  1874. </dt>
  1875. <dd class="index-item-body">
  1876. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_intro">SloodleModule::get_intro()</a> in module_base.php</div>
  1877. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1878. </dd>
  1879. <dt class="field">
  1880. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1881. <span class="method-title">get_intro</span>
  1882. </dt>
  1883. <dd class="index-item-body">
  1884. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_intro">SloodleController::get_intro()</a> in controller.php</div>
  1885. <div class="index-item-description">Gets the intro description of this controller.</div>
  1886. </dd>
  1887. <dt class="field">
  1888. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1889. <span class="method-title">get_intro</span>
  1890. </dt>
  1891. <dd class="index-item-body">
  1892. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_intro">SloodleModuleBlog::get_intro()</a> in module_blog.php</div>
  1893. <div class="index-item-description">Gets the intro description of this module instance, if available.</div>
  1894. </dd>
  1895. <dt class="field">
  1896. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1897. <span class="method-title">get_latest_public_post</span>
  1898. </dt>
  1899. <dd class="index-item-body">
  1900. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_latest_public_post">SloodleModuleBlog::get_latest_public_post()</a> in module_blog.php</div>
  1901. <div class="index-item-description">Gets the most recent public post.</div>
  1902. </dd>
  1903. <dt class="field">
  1904. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1905. <span class="method-title">get_latest_site_post</span>
  1906. </dt>
  1907. <dd class="index-item-body">
  1908. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_latest_site_post">SloodleModuleBlog::get_latest_site_post()</a> in module_blog.php</div>
  1909. <div class="index-item-description">Gets the most recent public/site level post.</div>
  1910. </dd>
  1911. <dt class="field">
  1912. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1913. <span class="method-title">get_latest_user_post</span>
  1914. </dt>
  1915. <dd class="index-item-body">
  1916. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_latest_user_post">SloodleModuleBlog::get_latest_user_post()</a> in module_blog.php</div>
  1917. <div class="index-item-description">Gets the most recent post by a particular user, regardless of visibility.</div>
  1918. </dd>
  1919. <dt class="field">
  1920. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1921. <span class="method-title">get_layout</span>
  1922. </dt>
  1923. <dd class="index-item-body">
  1924. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodget_layout">SloodleLayoutEntry::get_layout()</a> in layout_profile.php</div>
  1925. </dd>
  1926. <dt class="field">
  1927. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1928. <span class="method-title">get_layout</span>
  1929. </dt>
  1930. <dd class="index-item-body">
  1931. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_layout">SloodleCourse::get_layout()</a> in course.php</div>
  1932. </dd>
  1933. <dt class="field">
  1934. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1935. <span class="method-title">get_layouts</span>
  1936. </dt>
  1937. <dd class="index-item-body">
  1938. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_layouts">SloodleCourse::get_layouts()</a> in course.php</div>
  1939. <div class="index-item-description">Gets SloodleLayout objects for all the layouts in the course.</div>
  1940. </dd>
  1941. <dt class="field">
  1942. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1943. <span class="method-title">get_layout_entries</span>
  1944. </dt>
  1945. <dd class="index-item-body">
  1946. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_layout_entries">SloodleCourse::get_layout_entries()</a> in course.php</div>
  1947. <div class="index-item-description">Gets all the entries in the named layout.</div>
  1948. </dd>
  1949. <dt class="field">
  1950. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1951. <span class="method-title">get_layout_entries_for_layout_id</span>
  1952. </dt>
  1953. <dd class="index-item-body">
  1954. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_layout_entries_for_layout_id">SloodleCourse::get_layout_entries_for_layout_id()</a> in course.php</div>
  1955. <div class="index-item-description">Gets all the entries in the named layout.</div>
  1956. </dd>
  1957. <dt class="field">
  1958. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1959. <span class="method-title">get_layout_entry_configs</span>
  1960. </dt>
  1961. <dd class="index-item-body">
  1962. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodget_layout_entry_configs">SloodleLayoutEntry::get_layout_entry_configs()</a> in layout_profile.php</div>
  1963. <div class="index-item-description">Return an array of layout_entry_config objects</div>
  1964. </dd>
  1965. <dt class="field">
  1966. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1967. <span class="method-title">get_layout_entry_configs_as_hidden_fields</span>
  1968. </dt>
  1969. <dd class="index-item-body">
  1970. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodget_layout_entry_configs_as_hidden_fields">SloodleLayoutEntry::get_layout_entry_configs_as_hidden_fields()</a> in layout_profile.php</div>
  1971. </dd>
  1972. <dt class="field">
  1973. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1974. <span class="method-title">get_layout_entry_configs_as_name_value_hash</span>
  1975. </dt>
  1976. <dd class="index-item-body">
  1977. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodget_layout_entry_configs_as_name_value_hash">SloodleLayoutEntry::get_layout_entry_configs_as_name_value_hash()</a> in layout_profile.php</div>
  1978. </dd>
  1979. <dt class="field">
  1980. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1981. <span class="method-title">get_layout_names</span>
  1982. </dt>
  1983. <dd class="index-item-body">
  1984. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_layout_names">SloodleCourse::get_layout_names()</a> in course.php</div>
  1985. <div class="index-item-description">Gets an array associating layout ID's to names</div>
  1986. </dd>
  1987. <dt class="field">
  1988. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1989. <span class="method-title">get_line_separator</span>
  1990. </dt>
  1991. <dd class="index-item-body">
  1992. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodget_line_separator">SloodleResponse::get_line_separator()</a> in io.php</div>
  1993. <div class="index-item-description">Gets the line separator.</div>
  1994. </dd>
  1995. <dt class="field">
  1996. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  1997. <span class="method-title">get_locations</span>
  1998. </dt>
  1999. <dd class="index-item-body">
  2000. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_locations">SloodleModuleMap::get_locations()</a> in module_map.php</div>
  2001. <div class="index-item-description">Returns a numeric array of locations associated with this map. Sorted by name.</div>
  2002. </dd>
  2003. <dt class="field">
  2004. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2005. <span class="method-title">get_loginzone_allocation</span>
  2006. </dt>
  2007. <dd class="index-item-body">
  2008. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_allocation">SloodleCourse::get_loginzone_allocation()</a> in course.php</div>
  2009. <div class="index-item-description">Gets the SLurl for the specified user's loginzone alloation</div>
  2010. </dd>
  2011. <dt class="field">
  2012. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2013. <span class="method-title">get_loginzone_position</span>
  2014. </dt>
  2015. <dd class="index-item-body">
  2016. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_position">SloodleCourse::get_loginzone_position()</a> in course.php</div>
  2017. <div class="index-item-description">Gets the position of the loginzone as a string vector &lt;x,y,z&gt;</div>
  2018. </dd>
  2019. <dt class="field">
  2020. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2021. <span class="method-title">get_loginzone_region</span>
  2022. </dt>
  2023. <dd class="index-item-body">
  2024. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_region">SloodleCourse::get_loginzone_region()</a> in course.php</div>
  2025. <div class="index-item-description">Gets the region of the loginzone</div>
  2026. </dd>
  2027. <dt class="field">
  2028. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2029. <span class="method-title">get_loginzone_size</span>
  2030. </dt>
  2031. <dd class="index-item-body">
  2032. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_size">SloodleCourse::get_loginzone_size()</a> in course.php</div>
  2033. <div class="index-item-description">Gets the size of the loginzone as a string vector &lt;x,y,z&gt;</div>
  2034. </dd>
  2035. <dt class="field">
  2036. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2037. <span class="method-title">get_loginzone_time_updated</span>
  2038. </dt>
  2039. <dd class="index-item-body">
  2040. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_loginzone_time_updated">SloodleCourse::get_loginzone_time_updated()</a> in course.php</div>
  2041. <div class="index-item-description">Gets the timestamp of the last time the loginzone was updated</div>
  2042. </dd>
  2043. <dt class="field">
  2044. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2045. <span class="method-title">get_modification_time</span>
  2046. </dt>
  2047. <dd class="index-item-body">
  2048. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_modification_time">SloodleModuleChoice::get_modification_time()</a> in module_choice.php</div>
  2049. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2050. </dd>
  2051. <dt class="field">
  2052. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2053. <span class="method-title">get_modification_time</span>
  2054. </dt>
  2055. <dd class="index-item-body">
  2056. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_modification_time">SloodleModuleGlossary::get_modification_time()</a> in module_glossary.php</div>
  2057. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2058. </dd>
  2059. <dt class="field">
  2060. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2061. <span class="method-title">get_modification_time</span>
  2062. </dt>
  2063. <dd class="index-item-body">
  2064. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_modification_time">SloodleModuleBlog::get_modification_time()</a> in module_blog.php</div>
  2065. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2066. </dd>
  2067. <dt class="field">
  2068. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2069. <span class="method-title">get_modification_time</span>
  2070. </dt>
  2071. <dd class="index-item-body">
  2072. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_modification_time">SloodleController::get_modification_time()</a> in controller.php</div>
  2073. <div class="index-item-description">Gets the time at which this controller was last modified.</div>
  2074. </dd>
  2075. <dt class="field">
  2076. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2077. <span class="method-title">get_modification_time</span>
  2078. </dt>
  2079. <dd class="index-item-body">
  2080. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_modification_time">SloodleModuleChat::get_modification_time()</a> in module_chat.php</div>
  2081. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2082. </dd>
  2083. <dt class="field">
  2084. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2085. <span class="method-title">get_modification_time</span>
  2086. </dt>
  2087. <dd class="index-item-body">
  2088. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_modification_time">SloodleModuleMap::get_modification_time()</a> in module_map.php</div>
  2089. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2090. </dd>
  2091. <dt class="field">
  2092. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2093. <span class="method-title">get_modification_time</span>
  2094. </dt>
  2095. <dd class="index-item-body">
  2096. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_modification_time">SloodleModuleDistributor::get_modification_time()</a> in module_distributor.php</div>
  2097. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2098. </dd>
  2099. <dt class="field">
  2100. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2101. <span class="method-title">get_modification_time</span>
  2102. </dt>
  2103. <dd class="index-item-body">
  2104. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_modification_time">SloodleModuleSloodleObject::get_modification_time()</a> in module_sloodleobject.php</div>
  2105. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2106. </dd>
  2107. <dt class="field">
  2108. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2109. <span class="method-title">get_modification_time</span>
  2110. </dt>
  2111. <dd class="index-item-body">
  2112. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_modification_time">SloodleModule::get_modification_time()</a> in module_base.php</div>
  2113. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2114. </dd>
  2115. <dt class="field">
  2116. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2117. <span class="method-title">get_modification_time</span>
  2118. </dt>
  2119. <dd class="index-item-body">
  2120. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_modification_time">SloodleModulePresenter::get_modification_time()</a> in module_presenter.php</div>
  2121. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2122. </dd>
  2123. <dt class="field">
  2124. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2125. <span class="method-title">get_modification_time</span>
  2126. </dt>
  2127. <dd class="index-item-body">
  2128. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_modification_time">SloodleModuleiBank::get_modification_time()</a> in module_ibank.php</div>
  2129. <div class="index-item-description">Gets the time at which this instance was last modified, or 0 if unknown.</div>
  2130. </dd>
  2131. <dt class="field">
  2132. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2133. <span class="method-title">get_module_id</span>
  2134. </dt>
  2135. <dd class="index-item-body">
  2136. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_module_id">SloodleRequest::get_module_id()</a> in io.php</div>
  2137. <div class="index-item-description">Fetches the module ID request parameter.</div>
  2138. </dd>
  2139. <dt class="field">
  2140. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2141. <span class="method-title">get_moodleUserProfile</span>
  2142. </dt>
  2143. <dd class="index-item-body">
  2144. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodget_moodleUserProfile">sloodleCourseObj::get_moodleUserProfile()</a> in sloodlecourseobject.php</div>
  2145. </dd>
  2146. <dt class="field">
  2147. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2148. <span class="method-title">get_name</span>
  2149. </dt>
  2150. <dd class="index-item-body">
  2151. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_name">SloodleModuleChat::get_name()</a> in module_chat.php</div>
  2152. <div class="index-item-description">Gets the name of this module instance.</div>
  2153. </dd>
  2154. <dt class="field">
  2155. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2156. <span class="method-title">get_name</span>
  2157. </dt>
  2158. <dd class="index-item-body">
  2159. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_name">SloodleController::get_name()</a> in controller.php</div>
  2160. <div class="index-item-description">Gets the name of this controller.</div>
  2161. </dd>
  2162. <dt class="field">
  2163. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2164. <span class="method-title">get_name</span>
  2165. </dt>
  2166. <dd class="index-item-body">
  2167. <div class="index-item-details"><a href="sloodle/SloodleModuleAviLister.html#methodget_name">SloodleModuleAviLister::get_name()</a> in module_avilister.php</div>
  2168. <div class="index-item-description">Gets the name of this module instance.</div>
  2169. </dd>
  2170. <dt class="field">
  2171. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2172. <span class="method-title">get_name</span>
  2173. </dt>
  2174. <dd class="index-item-body">
  2175. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_name">SloodleModuleDistributor::get_name()</a> in module_distributor.php</div>
  2176. <div class="index-item-description">Gets the name of this module instance.</div>
  2177. </dd>
  2178. <dt class="field">
  2179. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2180. <span class="method-title">get_name</span>
  2181. </dt>
  2182. <dd class="index-item-body">
  2183. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_name">SloodleModulePresenter::get_name()</a> in module_presenter.php</div>
  2184. <div class="index-item-description">Gets the name of this module instance.</div>
  2185. </dd>
  2186. <dt class="field">
  2187. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2188. <span class="method-title">get_name</span>
  2189. </dt>
  2190. <dd class="index-item-body">
  2191. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_name">SloodleModuleMap::get_name()</a> in module_map.php</div>
  2192. <div class="index-item-description">Gets the name of this module instance.</div>
  2193. </dd>
  2194. <dt class="field">
  2195. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2196. <span class="method-title">get_name</span>
  2197. </dt>
  2198. <dd class="index-item-body">
  2199. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_name">SloodleModuleChoice::get_name()</a> in module_choice.php</div>
  2200. <div class="index-item-description">Gets the name of this module instance.</div>
  2201. </dd>
  2202. <dt class="field">
  2203. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2204. <span class="method-title">get_name</span>
  2205. </dt>
  2206. <dd class="index-item-body">
  2207. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_name">SloodleModuleGlossary::get_name()</a> in module_glossary.php</div>
  2208. <div class="index-item-description">Gets the name of this module instance.</div>
  2209. </dd>
  2210. <dt class="field">
  2211. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2212. <span class="method-title">get_name</span>
  2213. </dt>
  2214. <dd class="index-item-body">
  2215. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_name">SloodleModuleiBank::get_name()</a> in module_ibank.php</div>
  2216. <div class="index-item-description">Gets the name of this module instance.</div>
  2217. </dd>
  2218. <dt class="field">
  2219. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2220. <span class="method-title">get_name</span>
  2221. </dt>
  2222. <dd class="index-item-body">
  2223. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_name">SloodleModuleSloodleObject::get_name()</a> in module_sloodleobject.php</div>
  2224. <div class="index-item-description">Gets the name of this module instance.</div>
  2225. </dd>
  2226. <dt class="field">
  2227. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2228. <span class="method-title">get_name</span>
  2229. </dt>
  2230. <dd class="index-item-body">
  2231. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_name">SloodleModuleBlog::get_name()</a> in module_blog.php</div>
  2232. <div class="index-item-description">Gets the name of this module instance.</div>
  2233. </dd>
  2234. <dt class="field">
  2235. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2236. <span class="method-title">get_name</span>
  2237. </dt>
  2238. <dd class="index-item-body">
  2239. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_name">SloodleModule::get_name()</a> in module_base.php</div>
  2240. <div class="index-item-description">Gets the name of this module instance.</div>
  2241. </dd>
  2242. <dt class="field">
  2243. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2244. <span class="method-title">get_num_unanswered</span>
  2245. </dt>
  2246. <dd class="index-item-body">
  2247. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_num_unanswered">SloodleModuleChoice::get_num_unanswered()</a> in module_choice.php</div>
  2248. <div class="index-item-description">Gets the number of people who have not yet answered the choice.</div>
  2249. </dd>
  2250. <dt class="field">
  2251. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2252. <span class="method-title">get_object</span>
  2253. </dt>
  2254. <dd class="index-item-body">
  2255. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_object">SloodleController::get_object()</a> in controller.php</div>
  2256. <div class="index-item-description">Gets data about an active object.</div>
  2257. </dd>
  2258. <dt class="field">
  2259. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2260. <span class="method-title">get_objects</span>
  2261. </dt>
  2262. <dd class="index-item-body">
  2263. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_objects">SloodleModuleiBank::get_objects()</a> in module_ibank.php</div>
  2264. <div class="index-item-description">Gets a list of all objects for this StipendGiver.</div>
  2265. </dd>
  2266. <dt class="field">
  2267. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2268. <span class="method-title">get_objects</span>
  2269. </dt>
  2270. <dd class="index-item-body">
  2271. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_objects">SloodleModuleDistributor::get_objects()</a> in module_distributor.php</div>
  2272. <div class="index-item-description">Gets a list of all objects for this Distributor.</div>
  2273. </dd>
  2274. <dt class="field">
  2275. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2276. <span class="method-title">get_object_configuration</span>
  2277. </dt>
  2278. <dd class="index-item-body">
  2279. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_object_configuration">SloodleController::get_object_configuration()</a> in controller.php</div>
  2280. <div class="index-item-description">Gets an array of object configuration settings.</div>
  2281. </dd>
  2282. <dt class="field">
  2283. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2284. <span class="method-title">get_opening_time</span>
  2285. </dt>
  2286. <dd class="index-item-body">
  2287. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_opening_time">SloodleModuleChoice::get_opening_time()</a> in module_choice.php</div>
  2288. <div class="index-item-description">Gets the time at which this choice opens.</div>
  2289. </dd>
  2290. <dt class="field">
  2291. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2292. <span class="method-title">get_param</span>
  2293. </dt>
  2294. <dd class="index-item-body">
  2295. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_param">SloodleRequest::get_param()</a> in io.php</div>
  2296. <div class="index-item-description">Obtains a named HTTP request parameter, optionally requiring it or not</div>
  2297. </dd>
  2298. <dt class="field">
  2299. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2300. <span class="method-title">get_password</span>
  2301. </dt>
  2302. <dd class="index-item-body">
  2303. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_password">SloodleRequest::get_password()</a> in io.php</div>
  2304. <div class="index-item-description">Fetches the password request parameter.</div>
  2305. </dd>
  2306. <dt class="field">
  2307. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2308. <span class="method-title">get_password</span>
  2309. </dt>
  2310. <dd class="index-item-body">
  2311. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodget_password">SloodleController::get_password()</a> in controller.php</div>
  2312. <div class="index-item-description">Gets the prim password of this controller.</div>
  2313. </dd>
  2314. <dt class="field">
  2315. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2316. <span class="method-title">get_plugin</span>
  2317. </dt>
  2318. <dd class="index-item-body">
  2319. <div class="index-item-details"><a href="sloodle/SloodlePluginManager.html#methodget_plugin">SloodlePluginManager::get_plugin()</a> in plugins.php</div>
  2320. <div class="index-item-description">Gets an instance of the specified plugin type.</div>
  2321. </dd>
  2322. <dt class="field">
  2323. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2324. <span class="method-title">get_plugin_description</span>
  2325. </dt>
  2326. <dd class="index-item-body">
  2327. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#methodget_plugin_description">SloodlePluginPresenterPDFImporter::get_plugin_description()</a> in pdfimporter.php</div>
  2328. <div class="index-item-description">Gets the human-readable description of this plugin.</div>
  2329. </dd>
  2330. <dt class="field">
  2331. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2332. <span class="method-title">get_plugin_description</span>
  2333. </dt>
  2334. <dd class="index-item-body">
  2335. <div class="index-item-details"><a href="sloodle/SloodlePluginBase.html#methodget_plugin_description">SloodlePluginBase::get_plugin_description()</a> in _base.php</div>
  2336. <div class="index-item-description">Gets the human-readable description of this plugin.</div>
  2337. </dd>
  2338. <dt class="field">
  2339. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2340. <span class="method-title">get_plugin_name</span>
  2341. </dt>
  2342. <dd class="index-item-body">
  2343. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideWeb.html#methodget_plugin_name">SloodlePluginPresenterSlideWeb::get_plugin_name()</a> in web.php</div>
  2344. <div class="index-item-description">Gets the human-readable name of this plugin.</div>
  2345. </dd>
  2346. <dt class="field">
  2347. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2348. <span class="method-title">get_plugin_name</span>
  2349. </dt>
  2350. <dd class="index-item-body">
  2351. <div class="index-item-details"><a href="sloodle/SloodlePluginBase.html#methodget_plugin_name">SloodlePluginBase::get_plugin_name()</a> in _base.php</div>
  2352. <div class="index-item-description">Gets the human-readable name of this plugin.</div>
  2353. </dd>
  2354. <dt class="field">
  2355. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2356. <span class="method-title">get_plugin_name</span>
  2357. </dt>
  2358. <dd class="index-item-body">
  2359. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#methodget_plugin_name">SloodlePluginPresenterPDFImporter::get_plugin_name()</a> in pdfimporter.php</div>
  2360. <div class="index-item-description">Gets the human-readable name of this plugin.</div>
  2361. </dd>
  2362. <dt class="field">
  2363. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2364. <span class="method-title">get_plugin_name</span>
  2365. </dt>
  2366. <dd class="index-item-body">
  2367. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideVideo.html#methodget_plugin_name">SloodlePluginPresenterSlideVideo::get_plugin_name()</a> in video.php</div>
  2368. <div class="index-item-description">Gets the human-readable name of this plugin.</div>
  2369. </dd>
  2370. <dt class="field">
  2371. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2372. <span class="method-title">get_plugin_name</span>
  2373. </dt>
  2374. <dd class="index-item-body">
  2375. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideImage.html#methodget_plugin_name">SloodlePluginPresenterSlideImage::get_plugin_name()</a> in image.php</div>
  2376. <div class="index-item-description">Gets the human-readable name of this plugin.</div>
  2377. </dd>
  2378. <dt class="field">
  2379. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2380. <span class="method-title">get_plugin_names</span>
  2381. </dt>
  2382. <dd class="index-item-body">
  2383. <div class="index-item-details"><a href="sloodle/SloodlePluginManager.html#methodget_plugin_names">SloodlePluginManager::get_plugin_names()</a> in plugins.php</div>
  2384. <div class="index-item-description">Gets an array of the names of all SLOODLE plugins derived from the specified type.</div>
  2385. </dd>
  2386. <dt class="field">
  2387. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2388. <span class="method-title">get_post</span>
  2389. </dt>
  2390. <dd class="index-item-body">
  2391. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_post">SloodleModuleBlog::get_post()</a> in module_blog.php</div>
  2392. <div class="index-item-description">Gets the identified post.</div>
  2393. </dd>
  2394. <dt class="field">
  2395. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2396. <span class="method-title">get_request_descriptor</span>
  2397. </dt>
  2398. <dd class="index-item-body">
  2399. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_request_descriptor">SloodleRequest::get_request_descriptor()</a> in io.php</div>
  2400. <div class="index-item-description">Fetches the request descriptor request parameter.</div>
  2401. </dd>
  2402. <dt class="field">
  2403. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2404. <span class="method-title">get_server_access_level</span>
  2405. </dt>
  2406. <dd class="index-item-body">
  2407. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodget_server_access_level">SloodleRequest::get_server_access_level()</a> in io.php</div>
  2408. <div class="index-item-description">Fetches the server access level parameter, if specified.</div>
  2409. </dd>
  2410. <dt class="field">
  2411. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2412. <span class="method-title">get_short_name</span>
  2413. </dt>
  2414. <dd class="index-item-body">
  2415. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodget_short_name">SloodleCourse::get_short_name()</a> in course.php</div>
  2416. <div class="index-item-description">Gets the short name of this course in the VLE.</div>
  2417. </dd>
  2418. <dt class="field">
  2419. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2420. <span class="method-title">get_slides</span>
  2421. </dt>
  2422. <dd class="index-item-body">
  2423. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_slides">SloodleModulePresenter::get_slides()</a> in module_presenter.php</div>
  2424. <div class="index-item-description">Gets an ordered associative array of slides in presentation order.</div>
  2425. </dd>
  2426. <dt class="field">
  2427. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2428. <span class="method-title">get_sloodleprofile</span>
  2429. </dt>
  2430. <dd class="index-item-body">
  2431. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodget_sloodleprofile">sloodleCourseObj::get_sloodleprofile()</a> in sloodlecourseobject.php</div>
  2432. </dd>
  2433. <dt class="field">
  2434. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2435. <span class="method-title">get_sloodle_course</span>
  2436. </dt>
  2437. <dd class="index-item-body">
  2438. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodget_sloodle_course">SloodleLayout::get_sloodle_course()</a> in layout_profile.php</div>
  2439. </dd>
  2440. <dt class="field">
  2441. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2442. <span class="method-title">get_staff_courses</span>
  2443. </dt>
  2444. <dd class="index-item-body">
  2445. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_staff_courses">SloodleUser::get_staff_courses()</a> in user.php</div>
  2446. <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>
  2447. </dd>
  2448. <dt class="field">
  2449. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2450. <span class="method-title">get_type</span>
  2451. </dt>
  2452. <dd class="index-item-body">
  2453. <div class="index-item-details"><a href="sloodle/SloodleModuleAviLister.html#methodget_type">SloodleModuleAviLister::get_type()</a> in module_avilister.php</div>
  2454. <div class="index-item-description">Gets the short type name of this instance.</div>
  2455. </dd>
  2456. <dt class="field">
  2457. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2458. <span class="method-title">get_type</span>
  2459. </dt>
  2460. <dd class="index-item-body">
  2461. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_type">SloodleModule::get_type()</a> in module_base.php</div>
  2462. <div class="index-item-description">Gets the short type name of this instance.</div>
  2463. </dd>
  2464. <dt class="field">
  2465. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2466. <span class="method-title">get_type</span>
  2467. </dt>
  2468. <dd class="index-item-body">
  2469. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_type">SloodleModuleChat::get_type()</a> in module_chat.php</div>
  2470. <div class="index-item-description">Gets the short type name of this instance.</div>
  2471. </dd>
  2472. <dt class="field">
  2473. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2474. <span class="method-title">get_type</span>
  2475. </dt>
  2476. <dd class="index-item-body">
  2477. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_type">SloodleModuleDistributor::get_type()</a> in module_distributor.php</div>
  2478. <div class="index-item-description">Gets the short type name of this instance.</div>
  2479. </dd>
  2480. <dt class="field">
  2481. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2482. <span class="method-title">get_type</span>
  2483. </dt>
  2484. <dd class="index-item-body">
  2485. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_type">SloodleModuleChoice::get_type()</a> in module_choice.php</div>
  2486. <div class="index-item-description">Gets the short type name of this instance.</div>
  2487. </dd>
  2488. <dt class="field">
  2489. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2490. <span class="method-title">get_type</span>
  2491. </dt>
  2492. <dd class="index-item-body">
  2493. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_type">SloodleModuleBlog::get_type()</a> in module_blog.php</div>
  2494. <div class="index-item-description">Gets the short type name of this instance.</div>
  2495. </dd>
  2496. <dt class="field">
  2497. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2498. <span class="method-title">get_type</span>
  2499. </dt>
  2500. <dd class="index-item-body">
  2501. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_type">SloodleModuleSloodleObject::get_type()</a> in module_sloodleobject.php</div>
  2502. <div class="index-item-description">Gets the short type name of this instance.</div>
  2503. </dd>
  2504. <dt class="field">
  2505. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2506. <span class="method-title">get_type</span>
  2507. </dt>
  2508. <dd class="index-item-body">
  2509. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_type">SloodleModuleGlossary::get_type()</a> in module_glossary.php</div>
  2510. <div class="index-item-description">Gets the short type name of this instance.</div>
  2511. </dd>
  2512. <dt class="field">
  2513. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2514. <span class="method-title">get_type</span>
  2515. </dt>
  2516. <dd class="index-item-body">
  2517. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_type">SloodleModuleiBank::get_type()</a> in module_ibank.php</div>
  2518. <div class="index-item-description">Gets the short type name of this instance.</div>
  2519. </dd>
  2520. <dt class="field">
  2521. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2522. <span class="method-title">get_type</span>
  2523. </dt>
  2524. <dd class="index-item-body">
  2525. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_type">SloodleModulePresenter::get_type()</a> in module_presenter.php</div>
  2526. <div class="index-item-description">Gets the short type name of this instance.</div>
  2527. </dd>
  2528. <dt class="field">
  2529. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2530. <span class="method-title">get_type</span>
  2531. </dt>
  2532. <dd class="index-item-body">
  2533. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_type">SloodleModuleMap::get_type()</a> in module_map.php</div>
  2534. <div class="index-item-description">Gets the short type name of this instance.</div>
  2535. </dd>
  2536. <dt class="field">
  2537. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2538. <span class="method-title">get_type_full</span>
  2539. </dt>
  2540. <dd class="index-item-body">
  2541. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodget_type_full">SloodleModuleMap::get_type_full()</a> in module_map.php</div>
  2542. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2543. </dd>
  2544. <dt class="field">
  2545. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2546. <span class="method-title">get_type_full</span>
  2547. </dt>
  2548. <dd class="index-item-body">
  2549. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodget_type_full">SloodleModuleGlossary::get_type_full()</a> in module_glossary.php</div>
  2550. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2551. </dd>
  2552. <dt class="field">
  2553. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2554. <span class="method-title">get_type_full</span>
  2555. </dt>
  2556. <dd class="index-item-body">
  2557. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodget_type_full">SloodleModuleDistributor::get_type_full()</a> in module_distributor.php</div>
  2558. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2559. </dd>
  2560. <dt class="field">
  2561. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2562. <span class="method-title">get_type_full</span>
  2563. </dt>
  2564. <dd class="index-item-body">
  2565. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodget_type_full">SloodleModuleChoice::get_type_full()</a> in module_choice.php</div>
  2566. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2567. </dd>
  2568. <dt class="field">
  2569. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2570. <span class="method-title">get_type_full</span>
  2571. </dt>
  2572. <dd class="index-item-body">
  2573. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodget_type_full">SloodleModuleSloodleObject::get_type_full()</a> in module_sloodleobject.php</div>
  2574. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2575. </dd>
  2576. <dt class="field">
  2577. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2578. <span class="method-title">get_type_full</span>
  2579. </dt>
  2580. <dd class="index-item-body">
  2581. <div class="index-item-details"><a href="sloodle/SloodleModuleAviLister.html#methodget_type_full">SloodleModuleAviLister::get_type_full()</a> in module_avilister.php</div>
  2582. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2583. </dd>
  2584. <dt class="field">
  2585. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2586. <span class="method-title">get_type_full</span>
  2587. </dt>
  2588. <dd class="index-item-body">
  2589. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodget_type_full">SloodleModuleiBank::get_type_full()</a> in module_ibank.php</div>
  2590. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2591. </dd>
  2592. <dt class="field">
  2593. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2594. <span class="method-title">get_type_full</span>
  2595. </dt>
  2596. <dd class="index-item-body">
  2597. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodget_type_full">SloodleModule::get_type_full()</a> in module_base.php</div>
  2598. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2599. </dd>
  2600. <dt class="field">
  2601. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2602. <span class="method-title">get_type_full</span>
  2603. </dt>
  2604. <dd class="index-item-body">
  2605. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodget_type_full">SloodleModuleBlog::get_type_full()</a> in module_blog.php</div>
  2606. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2607. </dd>
  2608. <dt class="field">
  2609. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2610. <span class="method-title">get_type_full</span>
  2611. </dt>
  2612. <dd class="index-item-body">
  2613. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodget_type_full">SloodleModuleChat::get_type_full()</a> in module_chat.php</div>
  2614. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2615. </dd>
  2616. <dt class="field">
  2617. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2618. <span class="method-title">get_type_full</span>
  2619. </dt>
  2620. <dd class="index-item-body">
  2621. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodget_type_full">SloodleModulePresenter::get_type_full()</a> in module_presenter.php</div>
  2622. <div class="index-item-description">Gets the full type name of this instance, according to the current language pack, if available.</div>
  2623. </dd>
  2624. <dt class="field">
  2625. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2626. <span class="method-title">get_username</span>
  2627. </dt>
  2628. <dd class="index-item-body">
  2629. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_username">SloodleUser::get_username()</a> in user.php</div>
  2630. <div class="index-item-description">Gets the user's username</div>
  2631. </dd>
  2632. <dt class="field">
  2633. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2634. <span class="method-title">get_user_email</span>
  2635. </dt>
  2636. <dd class="index-item-body">
  2637. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_email">SloodleUser::get_user_email()</a> in user.php</div>
  2638. <div class="index-item-description">Gets the user's email address.</div>
  2639. </dd>
  2640. <dt class="field">
  2641. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2642. <span class="method-title">get_user_firstname</span>
  2643. </dt>
  2644. <dd class="index-item-body">
  2645. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_firstname">SloodleUser::get_user_firstname()</a> in user.php</div>
  2646. <div class="index-item-description">Gets the first name of the user</div>
  2647. </dd>
  2648. <dt class="field">
  2649. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2650. <span class="method-title">get_user_id</span>
  2651. </dt>
  2652. <dd class="index-item-body">
  2653. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_id">SloodleUser::get_user_id()</a> in user.php</div>
  2654. <div class="index-item-description">Gets the unique ID of the VLE user.</div>
  2655. </dd>
  2656. <dt class="field">
  2657. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2658. <span class="method-title">get_user_lastname</span>
  2659. </dt>
  2660. <dd class="index-item-body">
  2661. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_lastname">SloodleUser::get_user_lastname()</a> in user.php</div>
  2662. <div class="index-item-description">Gets the last name of the user</div>
  2663. </dd>
  2664. <dt class="field">
  2665. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2666. <span class="method-title">get_user_objects</span>
  2667. </dt>
  2668. <dd class="index-item-body">
  2669. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodget_user_objects">SloodleUser::get_user_objects()</a> in user.php</div>
  2670. <div class="index-item-description">Gets a list of all user-centric objects authorised for the current avatar.</div>
  2671. </dd>
  2672. <dt class="field">
  2673. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2674. <span class="method-title">get_version</span>
  2675. </dt>
  2676. <dd class="index-item-body">
  2677. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideImage.html#methodget_version">SloodlePluginPresenterSlideImage::get_version()</a> in image.php</div>
  2678. <div class="index-item-description">Gets the internal version number of this plugin.</div>
  2679. </dd>
  2680. <dt class="field">
  2681. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2682. <span class="method-title">get_version</span>
  2683. </dt>
  2684. <dd class="index-item-body">
  2685. <div class="index-item-details"><a href="sloodle/SloodlePluginBase.html#methodget_version">SloodlePluginBase::get_version()</a> in _base.php</div>
  2686. <div class="index-item-description">Gets the internal version number of this plugin.</div>
  2687. </dd>
  2688. <dt class="field">
  2689. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2690. <span class="method-title">get_version</span>
  2691. </dt>
  2692. <dd class="index-item-body">
  2693. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#methodget_version">SloodlePluginPresenterPDFImporter::get_version()</a> in pdfimporter.php</div>
  2694. <div class="index-item-description">Gets the internal version number of this plugin.</div>
  2695. </dd>
  2696. <dt class="field">
  2697. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2698. <span class="method-title">get_version</span>
  2699. </dt>
  2700. <dd class="index-item-body">
  2701. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideWeb.html#methodget_version">SloodlePluginPresenterSlideWeb::get_version()</a> in web.php</div>
  2702. <div class="index-item-description">Gets the internal version number of this plugin.</div>
  2703. </dd>
  2704. <dt class="field">
  2705. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2706. <span class="method-title">get_version</span>
  2707. </dt>
  2708. <dd class="index-item-body">
  2709. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideVideo.html#methodget_version">SloodlePluginPresenterSlideVideo::get_version()</a> in video.php</div>
  2710. <div class="index-item-description">Gets the internal version number of this plugin.</div>
  2711. </dd>
  2712. <dt class="field">
  2713. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  2714. <span class="include-title">general.php</span>
  2715. </dt>
  2716. <dd class="index-item-body">
  2717. <div class="index-item-details"><a href="sloodle/_lib---general.php.html">general.php</a> in general.php</div>
  2718. </dd>
  2719. </dl>
  2720. <a name="h"></a>
  2721. <div class="index-letter-section">
  2722. <div style="float: left" class="index-letter-title">h</div>
  2723. <div style="float: right"><a href="#top">top</a></div>
  2724. <div style="clear: both"></div>
  2725. </div>
  2726. <dl>
  2727. <dt class="field">
  2728. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2729. <span class="method-title">has_loginzone_data</span>
  2730. </dt>
  2731. <dd class="index-item-body">
  2732. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodhas_loginzone_data">SloodleCourse::has_loginzone_data()</a> in course.php</div>
  2733. <div class="index-item-description">Determines whether or not LoginZone data exists for this course.</div>
  2734. </dd>
  2735. </dl>
  2736. <a name="i"></a>
  2737. <div class="index-letter-section">
  2738. <div style="float: left" class="index-letter-title">i</div>
  2739. <div style="float: right"><a href="#top">top</a></div>
  2740. <div style="clear: both"></div>
  2741. </div>
  2742. <dl>
  2743. <dt class="field">
  2744. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2745. <span class="var-title">$icurrency</span>
  2746. </dt>
  2747. <dd class="index-item-body">
  2748. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$icurrency">sloodle_view_ibank::$icurrency</a> in ibank.php</div>
  2749. </dd>
  2750. <dt class="field">
  2751. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2752. <span class="var-title">$icurrency</span>
  2753. </dt>
  2754. <dd class="index-item-body">
  2755. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#var$icurrency">stipendGiverObject::$icurrency</a> in stipendgiver_object.php</div>
  2756. </dd>
  2757. <dt class="field">
  2758. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2759. <span class="var-title">$id</span>
  2760. </dt>
  2761. <dd class="index-item-body">
  2762. <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#var$id">SloodleChatMessage::$id</a> in module_chat.php</div>
  2763. <div class="index-item-description">The ID of the message.</div>
  2764. </dd>
  2765. <dt class="field">
  2766. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2767. <span class="var-title">$id</span>
  2768. </dt>
  2769. <dd class="index-item-body">
  2770. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#var$id">SloodleBlogPost::$id</a> in module_blog.php</div>
  2771. <div class="index-item-description">The ID of the message.</div>
  2772. </dd>
  2773. <dt class="field">
  2774. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2775. <span class="var-title">$id</span>
  2776. </dt>
  2777. <dd class="index-item-body">
  2778. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$id">SloodleLayoutEntry::$id</a> in layout_profile.php</div>
  2779. </dd>
  2780. <dt class="field">
  2781. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2782. <span class="var-title">$id</span>
  2783. </dt>
  2784. <dd class="index-item-body">
  2785. <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#var$id">SloodleGlossaryEntry::$id</a> in module_glossary.php</div>
  2786. <div class="index-item-description">The ID of the entry.</div>
  2787. </dd>
  2788. <dt class="field">
  2789. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2790. <span class="var-title">$id</span>
  2791. </dt>
  2792. <dd class="index-item-body">
  2793. <div class="index-item-details"><a href="sloodle/SloodleUserObject.html#var$id">SloodleUserObject::$id</a> in user_object.php</div>
  2794. <div class="index-item-description">The database record ID of this object's entry.</div>
  2795. </dd>
  2796. <dt class="field">
  2797. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2798. <span class="var-title">$id</span>
  2799. </dt>
  2800. <dd class="index-item-body">
  2801. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html#var$id">SloodlePresenterSlide::$id</a> in module_presenter.php</div>
  2802. <div class="index-item-description">The ID of this slide in the DB table of slides.</div>
  2803. </dd>
  2804. <dt class="field">
  2805. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2806. <span class="var-title">$id</span>
  2807. </dt>
  2808. <dd class="index-item-body">
  2809. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#var$id">SloodleLayout::$id</a> in layout_profile.php</div>
  2810. </dd>
  2811. <dt class="field">
  2812. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2813. <span class="var-title">$id</span>
  2814. </dt>
  2815. <dd class="index-item-body">
  2816. <div class="index-item-details"><a href="sloodle/SloodleChoiceOption.html#var$id">SloodleChoiceOption::$id</a> in module_choice.php</div>
  2817. <div class="index-item-description">The ID of the option (should be unique across the site).</div>
  2818. </dd>
  2819. <dt class="field">
  2820. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2821. <span class="var-title">$id</span>
  2822. </dt>
  2823. <dd class="index-item-body">
  2824. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#var$id">SloodleLayoutEntryConfig::$id</a> in layout_profile.php</div>
  2825. </dd>
  2826. <dt class="field">
  2827. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2828. <span class="var-title">$initialized</span>
  2829. </dt>
  2830. <dd class="index-item-body">
  2831. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$initialized">sloodle_view_ibank::$initialized</a> in ibank.php</div>
  2832. </dd>
  2833. <dt class="field">
  2834. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2835. <span class="var-title">$iPb</span>
  2836. </dt>
  2837. <dd class="index-item-body">
  2838. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$iPb">sloodle_view_ibank::$iPb</a> in ibank.php</div>
  2839. </dd>
  2840. <dt class="field">
  2841. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  2842. <span class="var-title">$iPts</span>
  2843. </dt>
  2844. <dd class="index-item-body">
  2845. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$iPts">sloodle_view_ibank::$iPts</a> in ibank.php</div>
  2846. </dd>
  2847. <dt class="field">
  2848. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2849. <span class="method-title">import</span>
  2850. </dt>
  2851. <dd class="index-item-body">
  2852. <div class="index-item-details"><a href="sloodle/SloodlePluginBasePresenterImporter.html#methodimport">SloodlePluginBasePresenterImporter::import()</a> in _base.php</div>
  2853. <div class="index-item-description">Import the given file, and insert the new slides at the specified position in the Presentation.</div>
  2854. </dd>
  2855. <dt class="field">
  2856. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2857. <span class="method-title">import_file</span>
  2858. </dt>
  2859. <dd class="index-item-body">
  2860. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#methodimport_file">SloodlePluginPresenterPDFImporter::import_file()</a> in pdfimporter.php</div>
  2861. <div class="index-item-description">Import a file to this Presenter.</div>
  2862. </dd>
  2863. <dt class="field">
  2864. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  2865. <span class="include-title">index.php</span>
  2866. </dt>
  2867. <dd class="index-item-body">
  2868. <div class="index-item-details"><a href="sloodle/_index.php.html">index.php</a> in index.php</div>
  2869. </dd>
  2870. <dt class="field">
  2871. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2872. <span class="method-title">insert</span>
  2873. </dt>
  2874. <dd class="index-item-body">
  2875. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#methodinsert">SloodleLayoutEntryConfig::insert()</a> in layout_profile.php</div>
  2876. </dd>
  2877. <dt class="field">
  2878. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2879. <span class="method-title">insert</span>
  2880. </dt>
  2881. <dd class="index-item-body">
  2882. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodinsert">SloodleLayout::insert()</a> in layout_profile.php</div>
  2883. </dd>
  2884. <dt class="field">
  2885. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2886. <span class="method-title">insert</span>
  2887. </dt>
  2888. <dd class="index-item-body">
  2889. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodinsert">SloodleLayoutEntry::insert()</a> in layout_profile.php</div>
  2890. </dd>
  2891. <dt class="field">
  2892. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  2893. <span class="method-title">iPointBank</span>
  2894. </dt>
  2895. <dd class="index-item-body">
  2896. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodiPointBank">iPointBank::iPointBank()</a> in ipointbank_object.php</div>
  2897. </dd>
  2898. <dt class="field">
  2899. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  2900. iPointBank
  2901. </dt>
  2902. <dd class="index-item-body">
  2903. <div class="index-item-details"><a href="sloodle/iPointBank.html">iPointBank</a> in ipointbank_object.php</div>
  2904. <div class="index-item-description">The iPointBank class provides basic transaction functions for the Sloodle iBank module.</div>
  2905. </dd>
  2906. <dt class="field">
  2907. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2908. <span class="method-title">is_available</span>
  2909. </dt>
  2910. <dd class="index-item-body">
  2911. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodis_available">SloodleCourse::is_available()</a> in course.php</div>
  2912. <div class="index-item-description">Determines whether or not the course is available.</div>
  2913. </dd>
  2914. <dt class="field">
  2915. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2916. <span class="method-title">is_available</span>
  2917. </dt>
  2918. <dd class="index-item-body">
  2919. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodis_available">SloodleController::is_available()</a> in controller.php</div>
  2920. <div class="index-item-description">Determines whether or not this controller is available (i.e. not hidden).</div>
  2921. </dd>
  2922. <dt class="field">
  2923. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2924. <span class="method-title">is_avatar_linked</span>
  2925. </dt>
  2926. <dd class="index-item-body">
  2927. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_avatar_linked">SloodleUser::is_avatar_linked()</a> in user.php</div>
  2928. <div class="index-item-description">Determines whether or not the current user and avatar are linked.</div>
  2929. </dd>
  2930. <dt class="field">
  2931. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2932. <span class="method-title">is_avatar_loaded</span>
  2933. </dt>
  2934. <dd class="index-item-body">
  2935. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_avatar_loaded">SloodleUser::is_avatar_loaded()</a> in user.php</div>
  2936. <div class="index-item-description">Determines whether or not an avatar is loaded.</div>
  2937. </dd>
  2938. <dt class="field">
  2939. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2940. <span class="method-title">is_early</span>
  2941. </dt>
  2942. <dd class="index-item-body">
  2943. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodis_early">SloodleModuleChoice::is_early()</a> in module_choice.php</div>
  2944. <div class="index-item-description">Determines if the choice has not opened yet.</div>
  2945. </dd>
  2946. <dt class="field">
  2947. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2948. <span class="method-title">is_enabled</span>
  2949. </dt>
  2950. <dd class="index-item-body">
  2951. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodis_enabled">SloodleModuleBlog::is_enabled()</a> in module_blog.php</div>
  2952. <div class="index-item-description">Checks if blogging is enabled on the site.</div>
  2953. </dd>
  2954. <dt class="field">
  2955. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2956. <span class="method-title">is_enabled</span>
  2957. </dt>
  2958. <dd class="index-item-body">
  2959. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodis_enabled">SloodleController::is_enabled()</a> in controller.php</div>
  2960. <div class="index-item-description">Determines if this controller is enabled or not.</div>
  2961. </dd>
  2962. <dt class="field">
  2963. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2964. <span class="method-title">is_enrolled</span>
  2965. </dt>
  2966. <dd class="index-item-body">
  2967. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_enrolled">SloodleUser::is_enrolled()</a> in user.php</div>
  2968. <div class="index-item-description">Is the current user enrolled in the specified course?</div>
  2969. </dd>
  2970. <dt class="field">
  2971. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2972. <span class="method-title">is_late</span>
  2973. </dt>
  2974. <dd class="index-item-body">
  2975. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodis_late">SloodleModuleChoice::is_late()</a> in module_choice.php</div>
  2976. <div class="index-item-description">Determines if the choice has already closed.</div>
  2977. </dd>
  2978. <dt class="field">
  2979. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2980. <span class="method-title">is_loaded</span>
  2981. </dt>
  2982. <dd class="index-item-body">
  2983. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodis_loaded">SloodleController::is_loaded()</a> in controller.php</div>
  2984. <div class="index-item-description">Determines whether or not this controller is loaded.</div>
  2985. </dd>
  2986. <dt class="field">
  2987. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2988. <span class="method-title">is_loaded</span>
  2989. </dt>
  2990. <dd class="index-item-body">
  2991. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodis_loaded">SloodleCourse::is_loaded()</a> in course.php</div>
  2992. <div class="index-item-description">Determines whether or not course data has been loaded.</div>
  2993. </dd>
  2994. <dt class="field">
  2995. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  2996. <span class="method-title">is_object_request</span>
  2997. </dt>
  2998. <dd class="index-item-body">
  2999. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodis_object_request">SloodleRequest::is_object_request()</a> in io.php</div>
  3000. <div class="index-item-description">Checks the parameters to determine if the request relates to an object rather than a user</div>
  3001. </dd>
  3002. <dt class="field">
  3003. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3004. <span class="method-title">is_open</span>
  3005. </dt>
  3006. <dd class="index-item-body">
  3007. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodis_open">SloodleModuleChoice::is_open()</a> in module_choice.php</div>
  3008. <div class="index-item-description">Determines if the choice is currently open.</div>
  3009. </dd>
  3010. <dt class="field">
  3011. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3012. <span class="method-title">is_request_data_processed</span>
  3013. </dt>
  3014. <dd class="index-item-body">
  3015. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodis_request_data_processed">SloodleRequest::is_request_data_processed()</a> in io.php</div>
  3016. <div class="index-item-description">Checks whether or not the request data has already been processed.</div>
  3017. </dd>
  3018. <dt class="field">
  3019. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3020. <span class="method-title">is_staff</span>
  3021. </dt>
  3022. <dd class="index-item-body">
  3023. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_staff">SloodleUser::is_staff()</a> in user.php</div>
  3024. <div class="index-item-description">Is the current user Sloodle staff in the specified course?</div>
  3025. </dd>
  3026. <dt class="field">
  3027. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3028. <span class="method-title">is_teacher</span>
  3029. </dt>
  3030. <dd class="index-item-body">
  3031. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodis_teacher">sloodleCourseObj::is_teacher()</a> in sloodlecourseobject.php</div>
  3032. </dd>
  3033. <dt class="field">
  3034. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3035. <span class="method-title">is_too_early</span>
  3036. </dt>
  3037. <dd class="index-item-body">
  3038. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodis_too_early">SloodleModuleSloodleObject::is_too_early()</a> in module_sloodleobject.php</div>
  3039. <div class="index-item-description">Checks if an assignment submitted at the specified time would be too early for submission.</div>
  3040. </dd>
  3041. <dt class="field">
  3042. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3043. <span class="method-title">is_too_late</span>
  3044. </dt>
  3045. <dd class="index-item-body">
  3046. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodis_too_late">SloodleModuleSloodleObject::is_too_late()</a> in module_sloodleobject.php</div>
  3047. <div class="index-item-description">Checks if an assignment submitted at the specified time would be too late for submission.</div>
  3048. </dd>
  3049. <dt class="field">
  3050. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3051. <span class="method-title">is_user_loaded</span>
  3052. </dt>
  3053. <dd class="index-item-body">
  3054. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodis_user_loaded">SloodleUser::is_user_loaded()</a> in user.php</div>
  3055. <div class="index-item-description">Determines whether or not a VLE user is loaded.</div>
  3056. </dd>
  3057. <dt class="field">
  3058. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3059. <span class="include-title">io.php</span>
  3060. </dt>
  3061. <dd class="index-item-body">
  3062. <div class="index-item-details"><a href="sloodle/_lib---io.php.html">io.php</a> in io.php</div>
  3063. </dd>
  3064. <dt class="field">
  3065. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3066. <span class="include-title">ipointbank_object.php</span>
  3067. </dt>
  3068. <dd class="index-item-body">
  3069. <div class="index-item-details"><a href="sloodle/_lib---ipointbank_object.php.html">ipointbank_object.php</a> in ipointbank_object.php</div>
  3070. </dd>
  3071. <dt class="field">
  3072. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3073. <span class="include-title">ipointbank_object.php</span>
  3074. </dt>
  3075. <dd class="index-item-body">
  3076. <div class="index-item-details"><a href="sloodle/_mod---ibank-1.0---ipointbank_object.php.html">ipointbank_object.php</a> in ipointbank_object.php</div>
  3077. </dd>
  3078. <dt class="field">
  3079. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3080. <span class="include-title">image.php</span>
  3081. </dt>
  3082. <dd class="index-item-body">
  3083. <div class="index-item-details"><a href="sloodle/_plugin---presenter---image.php.html">image.php</a> in image.php</div>
  3084. </dd>
  3085. <dt class="field">
  3086. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3087. <span class="include-title">ibank.php</span>
  3088. </dt>
  3089. <dd class="index-item-body">
  3090. <div class="index-item-details"><a href="sloodle/_view---ibank.php.html">ibank.php</a> in ibank.php</div>
  3091. </dd>
  3092. </dl>
  3093. <a name="l"></a>
  3094. <div class="index-letter-section">
  3095. <div style="float: left" class="index-letter-title">l</div>
  3096. <div style="float: right"><a href="#top">top</a></div>
  3097. <div style="clear: both"></div>
  3098. </div>
  3099. <dl>
  3100. <dt class="field">
  3101. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3102. <span class="var-title">$layout</span>
  3103. </dt>
  3104. <dd class="index-item-body">
  3105. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$layout">SloodleLayoutEntry::$layout</a> in layout_profile.php</div>
  3106. </dd>
  3107. <dt class="field">
  3108. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3109. <span class="var-title">$layout_entry</span>
  3110. </dt>
  3111. <dd class="index-item-body">
  3112. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#var$layout_entry">SloodleLayoutEntryConfig::$layout_entry</a> in layout_profile.php</div>
  3113. </dd>
  3114. <dt class="field">
  3115. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3116. <span class="var-title">$line_separator</span>
  3117. </dt>
  3118. <dd class="index-item-body">
  3119. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$line_separator">SloodleResponse::$line_separator</a> in io.php</div>
  3120. <div class="index-item-description">The separation string between lines of the response (typically just a newline).</div>
  3121. </dd>
  3122. <dt class="field">
  3123. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3124. <span class="var-title">$locations</span>
  3125. </dt>
  3126. <dd class="index-item-body">
  3127. <div class="index-item-details"><a href="sloodle/sloodle_view_map.html#var$locations">sloodle_view_map::$locations</a> in map.php</div>
  3128. <div class="index-item-description">Numeric array of locations, obtained from the <a href="sloodle/SloodleModuleMap.html">SloodleModuleMap</a> object.</div>
  3129. </dd>
  3130. <dt class="field">
  3131. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3132. <span class="include-title">loginzone.php</span>
  3133. </dt>
  3134. <dd class="index-item-body">
  3135. <div class="index-item-details"><a href="sloodle/_classroom---loginzone.php.html">loginzone.php</a> in loginzone.php</div>
  3136. </dd>
  3137. <dt class="field">
  3138. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3139. <span class="include-title">layout_profile.php</span>
  3140. </dt>
  3141. <dd class="index-item-body">
  3142. <div class="index-item-details"><a href="sloodle/_lib---layout_profile.php.html">layout_profile.php</a> in layout_profile.php</div>
  3143. </dd>
  3144. <dt class="field">
  3145. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3146. <span class="include-title">lib.php</span>
  3147. </dt>
  3148. <dd class="index-item-body">
  3149. <div class="index-item-details"><a href="sloodle/_lib.php.html">lib.php</a> in lib.php</div>
  3150. </dd>
  3151. <dt class="field">
  3152. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3153. <span class="method-title">link_avatar</span>
  3154. </dt>
  3155. <dd class="index-item-body">
  3156. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodlink_avatar">SloodleUser::link_avatar()</a> in user.php</div>
  3157. <div class="index-item-description">Links the current avatar to the current user.</div>
  3158. </dd>
  3159. <dt class="field">
  3160. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3161. <span class="method-title">load</span>
  3162. </dt>
  3163. <dd class="index-item-body">
  3164. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodload">SloodleController::load()</a> in controller.php</div>
  3165. <div class="index-item-description">Loads data from the database.</div>
  3166. </dd>
  3167. <dt class="field">
  3168. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3169. <span class="method-title">load</span>
  3170. </dt>
  3171. <dd class="index-item-body">
  3172. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodload">SloodleLayout::load()</a> in layout_profile.php</div>
  3173. </dd>
  3174. <dt class="field">
  3175. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3176. <span class="method-title">load</span>
  3177. </dt>
  3178. <dd class="index-item-body">
  3179. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodload">SloodleModule::load()</a> in module_base.php</div>
  3180. <div class="index-item-description">Loads data from the database.</div>
  3181. </dd>
  3182. <dt class="field">
  3183. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3184. <span class="method-title">load</span>
  3185. </dt>
  3186. <dd class="index-item-body">
  3187. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodload">SloodleModuleiBank::load()</a> in module_ibank.php</div>
  3188. <div class="index-item-description">Loads data from the database.</div>
  3189. </dd>
  3190. <dt class="field">
  3191. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3192. <span class="method-title">load</span>
  3193. </dt>
  3194. <dd class="index-item-body">
  3195. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodload">SloodleModuleDistributor::load()</a> in module_distributor.php</div>
  3196. <div class="index-item-description">Loads data from the database.</div>
  3197. </dd>
  3198. <dt class="field">
  3199. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3200. <span class="method-title">load</span>
  3201. </dt>
  3202. <dd class="index-item-body">
  3203. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodload">SloodleModuleChoice::load()</a> in module_choice.php</div>
  3204. <div class="index-item-description">Loads data from the database.</div>
  3205. </dd>
  3206. <dt class="field">
  3207. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3208. <span class="method-title">load</span>
  3209. </dt>
  3210. <dd class="index-item-body">
  3211. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodload">SloodleModuleChat::load()</a> in module_chat.php</div>
  3212. <div class="index-item-description">Loads data from the database.</div>
  3213. </dd>
  3214. <dt class="field">
  3215. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3216. <span class="method-title">load</span>
  3217. </dt>
  3218. <dd class="index-item-body">
  3219. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodload">SloodleModuleMap::load()</a> in module_map.php</div>
  3220. <div class="index-item-description">Loads data from the database.</div>
  3221. </dd>
  3222. <dt class="field">
  3223. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3224. <span class="method-title">load</span>
  3225. </dt>
  3226. <dd class="index-item-body">
  3227. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodload">SloodleModuleSloodleObject::load()</a> in module_sloodleobject.php</div>
  3228. <div class="index-item-description">Loads data from the database.</div>
  3229. </dd>
  3230. <dt class="field">
  3231. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3232. <span class="method-title">load</span>
  3233. </dt>
  3234. <dd class="index-item-body">
  3235. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodload">SloodleCourse::load()</a> in course.php</div>
  3236. <div class="index-item-description">Reads fresh data into the structure from the database.</div>
  3237. </dd>
  3238. <dt class="field">
  3239. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3240. <span class="method-title">load</span>
  3241. </dt>
  3242. <dd class="index-item-body">
  3243. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodload">SloodleLayoutEntry::load()</a> in layout_profile.php</div>
  3244. </dd>
  3245. <dt class="field">
  3246. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3247. <span class="method-title">load</span>
  3248. </dt>
  3249. <dd class="index-item-body">
  3250. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodload">SloodleModulePresenter::load()</a> in module_presenter.php</div>
  3251. <div class="index-item-description">Loads data from the database.</div>
  3252. </dd>
  3253. <dt class="field">
  3254. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3255. <span class="method-title">load</span>
  3256. </dt>
  3257. <dd class="index-item-body">
  3258. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#methodload">SloodleLayoutEntryConfig::load()</a> in layout_profile.php</div>
  3259. </dd>
  3260. <dt class="field">
  3261. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3262. <span class="method-title">load</span>
  3263. </dt>
  3264. <dd class="index-item-body">
  3265. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodload">SloodleModuleGlossary::load()</a> in module_glossary.php</div>
  3266. <div class="index-item-description">Loads data from the database.</div>
  3267. </dd>
  3268. <dt class="field">
  3269. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3270. <span class="method-title">load_avatar</span>
  3271. </dt>
  3272. <dd class="index-item-body">
  3273. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_avatar">SloodleUser::load_avatar()</a> in user.php</div>
  3274. <div class="index-item-description">Finds an avatar with the given UUID and/or name, and loads its data.</div>
  3275. </dd>
  3276. <dt class="field">
  3277. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3278. <span class="method-title">load_avatar_by_id</span>
  3279. </dt>
  3280. <dd class="index-item-body">
  3281. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_avatar_by_id">SloodleUser::load_avatar_by_id()</a> in user.php</div>
  3282. <div class="index-item-description">Loads the specified avatar from the database.</div>
  3283. </dd>
  3284. <dt class="field">
  3285. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3286. <span class="method-title">load_by_controller</span>
  3287. </dt>
  3288. <dd class="index-item-body">
  3289. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodload_by_controller">SloodleCourse::load_by_controller()</a> in course.php</div>
  3290. <div class="index-item-description">Loads course and controller data by the unqiue site-wide identifier of a Sloodle controller.</div>
  3291. </dd>
  3292. <dt class="field">
  3293. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3294. <span class="method-title">load_data</span>
  3295. </dt>
  3296. <dd class="index-item-body">
  3297. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#methodload_data">SloodleBlogPost::load_data()</a> in module_blog.php</div>
  3298. <div class="index-item-description">Loads the data from a post record object.</div>
  3299. </dd>
  3300. <dt class="field">
  3301. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3302. <span class="method-title">load_from_row</span>
  3303. </dt>
  3304. <dd class="index-item-body">
  3305. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodload_from_row">SloodleLayout::load_from_row()</a> in layout_profile.php</div>
  3306. </dd>
  3307. <dt class="field">
  3308. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3309. <span class="method-title">load_from_row</span>
  3310. </dt>
  3311. <dd class="index-item-body">
  3312. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodload_from_row">SloodleLayoutEntry::load_from_row()</a> in layout_profile.php</div>
  3313. </dd>
  3314. <dt class="field">
  3315. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3316. <span class="method-title">load_from_row</span>
  3317. </dt>
  3318. <dd class="index-item-body">
  3319. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#methodload_from_row">SloodleLayoutEntryConfig::load_from_row()</a> in layout_profile.php</div>
  3320. </dd>
  3321. <dt class="field">
  3322. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3323. <span class="method-title">load_linked_avatar</span>
  3324. </dt>
  3325. <dd class="index-item-body">
  3326. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_linked_avatar">SloodleUser::load_linked_avatar()</a> in user.php</div>
  3327. <div class="index-item-description">Load the avatar linked to the current user.</div>
  3328. </dd>
  3329. <dt class="field">
  3330. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3331. <span class="method-title">load_linked_user</span>
  3332. </dt>
  3333. <dd class="index-item-body">
  3334. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_linked_user">SloodleUser::load_linked_user()</a> in user.php</div>
  3335. <div class="index-item-description">Find the VLE user linked to the current avatar.</div>
  3336. </dd>
  3337. <dt class="field">
  3338. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3339. <span class="method-title">load_module</span>
  3340. </dt>
  3341. <dd class="index-item-body">
  3342. <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodload_module">SloodleSession::load_module()</a> in sloodle_session.php</div>
  3343. <div class="index-item-description">Constructs and loads the appropriate module part of the session.</div>
  3344. </dd>
  3345. <dt class="field">
  3346. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3347. <span class="method-title">load_plugins</span>
  3348. </dt>
  3349. <dd class="index-item-body">
  3350. <div class="index-item-details"><a href="sloodle/SloodlePluginManager.html#methodload_plugins">SloodlePluginManager::load_plugins()</a> in plugins.php</div>
  3351. <div class="index-item-description">Loads all available plugins from the specified folder.</div>
  3352. </dd>
  3353. <dt class="field">
  3354. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3355. <span class="method-title">load_user</span>
  3356. </dt>
  3357. <dd class="index-item-body">
  3358. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodload_user">SloodleUser::load_user()</a> in user.php</div>
  3359. <div class="index-item-description">Load the specified user from the database</div>
  3360. </dd>
  3361. <dt class="field">
  3362. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3363. <span class="method-title">load_user_by_loginzone</span>
  3364. </dt>
  3365. <dd class="index-item-body">
  3366. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodload_user_by_loginzone">SloodleCourse::load_user_by_loginzone()</a> in course.php</div>
  3367. <div class="index-item-description">Finds the user identified by LoginZone allocation, and loads it into the given user object.</div>
  3368. </dd>
  3369. <dt class="field">
  3370. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3371. <span class="method-title">login</span>
  3372. </dt>
  3373. <dd class="index-item-body">
  3374. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodlogin">SloodleUser::login()</a> in user.php</div>
  3375. <div class="index-item-description">Internally 'log-in' the current user.</div>
  3376. </dd>
  3377. <dt class="field">
  3378. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3379. <span class="include-title">linker.php</span>
  3380. </dt>
  3381. <dd class="index-item-body">
  3382. <div class="index-item-details"><a href="sloodle/_mod---demo-1.0---linker.php.html">linker.php</a> in linker.php</div>
  3383. </dd>
  3384. <dt class="field">
  3385. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3386. <span class="include-title">linker.php</span>
  3387. </dt>
  3388. <dd class="index-item-body">
  3389. <div class="index-item-details"><a href="sloodle/_mod---presenter-1.0---linker.php.html">linker.php</a> in linker.php</div>
  3390. </dd>
  3391. <dt class="field">
  3392. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3393. <span class="include-title">linker.php</span>
  3394. </dt>
  3395. <dd class="index-item-body">
  3396. <div class="index-item-details"><a href="sloodle/_mod---presenter-2.0---linker.php.html">linker.php</a> in linker.php</div>
  3397. </dd>
  3398. </dl>
  3399. <a name="m"></a>
  3400. <div class="index-letter-section">
  3401. <div style="float: left" class="index-letter-title">m</div>
  3402. <div style="float: right"><a href="#top">top</a></div>
  3403. <div style="clear: both"></div>
  3404. </div>
  3405. <dl>
  3406. <dt class="field">
  3407. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3408. <span class="var-title">$maxselections</span>
  3409. </dt>
  3410. <dd class="index-item-body">
  3411. <div class="index-item-details"><a href="sloodle/SloodleChoiceOption.html#var$maxselections">SloodleChoiceOption::$maxselections</a> in module_choice.php</div>
  3412. <div class="index-item-description">Maximum allowed number of selections for this option.</div>
  3413. </dd>
  3414. <dt class="field">
  3415. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3416. <span class="var-title">$message</span>
  3417. </dt>
  3418. <dd class="index-item-body">
  3419. <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#var$message">SloodleChatMessage::$message</a> in module_chat.php</div>
  3420. <div class="index-item-description">The text of the message.</div>
  3421. </dd>
  3422. <dt class="field">
  3423. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3424. <span class="var-title">$module</span>
  3425. </dt>
  3426. <dd class="index-item-body">
  3427. <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$module">SloodleSession::$module</a> in sloodle_session.php</div>
  3428. <div class="index-item-description">The Sloodle module this session relates to, if any.</div>
  3429. </dd>
  3430. <dt class="field">
  3431. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3432. <span class="var-title">$module_context</span>
  3433. </dt>
  3434. <dd class="index-item-body">
  3435. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#var$module_context">sloodle_base_view_module::$module_context</a> in base_view_module.php</div>
  3436. <div class="index-item-description">Context object for permissions in the Moodle module.</div>
  3437. </dd>
  3438. <dt class="field">
  3439. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3440. <span class="var-title">$moodleuserid</span>
  3441. </dt>
  3442. <dd class="index-item-body">
  3443. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$moodleuserid">sloodle_view_user::$moodleuserid</a> in user.php</div>
  3444. <div class="index-item-description">Integer ID of the Moodle user being viewed.</div>
  3445. </dd>
  3446. <dt class="field">
  3447. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3448. <span class="var-title">$moodle_assignment_instance</span>
  3449. </dt>
  3450. <dd class="index-item-body">
  3451. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#var$moodle_assignment_instance">SloodleModuleSloodleObject::$moodle_assignment_instance</a> in module_sloodleobject.php</div>
  3452. <div class="index-item-description">Internal only - Moodle assignment module instance database object.</div>
  3453. </dd>
  3454. <dt class="field">
  3455. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3456. <span class="var-title">$moodle_chat_instance</span>
  3457. </dt>
  3458. <dd class="index-item-body">
  3459. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#var$moodle_chat_instance">SloodleModuleChat::$moodle_chat_instance</a> in module_chat.php</div>
  3460. <div class="index-item-description">Internal only - Moodle chat module instance database object.</div>
  3461. </dd>
  3462. <dt class="field">
  3463. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3464. <span class="var-title">$moodle_choice_instance</span>
  3465. </dt>
  3466. <dd class="index-item-body">
  3467. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#var$moodle_choice_instance">SloodleModuleChoice::$moodle_choice_instance</a> in module_choice.php</div>
  3468. <div class="index-item-description">Internal only - Moodle choice module instance database object.</div>
  3469. </dd>
  3470. <dt class="field">
  3471. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3472. <span class="var-title">$moodle_glossary_instance</span>
  3473. </dt>
  3474. <dd class="index-item-body">
  3475. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#var$moodle_glossary_instance">SloodleModuleGlossary::$moodle_glossary_instance</a> in module_glossary.php</div>
  3476. <div class="index-item-description">Internal only - Moodle glossary module instance database object.</div>
  3477. </dd>
  3478. <dt class="field">
  3479. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3480. <span class="var-title">$movingentryid</span>
  3481. </dt>
  3482. <dd class="index-item-body">
  3483. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#var$movingentryid">sloodle_view_presenter::$movingentryid</a> in presenter.php</div>
  3484. <div class="index-item-description">ID of the entry we are moving.</div>
  3485. </dd>
  3486. <dt class="field">
  3487. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3488. <span class="include-title">mail.php</span>
  3489. </dt>
  3490. <dd class="index-item-body">
  3491. <div class="index-item-details"><a href="sloodle/_lib---mail.php.html">mail.php</a> in mail.php</div>
  3492. </dd>
  3493. <dt class="field">
  3494. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3495. <span class="include-title">module_avilister.php</span>
  3496. </dt>
  3497. <dd class="index-item-body">
  3498. <div class="index-item-details"><a href="sloodle/_lib---modules---module_avilister.php.html">module_avilister.php</a> in module_avilister.php</div>
  3499. </dd>
  3500. <dt class="field">
  3501. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3502. <span class="include-title">module_base.php</span>
  3503. </dt>
  3504. <dd class="index-item-body">
  3505. <div class="index-item-details"><a href="sloodle/_lib---modules---module_base.php.html">module_base.php</a> in module_base.php</div>
  3506. </dd>
  3507. <dt class="field">
  3508. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3509. <span class="include-title">module_blog.php</span>
  3510. </dt>
  3511. <dd class="index-item-body">
  3512. <div class="index-item-details"><a href="sloodle/_lib---modules---module_blog.php.html">module_blog.php</a> in module_blog.php</div>
  3513. </dd>
  3514. <dt class="field">
  3515. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3516. <span class="include-title">module_chat.php</span>
  3517. </dt>
  3518. <dd class="index-item-body">
  3519. <div class="index-item-details"><a href="sloodle/_lib---modules---module_chat.php.html">module_chat.php</a> in module_chat.php</div>
  3520. </dd>
  3521. <dt class="field">
  3522. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3523. <span class="include-title">module_choice.php</span>
  3524. </dt>
  3525. <dd class="index-item-body">
  3526. <div class="index-item-details"><a href="sloodle/_lib---modules---module_choice.php.html">module_choice.php</a> in module_choice.php</div>
  3527. </dd>
  3528. <dt class="field">
  3529. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3530. <span class="include-title">module_distributor.php</span>
  3531. </dt>
  3532. <dd class="index-item-body">
  3533. <div class="index-item-details"><a href="sloodle/_lib---modules---module_distributor.php.html">module_distributor.php</a> in module_distributor.php</div>
  3534. </dd>
  3535. <dt class="field">
  3536. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3537. <span class="include-title">module_glossary.php</span>
  3538. </dt>
  3539. <dd class="index-item-body">
  3540. <div class="index-item-details"><a href="sloodle/_lib---modules---module_glossary.php.html">module_glossary.php</a> in module_glossary.php</div>
  3541. </dd>
  3542. <dt class="field">
  3543. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3544. <span class="include-title">module_ibank.php</span>
  3545. </dt>
  3546. <dd class="index-item-body">
  3547. <div class="index-item-details"><a href="sloodle/_lib---modules---module_ibank.php.html">module_ibank.php</a> in module_ibank.php</div>
  3548. </dd>
  3549. <dt class="field">
  3550. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3551. <span class="include-title">module_map.php</span>
  3552. </dt>
  3553. <dd class="index-item-body">
  3554. <div class="index-item-details"><a href="sloodle/_lib---modules---module_map.php.html">module_map.php</a> in module_map.php</div>
  3555. </dd>
  3556. <dt class="field">
  3557. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3558. <span class="include-title">module_presenter.php</span>
  3559. </dt>
  3560. <dd class="index-item-body">
  3561. <div class="index-item-details"><a href="sloodle/_lib---modules---module_presenter.php.html">module_presenter.php</a> in module_presenter.php</div>
  3562. </dd>
  3563. <dt class="field">
  3564. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3565. <span class="include-title">module_sloodleobject.php</span>
  3566. </dt>
  3567. <dd class="index-item-body">
  3568. <div class="index-item-details"><a href="sloodle/_lib---modules---module_sloodleobject.php.html">module_sloodleobject.php</a> in module_sloodleobject.php</div>
  3569. </dd>
  3570. <dt class="field">
  3571. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3572. <span class="include-title">modules.php</span>
  3573. </dt>
  3574. <dd class="index-item-body">
  3575. <div class="index-item-details"><a href="sloodle/_lib---modules.php.html">modules.php</a> in modules.php</div>
  3576. </dd>
  3577. <dt class="field">
  3578. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3579. <span class="method-title">makeTransaction</span>
  3580. </dt>
  3581. <dd class="index-item-body">
  3582. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodmakeTransaction">iPointBank::makeTransaction()</a> in ipointbank_object.php</div>
  3583. </dd>
  3584. <dt class="field">
  3585. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3586. <span class="include-title">mod_form.php</span>
  3587. </dt>
  3588. <dd class="index-item-body">
  3589. <div class="index-item-details"><a href="sloodle/_mod_form.php.html">mod_form.php</a> in mod_form.php</div>
  3590. </dd>
  3591. <dt class="field">
  3592. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  3593. mod_sloodle_mod_form
  3594. </dt>
  3595. <dd class="index-item-body">
  3596. <div class="index-item-details"><a href="sloodle/mod_sloodle_mod_form.html">mod_sloodle_mod_form</a> in mod_form.php</div>
  3597. <div class="index-item-description">Used to define the Sloodle module instance add/edit form.</div>
  3598. </dd>
  3599. <dt class="field">
  3600. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3601. <span class="method-title">move_entry</span>
  3602. </dt>
  3603. <dd class="index-item-body">
  3604. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodmove_entry">SloodleModulePresenter::move_entry()</a> in module_presenter.php</div>
  3605. <div class="index-item-description">Moves the ID'd entry forward or back in the presentation ordering.</div>
  3606. </dd>
  3607. <dt class="field">
  3608. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3609. <span class="include-title">map.php</span>
  3610. </dt>
  3611. <dd class="index-item-body">
  3612. <div class="index-item-details"><a href="sloodle/_view---map.php.html">map.php</a> in map.php</div>
  3613. </dd>
  3614. </dl>
  3615. <a name="n"></a>
  3616. <div class="index-letter-section">
  3617. <div style="float: left" class="index-letter-title">n</div>
  3618. <div style="float: right"><a href="#top">top</a></div>
  3619. <div style="clear: both"></div>
  3620. </div>
  3621. <dl>
  3622. <dt class="field">
  3623. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3624. <span class="var-title">$name</span>
  3625. </dt>
  3626. <dd class="index-item-body">
  3627. <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$name">SloodleActiveObject::$name</a> in active_object.php</div>
  3628. <div class="index-item-description">The name of this object.</div>
  3629. </dd>
  3630. <dt class="field">
  3631. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3632. <span class="var-title">$name</span>
  3633. </dt>
  3634. <dd class="index-item-body">
  3635. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html#var$name">SloodlePresenterSlide::$name</a> in module_presenter.php</div>
  3636. <div class="index-item-description">The name of this slide</div>
  3637. </dd>
  3638. <dt class="field">
  3639. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3640. <span class="var-title">$name</span>
  3641. </dt>
  3642. <dd class="index-item-body">
  3643. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$name">SloodleLayoutEntry::$name</a> in layout_profile.php</div>
  3644. <div class="index-item-description">The name of the object this entry represents.</div>
  3645. </dd>
  3646. <dt class="field">
  3647. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3648. <span class="var-title">$name</span>
  3649. </dt>
  3650. <dd class="index-item-body">
  3651. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#var$name">SloodleLayoutEntryConfig::$name</a> in layout_profile.php</div>
  3652. </dd>
  3653. <dt class="field">
  3654. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3655. <span class="var-title">$name</span>
  3656. </dt>
  3657. <dd class="index-item-body">
  3658. <div class="index-item-details"><a href="sloodle/iPointBank.html#var$name">iPointBank::$name</a> in ipointbank_object.php</div>
  3659. </dd>
  3660. <dt class="field">
  3661. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3662. <span class="var-title">$name</span>
  3663. </dt>
  3664. <dd class="index-item-body">
  3665. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#var$name">SloodleLayout::$name</a> in layout_profile.php</div>
  3666. </dd>
  3667. <dt class="field">
  3668. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3669. <span class="var-title">$numselections</span>
  3670. </dt>
  3671. <dd class="index-item-body">
  3672. <div class="index-item-details"><a href="sloodle/SloodleChoiceOption.html#var$numselections">SloodleChoiceOption::$numselections</a> in module_choice.php</div>
  3673. <div class="index-item-description">Number of selections so far of this option.</div>
  3674. </dd>
  3675. <dt class="field">
  3676. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3677. <span class="var-title">$numunanswered</span>
  3678. </dt>
  3679. <dd class="index-item-body">
  3680. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#var$numunanswered">SloodleModuleChoice::$numunanswered</a> in module_choice.php</div>
  3681. <div class="index-item-description">The number of (non-admin) users on the course who have not yet answered this choice.</div>
  3682. </dd>
  3683. <dt class="field">
  3684. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3685. <span class="include-title">notecard_configuration_form.php</span>
  3686. </dt>
  3687. <dd class="index-item-body">
  3688. <div class="index-item-details"><a href="sloodle/_classroom---notecard_configuration_form.php.html">notecard_configuration_form.php</a> in notecard_configuration_form.php</div>
  3689. </dd>
  3690. <dt class="field">
  3691. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3692. <span class="include-title">notecard_configuration_view.php</span>
  3693. </dt>
  3694. <dd class="index-item-body">
  3695. <div class="index-item-details"><a href="sloodle/_classroom---notecard_configuration_view.php.html">notecard_configuration_view.php</a> in notecard_configuration_view.php</div>
  3696. </dd>
  3697. </dl>
  3698. <a name="o"></a>
  3699. <div class="index-letter-section">
  3700. <div style="float: left" class="index-letter-title">o</div>
  3701. <div style="float: right"><a href="#top">top</a></div>
  3702. <div style="clear: both"></div>
  3703. </div>
  3704. <dl>
  3705. <dt class="field">
  3706. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3707. <span class="var-title">$objname</span>
  3708. </dt>
  3709. <dd class="index-item-body">
  3710. <div class="index-item-details"><a href="sloodle/SloodleUserObject.html#var$objname">SloodleUserObject::$objname</a> in user_object.php</div>
  3711. <div class="index-item-description">The name of this object.</div>
  3712. </dd>
  3713. <dt class="field">
  3714. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3715. <span class="var-title">$objuuid</span>
  3716. </dt>
  3717. <dd class="index-item-body">
  3718. <div class="index-item-details"><a href="sloodle/SloodleUserObject.html#var$objuuid">SloodleUserObject::$objuuid</a> in user_object.php</div>
  3719. <div class="index-item-description">The UUID of this object.</div>
  3720. </dd>
  3721. <dt class="field">
  3722. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3723. <span class="var-title">$options</span>
  3724. </dt>
  3725. <dd class="index-item-body">
  3726. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#var$options">SloodleModuleChoice::$options</a> in module_choice.php</div>
  3727. <div class="index-item-description">The options available for this choice, as an associative array of IDs to <a href="sloodle/SloodleChoiceOption.html">SloodleChoiceOption</a> objects.</div>
  3728. </dd>
  3729. <dt class="field">
  3730. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3731. <span class="var-title">$ordering</span>
  3732. </dt>
  3733. <dd class="index-item-body">
  3734. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html#var$ordering">SloodlePresenterSlide::$ordering</a> in module_presenter.php</div>
  3735. <div class="index-item-description">The ordering value for this slide. This should not generally be used. Refer to 'slideposition' instead.</div>
  3736. </dd>
  3737. <dt class="field">
  3738. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3739. <span class="var-title">$originalconfigs</span>
  3740. </dt>
  3741. <dd class="index-item-body">
  3742. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$originalconfigs">SloodleLayoutEntry::$originalconfigs</a> in layout_profile.php</div>
  3743. </dd>
  3744. <dt class="field">
  3745. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3746. <span class="var-title">$originalentryids</span>
  3747. </dt>
  3748. <dd class="index-item-body">
  3749. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#var$originalentryids">SloodleLayout::$originalentryids</a> in layout_profile.php</div>
  3750. </dd>
  3751. <dt class="field">
  3752. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3753. <span class="include-title">object_config.php</span>
  3754. </dt>
  3755. <dd class="index-item-body">
  3756. <div class="index-item-details"><a href="sloodle/_mod---demo-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
  3757. </dd>
  3758. <dt class="field">
  3759. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3760. <span class="include-title">object_config.php</span>
  3761. </dt>
  3762. <dd class="index-item-body">
  3763. <div class="index-item-details"><a href="sloodle/_mod---ibank-1.0---object_config.php.html">object_config.php</a> in object_config.php</div>
  3764. </dd>
  3765. <dt class="field">
  3766. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3767. <span class="method-title">optional_param</span>
  3768. </dt>
  3769. <dd class="index-item-body">
  3770. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodoptional_param">SloodleRequest::optional_param()</a> in io.php</div>
  3771. <div class="index-item-description">Obtains a named HTTP request parameter, or NULL if it has not been provided.</div>
  3772. </dd>
  3773. </dl>
  3774. <a name="p"></a>
  3775. <div class="index-letter-section">
  3776. <div style="float: left" class="index-letter-title">p</div>
  3777. <div style="float: right"><a href="#top">top</a></div>
  3778. <div style="clear: both"></div>
  3779. </div>
  3780. <dl>
  3781. <dt class="field">
  3782. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3783. <span class="var-title">$page_number</span>
  3784. </dt>
  3785. <dd class="index-item-body">
  3786. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$page_number">SloodleResponse::$page_number</a> in io.php</div>
  3787. <div class="index-item-description">Current page number.</div>
  3788. </dd>
  3789. <dt class="field">
  3790. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3791. <span class="var-title">$page_total</span>
  3792. </dt>
  3793. <dd class="index-item-body">
  3794. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$page_total">SloodleResponse::$page_total</a> in io.php</div>
  3795. <div class="index-item-description">Total number of pages.</div>
  3796. </dd>
  3797. <dt class="field">
  3798. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3799. <span class="var-title">$password</span>
  3800. </dt>
  3801. <dd class="index-item-body">
  3802. <div class="index-item-details"><a href="sloodle/SloodleUserObject.html#var$password">SloodleUserObject::$password</a> in user_object.php</div>
  3803. <div class="index-item-description">The password of this object.</div>
  3804. </dd>
  3805. <dt class="field">
  3806. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3807. <span class="var-title">$password</span>
  3808. </dt>
  3809. <dd class="index-item-body">
  3810. <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$password">SloodleActiveObject::$password</a> in active_object.php</div>
  3811. <div class="index-item-description">The password of this object.</div>
  3812. </dd>
  3813. <dt class="field">
  3814. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3815. <span class="var-title">$plugins</span>
  3816. </dt>
  3817. <dd class="index-item-body">
  3818. <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$plugins">SloodleSession::$plugins</a> in sloodle_session.php</div>
  3819. <div class="index-item-description">A plugin manager to help give access to plugins for various features.</div>
  3820. </dd>
  3821. <dt class="field">
  3822. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3823. <span class="var-title">$plugin_cache</span>
  3824. </dt>
  3825. <dd class="index-item-body">
  3826. <div class="index-item-details"><a href="sloodle/SloodlePluginManager.html#var$plugin_cache">SloodlePluginManager::$plugin_cache</a> in plugins.php</div>
  3827. <div class="index-item-description">Plugin instance cache.</div>
  3828. </dd>
  3829. <dt class="field">
  3830. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3831. <span class="var-title">$position</span>
  3832. </dt>
  3833. <dd class="index-item-body">
  3834. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$position">SloodleLayoutEntry::$position</a> in layout_profile.php</div>
  3835. <div class="index-item-description">The position of the object, as a 3d vector, in string format &quot;&lt;x,y,z&gt;&quot;</div>
  3836. </dd>
  3837. <dt class="field">
  3838. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  3839. <span class="var-title">$presenter</span>
  3840. </dt>
  3841. <dd class="index-item-body">
  3842. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html#var$presenter">SloodlePresenterSlide::$presenter</a> in module_presenter.php</div>
  3843. <div class="index-item-description">The SloodleModulePresenter object relating the presentation this slide is in</div>
  3844. </dd>
  3845. <dt class="field">
  3846. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3847. <span class="var-title">$presenter</span>
  3848. </dt>
  3849. <dd class="index-item-body">
  3850. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#var$presenter">SloodleModulePresenter::$presenter</a> in module_presenter.php</div>
  3851. <div class="index-item-description">Internal only - a database objects representing the Presenter itself.</div>
  3852. </dd>
  3853. <dt class="field">
  3854. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3855. <span class="var-title">$presenter</span>
  3856. </dt>
  3857. <dd class="index-item-body">
  3858. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#var$presenter">sloodle_view_presenter::$presenter</a> in presenter.php</div>
  3859. <div class="index-item-description">A Presenter object (secondary table).</div>
  3860. </dd>
  3861. <dt class="field">
  3862. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  3863. <span class="var-title">$presenter_mode</span>
  3864. </dt>
  3865. <dd class="index-item-body">
  3866. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#var$presenter_mode">sloodle_view_presenter::$presenter_mode</a> in presenter.php</div>
  3867. <div class="index-item-description">Our current mode of access to the Presenter.</div>
  3868. </dd>
  3869. <dt class="field">
  3870. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3871. <span class="include-title">plugins.php</span>
  3872. </dt>
  3873. <dd class="index-item-body">
  3874. <div class="index-item-details"><a href="sloodle/_lib---plugins.php.html">plugins.php</a> in plugins.php</div>
  3875. </dd>
  3876. <dt class="field">
  3877. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3878. <span class="method-title">ping_object</span>
  3879. </dt>
  3880. <dd class="index-item-body">
  3881. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodping_object">SloodleController::ping_object()</a> in controller.php</div>
  3882. <div class="index-item-description">Updates the last active timer on an object.</div>
  3883. </dd>
  3884. <dt class="field">
  3885. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  3886. <span class="include-title">pdfimporter.php</span>
  3887. </dt>
  3888. <dd class="index-item-body">
  3889. <div class="index-item-details"><a href="sloodle/_plugin---presenter---pdfimporter.php.html">pdfimporter.php</a> in pdfimporter.php</div>
  3890. </dd>
  3891. <dt class="field">
  3892. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3893. <span class="method-title">populate_entries_from_active_objects</span>
  3894. </dt>
  3895. <dd class="index-item-body">
  3896. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodpopulate_entries_from_active_objects">SloodleLayout::populate_entries_from_active_objects()</a> in layout_profile.php</div>
  3897. </dd>
  3898. <dt class="field">
  3899. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3900. <span class="method-title">populate_from_active_object</span>
  3901. </dt>
  3902. <dd class="index-item-body">
  3903. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodpopulate_from_active_object">SloodleLayoutEntry::populate_from_active_object()</a> in layout_profile.php</div>
  3904. </dd>
  3905. <dt class="field">
  3906. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3907. <span class="method-title">printUserTable</span>
  3908. </dt>
  3909. <dd class="index-item-body">
  3910. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodprintUserTable">sloodle_view_ibank::printUserTable()</a> in ibank.php</div>
  3911. <div class="index-item-description">This function will display an HTML table of the users transactions Columns displayed will be: UserName | Avatar | Amount Alloted | Balance Remaining</div>
  3912. </dd>
  3913. <dt class="field">
  3914. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3915. <span class="method-title">print_footer</span>
  3916. </dt>
  3917. <dd class="index-item-body">
  3918. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#methodprint_footer">sloodle_view_users::print_footer()</a> in users.php</div>
  3919. <div class="index-item-description">Print the page footer.</div>
  3920. </dd>
  3921. <dt class="field">
  3922. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3923. <span class="method-title">print_footer</span>
  3924. </dt>
  3925. <dd class="index-item-body">
  3926. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#methodprint_footer">sloodle_view_course::print_footer()</a> in course.php</div>
  3927. <div class="index-item-description">Print the footer for this course.</div>
  3928. </dd>
  3929. <dt class="field">
  3930. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3931. <span class="method-title">print_footer</span>
  3932. </dt>
  3933. <dd class="index-item-body">
  3934. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#methodprint_footer">sloodle_base_view_module::print_footer()</a> in base_view_module.php</div>
  3935. <div class="index-item-description">Print the footer for this course.</div>
  3936. </dd>
  3937. <dt class="field">
  3938. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3939. <span class="method-title">print_footer</span>
  3940. </dt>
  3941. <dd class="index-item-body">
  3942. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html#methodprint_footer">sloodle_base_view::print_footer()</a> in base_view.php</div>
  3943. <div class="index-item-description">Output the page footer.</div>
  3944. </dd>
  3945. <dt class="field">
  3946. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3947. <span class="method-title">print_footer</span>
  3948. </dt>
  3949. <dd class="index-item-body">
  3950. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#methodprint_footer">sloodle_view_user::print_footer()</a> in user.php</div>
  3951. <div class="index-item-description">Print the page footer.</div>
  3952. </dd>
  3953. <dt class="field">
  3954. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3955. <span class="method-title">print_header</span>
  3956. </dt>
  3957. <dd class="index-item-body">
  3958. <div class="index-item-details"><a href="sloodle/sloodle_view_map.html#methodprint_header">sloodle_view_map::print_header()</a> in map.php</div>
  3959. <div class="index-item-description">Print the page header (requires special scripts to be added into the header)</div>
  3960. </dd>
  3961. <dt class="field">
  3962. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3963. <span class="method-title">print_header</span>
  3964. </dt>
  3965. <dd class="index-item-body">
  3966. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodprint_header">sloodle_view_ibank::print_header()</a> in ibank.php</div>
  3967. <div class="index-item-description">Override the base_view_module print_header for formatting reasons</div>
  3968. </dd>
  3969. <dt class="field">
  3970. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3971. <span class="method-title">print_header</span>
  3972. </dt>
  3973. <dd class="index-item-body">
  3974. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#methodprint_header">sloodle_view_users::print_header()</a> in users.php</div>
  3975. <div class="index-item-description">Print the course settings page header.</div>
  3976. </dd>
  3977. <dt class="field">
  3978. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3979. <span class="method-title">print_header</span>
  3980. </dt>
  3981. <dd class="index-item-body">
  3982. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#methodprint_header">sloodle_view_course::print_header()</a> in course.php</div>
  3983. <div class="index-item-description">Print the course settings page header.</div>
  3984. </dd>
  3985. <dt class="field">
  3986. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3987. <span class="method-title">print_header</span>
  3988. </dt>
  3989. <dd class="index-item-body">
  3990. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#methodprint_header">sloodle_view_user::print_header()</a> in user.php</div>
  3991. <div class="index-item-description">Print the course settings page header.</div>
  3992. </dd>
  3993. <dt class="field">
  3994. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  3995. <span class="method-title">print_header</span>
  3996. </dt>
  3997. <dd class="index-item-body">
  3998. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#methodprint_header">sloodle_base_view_module::print_header()</a> in base_view_module.php</div>
  3999. <div class="index-item-description">Print module header info.</div>
  4000. </dd>
  4001. <dt class="field">
  4002. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4003. <span class="method-title">print_header</span>
  4004. </dt>
  4005. <dd class="index-item-body">
  4006. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html#methodprint_header">sloodle_base_view::print_header()</a> in base_view.php</div>
  4007. <div class="index-item-description">Print the standard page header.</div>
  4008. </dd>
  4009. <dt class="field">
  4010. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4011. <span class="method-title">print_slide_position_menu</span>
  4012. </dt>
  4013. <dd class="index-item-body">
  4014. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#methodprint_slide_position_menu">SloodlePluginPresenterPDFImporter::print_slide_position_menu()</a> in pdfimporter.php</div>
  4015. <div class="index-item-description">Display a drop-down menu of slides in the current presentation.</div>
  4016. </dd>
  4017. <dt class="field">
  4018. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4019. <span class="method-title">process_form</span>
  4020. </dt>
  4021. <dd class="index-item-body">
  4022. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodprocess_form">sloodle_view_presenter::process_form()</a> in presenter.php</div>
  4023. <div class="index-item-description">Process any form data which has been submitted.</div>
  4024. </dd>
  4025. <dt class="field">
  4026. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4027. <span class="method-title">process_form</span>
  4028. </dt>
  4029. <dd class="index-item-body">
  4030. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html#methodprocess_form">sloodle_base_view::process_form()</a> in base_view.php</div>
  4031. <div class="index-item-description">Process any form data which has been submitted.</div>
  4032. </dd>
  4033. <dt class="field">
  4034. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4035. <span class="method-title">process_form</span>
  4036. </dt>
  4037. <dd class="index-item-body">
  4038. <div class="index-item-details"><a href="sloodle/sloodle_view_map.html#methodprocess_form">sloodle_view_map::process_form()</a> in map.php</div>
  4039. <div class="index-item-description">Process any form data which has been submitted.</div>
  4040. </dd>
  4041. <dt class="field">
  4042. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4043. <span class="method-title">process_form</span>
  4044. </dt>
  4045. <dd class="index-item-body">
  4046. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodprocess_form">sloodle_view_ibank::process_form()</a> in ibank.php</div>
  4047. <div class="index-item-description">Process any form data which has been submitted.</div>
  4048. </dd>
  4049. <dt class="field">
  4050. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4051. <span class="method-title">process_form</span>
  4052. </dt>
  4053. <dd class="index-item-body">
  4054. <div class="index-item-details"><a href="sloodle/sloodle_view_distributor.html#methodprocess_form">sloodle_view_distributor::process_form()</a> in distributor.php</div>
  4055. <div class="index-item-description">Process any form data which has been submitted.</div>
  4056. </dd>
  4057. <dt class="field">
  4058. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4059. <span class="method-title">process_form</span>
  4060. </dt>
  4061. <dd class="index-item-body">
  4062. <div class="index-item-details"><a href="sloodle/sloodle_view_controller.html#methodprocess_form">sloodle_view_controller::process_form()</a> in controller.php</div>
  4063. <div class="index-item-description">Process any form data which has been submitted.</div>
  4064. </dd>
  4065. <dt class="field">
  4066. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4067. <span class="method-title">process_form</span>
  4068. </dt>
  4069. <dd class="index-item-body">
  4070. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#methodprocess_form">sloodle_base_view_module::process_form()</a> in base_view_module.php</div>
  4071. <div class="index-item-description">Process any form data which has been submitted.</div>
  4072. </dd>
  4073. <dt class="field">
  4074. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4075. <span class="method-title">process_request</span>
  4076. </dt>
  4077. <dd class="index-item-body">
  4078. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#methodprocess_request">sloodle_view_course::process_request()</a> in course.php</div>
  4079. <div class="index-item-description">Check the request parameters to see which course was specified.</div>
  4080. </dd>
  4081. <dt class="field">
  4082. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4083. <span class="method-title">process_request</span>
  4084. </dt>
  4085. <dd class="index-item-body">
  4086. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#methodprocess_request">sloodle_base_view_module::process_request()</a> in base_view_module.php</div>
  4087. <div class="index-item-description">Checks for incoming request data identifying a particular module (parameter 'id').</div>
  4088. </dd>
  4089. <dt class="field">
  4090. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4091. <span class="method-title">process_request</span>
  4092. </dt>
  4093. <dd class="index-item-body">
  4094. <div class="index-item-details"><a href="sloodle/sloodle_view_controller.html#methodprocess_request">sloodle_view_controller::process_request()</a> in controller.php</div>
  4095. <div class="index-item-description">Uses the parent class to process basic request information, then obtains additional Controller data.</div>
  4096. </dd>
  4097. <dt class="field">
  4098. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4099. <span class="method-title">process_request</span>
  4100. </dt>
  4101. <dd class="index-item-body">
  4102. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#methodprocess_request">sloodle_view_users::process_request()</a> in users.php</div>
  4103. <div class="index-item-description">Check and process the request parameters.</div>
  4104. </dd>
  4105. <dt class="field">
  4106. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4107. <span class="method-title">process_request</span>
  4108. </dt>
  4109. <dd class="index-item-body">
  4110. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#methodprocess_request">sloodle_view_user::process_request()</a> in user.php</div>
  4111. <div class="index-item-description">Check and process the request parameters.</div>
  4112. </dd>
  4113. <dt class="field">
  4114. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4115. <span class="method-title">process_request</span>
  4116. </dt>
  4117. <dd class="index-item-body">
  4118. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodprocess_request">sloodle_view_presenter::process_request()</a> in presenter.php</div>
  4119. <div class="index-item-description">Processes request data to determine which Presenter is being accessed.</div>
  4120. </dd>
  4121. <dt class="field">
  4122. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4123. <span class="method-title">process_request</span>
  4124. </dt>
  4125. <dd class="index-item-body">
  4126. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html#methodprocess_request">sloodle_base_view::process_request()</a> in base_view.php</div>
  4127. <div class="index-item-description">Check for incoming request data identifying a particular course or module.</div>
  4128. </dd>
  4129. <dt class="field">
  4130. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4131. <span class="method-title">process_request</span>
  4132. </dt>
  4133. <dd class="index-item-body">
  4134. <div class="index-item-details"><a href="sloodle/sloodle_view_map.html#methodprocess_request">sloodle_view_map::process_request()</a> in map.php</div>
  4135. <div class="index-item-description">Processes request data to determine which Map is being accessed.</div>
  4136. </dd>
  4137. <dt class="field">
  4138. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4139. <span class="method-title">process_request</span>
  4140. </dt>
  4141. <dd class="index-item-body">
  4142. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodprocess_request">sloodle_view_ibank::process_request()</a> in ibank.php</div>
  4143. <div class="index-item-description">Check and process the request parameters.</div>
  4144. </dd>
  4145. <dt class="field">
  4146. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4147. <span class="method-title">process_request</span>
  4148. </dt>
  4149. <dd class="index-item-body">
  4150. <div class="index-item-details"><a href="sloodle/sloodle_view_distributor.html#methodprocess_request">sloodle_view_distributor::process_request()</a> in distributor.php</div>
  4151. <div class="index-item-description">Processes request data to determine which Distributor is being accessed.</div>
  4152. </dd>
  4153. <dt class="field">
  4154. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4155. <span class="method-title">process_request_data</span>
  4156. </dt>
  4157. <dd class="index-item-body">
  4158. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodprocess_request_data">SloodleRequest::process_request_data()</a> in io.php</div>
  4159. <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>
  4160. </dd>
  4161. <dt class="field">
  4162. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4163. <span class="method-title">process_upload</span>
  4164. </dt>
  4165. <dd class="index-item-body">
  4166. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#methodprocess_upload">SloodlePluginPresenterPDFImporter::process_upload()</a> in pdfimporter.php</div>
  4167. <div class="index-item-description">Attempt to process a file upload.</div>
  4168. </dd>
  4169. <dt class="field">
  4170. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4171. <span class="method-title">purge_password_notifications</span>
  4172. </dt>
  4173. <dd class="index-item-body">
  4174. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodpurge_password_notifications">SloodleUser::purge_password_notifications()</a> in user.php</div>
  4175. <div class="index-item-description">If the system is waiting to send a password notification to this user, then remove it</div>
  4176. </dd>
  4177. <dt class="field">
  4178. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  4179. <span class="include-title">presenter.php</span>
  4180. </dt>
  4181. <dd class="index-item-body">
  4182. <div class="index-item-details"><a href="sloodle/_view---presenter.php.html">presenter.php</a> in presenter.php</div>
  4183. </dd>
  4184. </dl>
  4185. <a name="q"></a>
  4186. <div class="index-letter-section">
  4187. <div style="float: left" class="index-letter-title">q</div>
  4188. <div style="float: right"><a href="#top">top</a></div>
  4189. <div style="clear: both"></div>
  4190. </div>
  4191. <dl>
  4192. <dt class="field">
  4193. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4194. <span class="method-title">quick_output</span>
  4195. </dt>
  4196. <dd class="index-item-body">
  4197. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodquick_output">SloodleResponse::quick_output()</a> in io.php</div>
  4198. <div class="index-item-description">Quick output of data to avoid several accessor calls if the response is very basic.</div>
  4199. </dd>
  4200. </dl>
  4201. <a name="r"></a>
  4202. <div class="index-letter-section">
  4203. <div style="float: left" class="index-letter-title">r</div>
  4204. <div style="float: right"><a href="#top">top</a></div>
  4205. <div style="clear: both"></div>
  4206. </div>
  4207. <dl>
  4208. <dt class="field">
  4209. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4210. <span class="var-title">$real_first_name</span>
  4211. </dt>
  4212. <dd class="index-item-body">
  4213. <div class="index-item-details"><a href="sloodle/SloodleAviListName.html#var$real_first_name">SloodleAviListName::$real_first_name</a> in module_avilister.php</div>
  4214. <div class="index-item-description">Real first name</div>
  4215. </dd>
  4216. <dt class="field">
  4217. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4218. <span class="var-title">$real_last_name</span>
  4219. </dt>
  4220. <dd class="index-item-body">
  4221. <div class="index-item-details"><a href="sloodle/SloodleAviListName.html#var$real_last_name">SloodleAviListName::$real_last_name</a> in module_avilister.php</div>
  4222. <div class="index-item-description">Real last name</div>
  4223. </dd>
  4224. <dt class="field">
  4225. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4226. <span class="var-title">$renderMessage</span>
  4227. </dt>
  4228. <dd class="index-item-body">
  4229. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$renderMessage">sloodle_view_ibank::$renderMessage</a> in ibank.php</div>
  4230. </dd>
  4231. <dt class="field">
  4232. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4233. <span class="var-title">$request</span>
  4234. </dt>
  4235. <dd class="index-item-body">
  4236. <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$request">SloodleSession::$request</a> in sloodle_session.php</div>
  4237. <div class="index-item-description">Incoming HTTP request.</div>
  4238. </dd>
  4239. <dt class="field">
  4240. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4241. <span class="var-title">$request_data_processed</span>
  4242. </dt>
  4243. <dd class="index-item-body">
  4244. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#var$request_data_processed">SloodleRequest::$request_data_processed</a> in io.php</div>
  4245. <div class="index-item-description">Indicates whether or not the basic request data has already been processed.</div>
  4246. </dd>
  4247. <dt class="field">
  4248. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4249. <span class="var-title">$request_descriptor</span>
  4250. </dt>
  4251. <dd class="index-item-body">
  4252. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$request_descriptor">SloodleResponse::$request_descriptor</a> in io.php</div>
  4253. <div class="index-item-description">Request descriptor.</div>
  4254. </dd>
  4255. <dt class="field">
  4256. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4257. <span class="var-title">$request_timestamp</span>
  4258. </dt>
  4259. <dd class="index-item-body">
  4260. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$request_timestamp">SloodleResponse::$request_timestamp</a> in io.php</div>
  4261. <div class="index-item-description">Timestamp when the request was originally made by the LSL script.</div>
  4262. </dd>
  4263. <dt class="field">
  4264. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4265. <span class="var-title">$response</span>
  4266. </dt>
  4267. <dd class="index-item-body">
  4268. <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$response">SloodleSession::$response</a> in sloodle_session.php</div>
  4269. <div class="index-item-description">Outgoing response - can be rendered to HTTP or as a string.</div>
  4270. </dd>
  4271. <dt class="field">
  4272. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4273. <span class="var-title">$response_timestamp</span>
  4274. </dt>
  4275. <dd class="index-item-body">
  4276. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$response_timestamp">SloodleResponse::$response_timestamp</a> in io.php</div>
  4277. <div class="index-item-description">Timestamp when the response was generated on the Moodle site.</div>
  4278. </dd>
  4279. <dt class="field">
  4280. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4281. <span class="var-title">$rotation</span>
  4282. </dt>
  4283. <dd class="index-item-body">
  4284. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#var$rotation">SloodleLayoutEntry::$rotation</a> in layout_profile.php</div>
  4285. <div class="index-item-description">The rotation of the object, as a 3d vector of Euler angles, in string format &quot;&lt;x,y,z&gt;&quot;</div>
  4286. </dd>
  4287. <dt class="field">
  4288. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4289. <span class="method-title">register_object</span>
  4290. </dt>
  4291. <dd class="index-item-body">
  4292. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodregister_object">SloodleController::register_object()</a> in controller.php</div>
  4293. <div class="index-item-description">Registers a new active object (or renew an existing authorisation) with this controller.</div>
  4294. </dd>
  4295. <dt class="field">
  4296. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4297. <span class="method-title">register_unauth_object</span>
  4298. </dt>
  4299. <dd class="index-item-body">
  4300. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodregister_unauth_object">SloodleController::register_unauth_object()</a> in controller.php</div>
  4301. <div class="index-item-description">Registers a new unauthorised object.</div>
  4302. </dd>
  4303. <dt class="field">
  4304. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4305. <span class="method-title">relocate_entry</span>
  4306. </dt>
  4307. <dd class="index-item-body">
  4308. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodrelocate_entry">SloodleModulePresenter::relocate_entry()</a> in module_presenter.php</div>
  4309. <div class="index-item-description">Relocates the identified entry to the specified position in the presentation.</div>
  4310. </dd>
  4311. <dt class="field">
  4312. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4313. <span class="method-title">removeTransaction</span>
  4314. </dt>
  4315. <dd class="index-item-body">
  4316. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodremoveTransaction">iPointBank::removeTransaction()</a> in ipointbank_object.php</div>
  4317. </dd>
  4318. <dt class="field">
  4319. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4320. <span class="method-title">remove_object</span>
  4321. </dt>
  4322. <dd class="index-item-body">
  4323. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodremove_object">SloodleController::remove_object()</a> in controller.php</div>
  4324. <div class="index-item-description">Removes an active object and all its related items.</div>
  4325. </dd>
  4326. <dt class="field">
  4327. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4328. <span class="method-title">render</span>
  4329. </dt>
  4330. <dd class="index-item-body">
  4331. <div class="index-item-details"><a href="sloodle/sloodle_view_distributor.html#methodrender">sloodle_view_distributor::render()</a> in distributor.php</div>
  4332. <div class="index-item-description">Render the view of the Distributor.</div>
  4333. </dd>
  4334. <dt class="field">
  4335. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4336. <span class="method-title">render</span>
  4337. </dt>
  4338. <dd class="index-item-body">
  4339. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodrender">sloodle_view_ibank::render()</a> in ibank.php</div>
  4340. <div class="index-item-description">Render the view of the Stipend Giver.</div>
  4341. </dd>
  4342. <dt class="field">
  4343. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4344. <span class="method-title">render</span>
  4345. </dt>
  4346. <dd class="index-item-body">
  4347. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#methodrender">sloodle_view_users::render()</a> in users.php</div>
  4348. <div class="index-item-description">Render the view of the module or feature.</div>
  4349. </dd>
  4350. <dt class="field">
  4351. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4352. <span class="method-title">render</span>
  4353. </dt>
  4354. <dd class="index-item-body">
  4355. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#methodrender">sloodle_view_user::render()</a> in user.php</div>
  4356. <div class="index-item-description">Render the view of the module or feature.</div>
  4357. </dd>
  4358. <dt class="field">
  4359. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4360. <span class="method-title">render</span>
  4361. </dt>
  4362. <dd class="index-item-body">
  4363. <div class="index-item-details"><a href="sloodle/sloodle_view_map.html#methodrender">sloodle_view_map::render()</a> in map.php</div>
  4364. <div class="index-item-description">Render the view of the Map.</div>
  4365. </dd>
  4366. <dt class="field">
  4367. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4368. <span class="method-title">render</span>
  4369. </dt>
  4370. <dd class="index-item-body">
  4371. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#methodrender">sloodle_view_course::render()</a> in course.php</div>
  4372. <div class="index-item-description">Render the view of the module or feature.</div>
  4373. </dd>
  4374. <dt class="field">
  4375. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4376. <span class="method-title">render</span>
  4377. </dt>
  4378. <dd class="index-item-body">
  4379. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodrender">sloodle_view_presenter::render()</a> in presenter.php</div>
  4380. <div class="index-item-description">Render the view of the Presenter.</div>
  4381. </dd>
  4382. <dt class="field">
  4383. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4384. <span class="method-title">render</span>
  4385. </dt>
  4386. <dd class="index-item-body">
  4387. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html#methodrender">sloodle_base_view::render()</a> in base_view.php</div>
  4388. <div class="index-item-description">Render the view of the module or feature.</div>
  4389. </dd>
  4390. <dt class="field">
  4391. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4392. <span class="method-title">render</span>
  4393. </dt>
  4394. <dd class="index-item-body">
  4395. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html#methodrender">SloodlePluginPresenterPDFImporter::render()</a> in pdfimporter.php</div>
  4396. <div class="index-item-description">Render this importer on a web page.</div>
  4397. </dd>
  4398. <dt class="field">
  4399. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4400. <span class="method-title">render</span>
  4401. </dt>
  4402. <dd class="index-item-body">
  4403. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#methodrender">sloodle_base_view_module::render()</a> in base_view_module.php</div>
  4404. <div class="index-item-description">Render the view of the module or feature.</div>
  4405. </dd>
  4406. <dt class="field">
  4407. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4408. <span class="method-title">render</span>
  4409. </dt>
  4410. <dd class="index-item-body">
  4411. <div class="index-item-details"><a href="sloodle/sloodle_view_controller.html#methodrender">sloodle_view_controller::render()</a> in controller.php</div>
  4412. <div class="index-item-description">Render the view of the Controller.</div>
  4413. </dd>
  4414. <dt class="field">
  4415. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4416. <span class="method-title">render_add_files</span>
  4417. </dt>
  4418. <dd class="index-item-body">
  4419. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodrender_add_files">sloodle_view_presenter::render_add_files()</a> in presenter.php</div>
  4420. <div class="index-item-description">Render the slide editing form of the Presenter (lets you edit a single slide).</div>
  4421. </dd>
  4422. <dt class="field">
  4423. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4424. <span class="method-title">render_edit</span>
  4425. </dt>
  4426. <dd class="index-item-body">
  4427. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodrender_edit">sloodle_view_presenter::render_edit()</a> in presenter.php</div>
  4428. <div class="index-item-description">Render the Edit mode of the Presenter (lists all the slides and allows re-ordering).</div>
  4429. </dd>
  4430. <dt class="field">
  4431. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4432. <span class="method-title">render_import_slides</span>
  4433. </dt>
  4434. <dd class="index-item-body">
  4435. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodrender_import_slides">sloodle_view_presenter::render_import_slides()</a> in presenter.php</div>
  4436. <div class="index-item-description">Render the tab for importing slides from some source.</div>
  4437. </dd>
  4438. <dt class="field">
  4439. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4440. <span class="method-title">render_slide_edit</span>
  4441. </dt>
  4442. <dd class="index-item-body">
  4443. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodrender_slide_edit">sloodle_view_presenter::render_slide_edit()</a> in presenter.php</div>
  4444. <div class="index-item-description">Render the slide editing form of the Presenter (lets you edit a single slide).</div>
  4445. </dd>
  4446. <dt class="field">
  4447. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4448. <span class="method-title">render_slide_for_browser</span>
  4449. </dt>
  4450. <dd class="index-item-body">
  4451. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideImage.html#methodrender_slide_for_browser">SloodlePluginPresenterSlideImage::render_slide_for_browser()</a> in image.php</div>
  4452. <div class="index-item-description">Render the given slide for browser output -- NOTE: render to a string, and return the string.</div>
  4453. </dd>
  4454. <dt class="field">
  4455. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4456. <span class="method-title">render_slide_for_browser</span>
  4457. </dt>
  4458. <dd class="index-item-body">
  4459. <div class="index-item-details"><a href="sloodle/SloodlePluginBasePresenterSlide.html#methodrender_slide_for_browser">SloodlePluginBasePresenterSlide::render_slide_for_browser()</a> in _base.php</div>
  4460. <div class="index-item-description">Render the given slide for browser output -- NOTE: render to a string, and return the string.</div>
  4461. </dd>
  4462. <dt class="field">
  4463. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4464. <span class="method-title">render_slide_for_browser</span>
  4465. </dt>
  4466. <dd class="index-item-body">
  4467. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideVideo.html#methodrender_slide_for_browser">SloodlePluginPresenterSlideVideo::render_slide_for_browser()</a> in video.php</div>
  4468. <div class="index-item-description">Render the given slide for browser output -- NOTE: render to a string, and return the string.</div>
  4469. </dd>
  4470. <dt class="field">
  4471. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4472. <span class="method-title">render_slide_for_browser</span>
  4473. </dt>
  4474. <dd class="index-item-body">
  4475. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideWeb.html#methodrender_slide_for_browser">SloodlePluginPresenterSlideWeb::render_slide_for_browser()</a> in web.php</div>
  4476. <div class="index-item-description">Render the given slide for browser output -- NOTE: render to a string, and return the string.</div>
  4477. </dd>
  4478. <dt class="field">
  4479. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4480. <span class="method-title">render_slide_for_sl</span>
  4481. </dt>
  4482. <dd class="index-item-body">
  4483. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideVideo.html#methodrender_slide_for_sl">SloodlePluginPresenterSlideVideo::render_slide_for_sl()</a> in video.php</div>
  4484. <div class="index-item-description">Render the given slide for virtual-world output.</div>
  4485. </dd>
  4486. <dt class="field">
  4487. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4488. <span class="method-title">render_slide_for_sl</span>
  4489. </dt>
  4490. <dd class="index-item-body">
  4491. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideImage.html#methodrender_slide_for_sl">SloodlePluginPresenterSlideImage::render_slide_for_sl()</a> in image.php</div>
  4492. <div class="index-item-description">Render the given slide for virtual-world output.</div>
  4493. </dd>
  4494. <dt class="field">
  4495. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4496. <span class="method-title">render_slide_for_sl</span>
  4497. </dt>
  4498. <dd class="index-item-body">
  4499. <div class="index-item-details"><a href="sloodle/SloodlePluginBasePresenterSlide.html#methodrender_slide_for_sl">SloodlePluginBasePresenterSlide::render_slide_for_sl()</a> in _base.php</div>
  4500. <div class="index-item-description">Render the given slide for virtual-world output.</div>
  4501. </dd>
  4502. <dt class="field">
  4503. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4504. <span class="method-title">render_slide_for_sl</span>
  4505. </dt>
  4506. <dd class="index-item-body">
  4507. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideWeb.html#methodrender_slide_for_sl">SloodlePluginPresenterSlideWeb::render_slide_for_sl()</a> in web.php</div>
  4508. <div class="index-item-description">Render the given slide for virtual-world output.</div>
  4509. </dd>
  4510. <dt class="field">
  4511. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4512. <span class="method-title">render_to_output</span>
  4513. </dt>
  4514. <dd class="index-item-body">
  4515. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodrender_to_output">SloodleResponse::render_to_output()</a> in io.php</div>
  4516. <div class="index-item-description">Outputs the response directly to the HTTP response.</div>
  4517. </dd>
  4518. <dt class="field">
  4519. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4520. <span class="method-title">render_to_string</span>
  4521. </dt>
  4522. <dd class="index-item-body">
  4523. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodrender_to_string">SloodleResponse::render_to_string()</a> in io.php</div>
  4524. <div class="index-item-description">Renders the response to a string.</div>
  4525. </dd>
  4526. <dt class="field">
  4527. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4528. <span class="method-title">render_view</span>
  4529. </dt>
  4530. <dd class="index-item-body">
  4531. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodrender_view">sloodle_view_presenter::render_view()</a> in presenter.php</div>
  4532. <div class="index-item-description">Render the View of the Presenter.</div>
  4533. </dd>
  4534. <dt class="field">
  4535. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4536. <span class="method-title">required_param</span>
  4537. </dt>
  4538. <dd class="index-item-body">
  4539. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodrequired_param">SloodleRequest::required_param()</a> in io.php</div>
  4540. <div class="index-item-description">Obtains a named HTTP request parameter, or terminates with an error message if it has not been provided.</div>
  4541. </dd>
  4542. <dt class="field">
  4543. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4544. <span class="method-title">reset_password</span>
  4545. </dt>
  4546. <dd class="index-item-body">
  4547. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodreset_password">SloodleUser::reset_password()</a> in user.php</div>
  4548. <div class="index-item-description">Resets the user's password</div>
  4549. </dd>
  4550. <dt class="field">
  4551. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4552. <span class="method-title">resubmit_allowed</span>
  4553. </dt>
  4554. <dd class="index-item-body">
  4555. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodresubmit_allowed">SloodleModuleSloodleObject::resubmit_allowed()</a> in module_sloodleobject.php</div>
  4556. <div class="index-item-description">Checks if re-submissions are permitted.</div>
  4557. </dd>
  4558. <dt class="field">
  4559. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  4560. <span class="method-title">rowForItem</span>
  4561. </dt>
  4562. <dd class="index-item-body">
  4563. <div class="index-item-details"><a href="sloodle/_view_layout.php.html#functionrowForItem">rowForItem()</a> in view_layout.php</div>
  4564. </dd>
  4565. </dl>
  4566. <a name="s"></a>
  4567. <div class="index-letter-section">
  4568. <div style="float: left" class="index-letter-title">s</div>
  4569. <div style="float: right"><a href="#top">top</a></div>
  4570. <div style="clear: both"></div>
  4571. </div>
  4572. <dl>
  4573. <dt class="field">
  4574. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4575. <span class="var-title">$sCourseObj</span>
  4576. </dt>
  4577. <dd class="index-item-body">
  4578. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#var$sCourseObj">SloodleModuleiBank::$sCourseObj</a> in module_ibank.php</div>
  4579. </dd>
  4580. <dt class="field">
  4581. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4582. <span class="var-title">$sCourseObj</span>
  4583. </dt>
  4584. <dd class="index-item-body">
  4585. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$sCourseObj">sloodle_view_ibank::$sCourseObj</a> in ibank.php</div>
  4586. </dd>
  4587. <dt class="field">
  4588. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4589. <span class="var-title">$searchstr</span>
  4590. </dt>
  4591. <dd class="index-item-body">
  4592. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$searchstr">sloodle_view_user::$searchstr</a> in user.php</div>
  4593. <div class="index-item-description">The search string for users where appropriate.</div>
  4594. </dd>
  4595. <dt class="field">
  4596. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4597. <span class="var-title">$searchstr</span>
  4598. </dt>
  4599. <dd class="index-item-body">
  4600. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$searchstr">sloodle_view_users::$searchstr</a> in users.php</div>
  4601. <div class="index-item-description">The search string for users where appropriate.</div>
  4602. </dd>
  4603. <dt class="field">
  4604. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4605. <span class="var-title">$session</span>
  4606. </dt>
  4607. <dd class="index-item-body">
  4608. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$session">sloodle_view_ibank::$session</a> in ibank.php</div>
  4609. <div class="index-item-description">session is a dummy session object to be used as a parameter when creating a sloodleUser object</div>
  4610. </dd>
  4611. <dt class="field">
  4612. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4613. <span class="var-title">$showInitForm</span>
  4614. </dt>
  4615. <dd class="index-item-body">
  4616. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$showInitForm">sloodle_view_ibank::$showInitForm</a> in ibank.php</div>
  4617. </dd>
  4618. <dt class="field">
  4619. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4620. <span class="var-title">$side_effects</span>
  4621. </dt>
  4622. <dd class="index-item-body">
  4623. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$side_effects">SloodleResponse::$side_effects</a> in io.php</div>
  4624. <div class="index-item-description">Integer side effect(s) codes.</div>
  4625. </dd>
  4626. <dt class="field">
  4627. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4628. <span class="var-title">$slideposition</span>
  4629. </dt>
  4630. <dd class="index-item-body">
  4631. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html#var$slideposition">SloodlePresenterSlide::$slideposition</a> in module_presenter.php</div>
  4632. <div class="index-item-description">The position of this slide in the presentation. This is a 1-based count.</div>
  4633. </dd>
  4634. <dt class="field">
  4635. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4636. <span class="var-title">$sloodle</span>
  4637. </dt>
  4638. <dd class="index-item-body">
  4639. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$sloodle">sloodle_view_ibank::$sloodle</a> in ibank.php</div>
  4640. <div class="index-item-description">The main SLOODLE module instance, retreived directly from the database (table: sloodle)</div>
  4641. </dd>
  4642. <dt class="field">
  4643. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4644. <span class="var-title">$sloodle</span>
  4645. </dt>
  4646. <dd class="index-item-body">
  4647. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#var$sloodle">sloodle_base_view_module::$sloodle</a> in base_view_module.php</div>
  4648. <div class="index-item-description">The main SLOODLE module instance, retreived directly from the database (table: sloodle)</div>
  4649. </dd>
  4650. <dt class="field">
  4651. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4652. <span class="var-title">$sloodleCourse</span>
  4653. </dt>
  4654. <dd class="index-item-body">
  4655. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$sloodleCourse">sloodle_view_ibank::$sloodleCourse</a> in ibank.php</div>
  4656. <div class="index-item-description">SLOODLE course object, retrieved directly from database.</div>
  4657. </dd>
  4658. <dt class="field">
  4659. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4660. <span class="var-title">$sloodleCourseObject</span>
  4661. </dt>
  4662. <dd class="index-item-body">
  4663. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$sloodleCourseObject">sloodleCourseObj::$sloodleCourseObject</a> in sloodlecourseobject.php</div>
  4664. </dd>
  4665. <dt class="field">
  4666. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4667. <span class="var-title">$sloodleId</span>
  4668. </dt>
  4669. <dd class="index-item-body">
  4670. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$sloodleId">sloodle_view_ibank::$sloodleId</a> in ibank.php</div>
  4671. <div class="index-item-description">sloodleId The instance of this moodle module</div>
  4672. </dd>
  4673. <dt class="field">
  4674. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4675. <span class="var-title">$sloodleId</span>
  4676. </dt>
  4677. <dd class="index-item-body">
  4678. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$sloodleId">sloodleCourseObj::$sloodleId</a> in sloodlecourseobject.php</div>
  4679. </dd>
  4680. <dt class="field">
  4681. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4682. <span class="var-title">$sloodleId</span>
  4683. </dt>
  4684. <dd class="index-item-body">
  4685. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#var$sloodleId">stipendGiverObject::$sloodleId</a> in stipendgiver_object.php</div>
  4686. </dd>
  4687. <dt class="field">
  4688. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4689. <span class="var-title">$sloodleid</span>
  4690. </dt>
  4691. <dd class="index-item-body">
  4692. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#var$sloodleid">SloodleModuleiBank::$sloodleid</a> in module_ibank.php</div>
  4693. </dd>
  4694. <dt class="field">
  4695. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4696. <span class="var-title">$sloodleid</span>
  4697. </dt>
  4698. <dd class="index-item-body">
  4699. <div class="index-item-details"><a href="sloodle/iPointBank.html#var$sloodleid">iPointBank::$sloodleid</a> in ipointbank_object.php</div>
  4700. </dd>
  4701. <dt class="field">
  4702. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4703. <span class="var-title">$sloodleonly</span>
  4704. </dt>
  4705. <dd class="index-item-body">
  4706. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$sloodleonly">sloodle_view_users::$sloodleonly</a> in users.php</div>
  4707. <div class="index-item-description">Indicates if we should only show users who have avatars. Fetched from request parameters where given.</div>
  4708. </dd>
  4709. <dt class="field">
  4710. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4711. <span class="var-title">$sloodleRec</span>
  4712. </dt>
  4713. <dd class="index-item-body">
  4714. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$sloodleRec">sloodleCourseObj::$sloodleRec</a> in sloodlecourseobject.php</div>
  4715. </dd>
  4716. <dt class="field">
  4717. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4718. <span class="var-title">$sloodle_controller_instance</span>
  4719. </dt>
  4720. <dd class="index-item-body">
  4721. <div class="index-item-details"><a href="sloodle/SloodleController.html#var$sloodle_controller_instance">SloodleController::$sloodle_controller_instance</a> in controller.php</div>
  4722. <div class="index-item-description">Internal only - Sloodle Controller instance database object.</div>
  4723. </dd>
  4724. <dt class="field">
  4725. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4726. <span class="var-title">$sloodle_course</span>
  4727. </dt>
  4728. <dd class="index-item-body">
  4729. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$sloodle_course">sloodle_view_ibank::$sloodle_course</a> in ibank.php</div>
  4730. <div class="index-item-description">The SLOODLE course object.</div>
  4731. </dd>
  4732. <dt class="field">
  4733. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4734. <span class="var-title">$sloodle_course</span>
  4735. </dt>
  4736. <dd class="index-item-body">
  4737. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$sloodle_course">sloodle_view_user::$sloodle_course</a> in user.php</div>
  4738. <div class="index-item-description">SLOODLE course object, retrieved directly from database.</div>
  4739. </dd>
  4740. <dt class="field">
  4741. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4742. <span class="var-title">$sloodle_course</span>
  4743. </dt>
  4744. <dd class="index-item-body">
  4745. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#var$sloodle_course">sloodle_base_view_module::$sloodle_course</a> in base_view_module.php</div>
  4746. <div class="index-item-description">The SLOODLE course object.</div>
  4747. </dd>
  4748. <dt class="field">
  4749. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4750. <span class="var-title">$sloodle_course</span>
  4751. </dt>
  4752. <dd class="index-item-body">
  4753. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$sloodle_course">sloodle_view_users::$sloodle_course</a> in users.php</div>
  4754. <div class="index-item-description">SLOODLE course object, retrieved directly from database.</div>
  4755. </dd>
  4756. <dt class="field">
  4757. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4758. <span class="var-title">$sloodle_course</span>
  4759. </dt>
  4760. <dd class="index-item-body">
  4761. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#var$sloodle_course">sloodle_view_course::$sloodle_course</a> in course.php</div>
  4762. <div class="index-item-description">SLOODLE course object, retrieved directly from database.</div>
  4763. </dd>
  4764. <dt class="field">
  4765. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4766. <span class="var-title">$sloodle_course_data</span>
  4767. </dt>
  4768. <dd class="index-item-body">
  4769. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#var$sloodle_course_data">SloodleCourse::$sloodle_course_data</a> in course.php</div>
  4770. <div class="index-item-description">The Sloodle course data object, if it exists.</div>
  4771. </dd>
  4772. <dt class="field">
  4773. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4774. <span class="var-title">$sloodle_distributor_instance</span>
  4775. </dt>
  4776. <dd class="index-item-body">
  4777. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#var$sloodle_distributor_instance">SloodleModuleDistributor::$sloodle_distributor_instance</a> in module_distributor.php</div>
  4778. <div class="index-item-description">Internal only - Sloodle Distributor instance database object.</div>
  4779. </dd>
  4780. <dt class="field">
  4781. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4782. <span class="var-title">$sloodle_instance</span>
  4783. </dt>
  4784. <dd class="index-item-body">
  4785. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#var$sloodle_instance">SloodleModuleMap::$sloodle_instance</a> in module_map.php</div>
  4786. <div class="index-item-description">Internal only - Sloodle module instance database object.</div>
  4787. </dd>
  4788. <dt class="field">
  4789. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4790. <span class="var-title">$sloodle_instance</span>
  4791. </dt>
  4792. <dd class="index-item-body">
  4793. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#var$sloodle_instance">SloodleModulePresenter::$sloodle_instance</a> in module_presenter.php</div>
  4794. <div class="index-item-description">Internal only - Sloodle module instance database object.</div>
  4795. </dd>
  4796. <dt class="field">
  4797. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4798. <span class="var-title">$sloodle_map</span>
  4799. </dt>
  4800. <dd class="index-item-body">
  4801. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#var$sloodle_map">SloodleModuleMap::$sloodle_map</a> in module_map.php</div>
  4802. <div class="index-item-description">Instance of the extra Map data from the sloodle_map table.</div>
  4803. </dd>
  4804. <dt class="field">
  4805. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4806. <span class="var-title">$sloodle_map_module</span>
  4807. </dt>
  4808. <dd class="index-item-body">
  4809. <div class="index-item-details"><a href="sloodle/sloodle_view_map.html#var$sloodle_map_module">sloodle_view_map::$sloodle_map_module</a> in map.php</div>
  4810. <div class="index-item-description">A SLOODLE map module object to wrap the basic map functionality.</div>
  4811. </dd>
  4812. <dt class="field">
  4813. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4814. <span class="var-title">$sloodle_module_instance</span>
  4815. </dt>
  4816. <dd class="index-item-body">
  4817. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#var$sloodle_module_instance">SloodleModuleDistributor::$sloodle_module_instance</a> in module_distributor.php</div>
  4818. <div class="index-item-description">Internal only - Sloodle module instance database object.</div>
  4819. </dd>
  4820. <dt class="field">
  4821. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4822. <span class="var-title">$sloodle_module_instance</span>
  4823. </dt>
  4824. <dd class="index-item-body">
  4825. <div class="index-item-details"><a href="sloodle/SloodleController.html#var$sloodle_module_instance">SloodleController::$sloodle_module_instance</a> in controller.php</div>
  4826. <div class="index-item-description">Internal only - Sloodle module instance database object.</div>
  4827. </dd>
  4828. <dt class="field">
  4829. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4830. <span class="var-title">$sloodle_module_instance</span>
  4831. </dt>
  4832. <dd class="index-item-body">
  4833. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#var$sloodle_module_instance">SloodleModuleiBank::$sloodle_module_instance</a> in module_ibank.php</div>
  4834. <div class="index-item-description">Internal only - Sloodle module instance database object.</div>
  4835. </dd>
  4836. <dt class="field">
  4837. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4838. <span class="var-title">$sloodle_stipendgiver_instance</span>
  4839. </dt>
  4840. <dd class="index-item-body">
  4841. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#var$sloodle_stipendgiver_instance">SloodleModuleiBank::$sloodle_stipendgiver_instance</a> in module_ibank.php</div>
  4842. <div class="index-item-description">Internal only - Sloodle StipendGiver instance database object.</div>
  4843. </dd>
  4844. <dt class="field">
  4845. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4846. <span class="var-title">$source</span>
  4847. </dt>
  4848. <dd class="index-item-body">
  4849. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html#var$source">SloodlePresenterSlide::$source</a> in module_presenter.php</div>
  4850. <div class="index-item-description">The source data for this slide. Normally this would be an absolute url (starting with a protocol specifier like HTTP), or a relative path, in which case it is treated as an internal Moodle file.</div>
  4851. </dd>
  4852. <dt class="field">
  4853. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4854. <span class="var-title">$start</span>
  4855. </dt>
  4856. <dd class="index-item-body">
  4857. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$start">sloodle_view_users::$start</a> in users.php</div>
  4858. <div class="index-item-description">The result number to start displaying from</div>
  4859. </dd>
  4860. <dt class="field">
  4861. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4862. <span class="var-title">$start</span>
  4863. </dt>
  4864. <dd class="index-item-body">
  4865. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$start">sloodle_view_user::$start</a> in user.php</div>
  4866. <div class="index-item-description">The result number to start displaying from</div>
  4867. </dd>
  4868. <dt class="field">
  4869. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4870. <span class="var-title">$start</span>
  4871. </dt>
  4872. <dd class="index-item-body">
  4873. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$start">sloodle_view_ibank::$start</a> in ibank.php</div>
  4874. <div class="index-item-description">The result number to start displaying from</div>
  4875. </dd>
  4876. <dt class="field">
  4877. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4878. <span class="var-title">$startingBalance</span>
  4879. </dt>
  4880. <dd class="index-item-body">
  4881. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#var$startingBalance">stipendGiverObject::$startingBalance</a> in stipendgiver_object.php</div>
  4882. </dd>
  4883. <dt class="field">
  4884. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4885. <span class="var-title">$status_code</span>
  4886. </dt>
  4887. <dd class="index-item-body">
  4888. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$status_code">SloodleResponse::$status_code</a> in io.php</div>
  4889. <div class="index-item-description">Integer status code of the response.</div>
  4890. </dd>
  4891. <dt class="field">
  4892. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4893. <span class="var-title">$status_descriptor</span>
  4894. </dt>
  4895. <dd class="index-item-body">
  4896. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$status_descriptor">SloodleResponse::$status_descriptor</a> in io.php</div>
  4897. <div class="index-item-description">Status descriptor string.</div>
  4898. </dd>
  4899. <dt class="field">
  4900. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4901. <span class="var-title">$stipendCollectors_moodleid</span>
  4902. </dt>
  4903. <dd class="index-item-body">
  4904. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$stipendCollectors_moodleid">sloodle_view_ibank::$stipendCollectors_moodleid</a> in ibank.php</div>
  4905. <div class="index-item-description">A List of usrs moodle id's who have collected a stipend</div>
  4906. </dd>
  4907. <dt class="field">
  4908. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4909. <span class="var-title">$stipendCollectors_uuid</span>
  4910. </dt>
  4911. <dd class="index-item-body">
  4912. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$stipendCollectors_uuid">sloodle_view_ibank::$stipendCollectors_uuid</a> in ibank.php</div>
  4913. <div class="index-item-description">A List of all users avatar UUID's who have collected a stipend</div>
  4914. </dd>
  4915. <dt class="field">
  4916. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4917. <span class="var-title">$stipendGiverObj</span>
  4918. </dt>
  4919. <dd class="index-item-body">
  4920. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$stipendGiverObj">sloodle_view_ibank::$stipendGiverObj</a> in ibank.php</div>
  4921. </dd>
  4922. <dt class="field">
  4923. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4924. <span class="var-title">$stipendGiverRec</span>
  4925. </dt>
  4926. <dd class="index-item-body">
  4927. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#var$stipendGiverRec">stipendGiverObject::$stipendGiverRec</a> in stipendgiver_object.php</div>
  4928. </dd>
  4929. <dt class="field">
  4930. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  4931. <span class="var-title">$subject</span>
  4932. </dt>
  4933. <dd class="index-item-body">
  4934. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#var$subject">SloodleBlogPost::$subject</a> in module_blog.php</div>
  4935. <div class="index-item-description">The subject of the post.</div>
  4936. </dd>
  4937. <dt class="field">
  4938. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4939. <span class="var-title">$system_context</span>
  4940. </dt>
  4941. <dd class="index-item-body">
  4942. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#var$system_context">sloodle_view_users::$system_context</a> in users.php</div>
  4943. <div class="index-item-description">Moodle permissions context for the system.</div>
  4944. </dd>
  4945. <dt class="field">
  4946. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  4947. <span class="var-title">$system_context</span>
  4948. </dt>
  4949. <dd class="index-item-body">
  4950. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$system_context">sloodle_view_user::$system_context</a> in user.php</div>
  4951. <div class="index-item-description">Moodle permissions context for the system.</div>
  4952. </dd>
  4953. <dt class="field">
  4954. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  4955. <span class="include-title">sloodlecourseobject.php</span>
  4956. </dt>
  4957. <dd class="index-item-body">
  4958. <div class="index-item-details"><a href="sloodle/_lib---sloodlecourseobject.php.html">sloodlecourseobject.php</a> in sloodlecourseobject.php</div>
  4959. </dd>
  4960. <dt class="field">
  4961. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  4962. <span class="include-title">sloodle_session.php</span>
  4963. </dt>
  4964. <dd class="index-item-body">
  4965. <div class="index-item-details"><a href="sloodle/_lib---sloodle_session.php.html">sloodle_session.php</a> in sloodle_session.php</div>
  4966. </dd>
  4967. <dt class="field">
  4968. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  4969. <span class="include-title">stipendgiver_object.php</span>
  4970. </dt>
  4971. <dd class="index-item-body">
  4972. <div class="index-item-details"><a href="sloodle/_mod---ibank-1.0---stipendgiver_object.php.html">stipendgiver_object.php</a> in stipendgiver_object.php</div>
  4973. </dd>
  4974. <dt class="field">
  4975. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4976. <span class="method-title">save_configs</span>
  4977. </dt>
  4978. <dd class="index-item-body">
  4979. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodsave_configs">SloodleLayoutEntry::save_configs()</a> in layout_profile.php</div>
  4980. </dd>
  4981. <dt class="field">
  4982. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4983. <span class="method-title">save_entries</span>
  4984. </dt>
  4985. <dd class="index-item-body">
  4986. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodsave_entries">SloodleLayout::save_entries()</a> in layout_profile.php</div>
  4987. </dd>
  4988. <dt class="field">
  4989. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4990. <span class="method-title">save_layout</span>
  4991. </dt>
  4992. <dd class="index-item-body">
  4993. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodsave_layout">SloodleCourse::save_layout()</a> in course.php</div>
  4994. <div class="index-item-description">Save the given entries in the named profile.</div>
  4995. </dd>
  4996. <dt class="field">
  4997. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  4998. <span class="method-title">save_layout_by_id</span>
  4999. </dt>
  5000. <dd class="index-item-body">
  5001. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodsave_layout_by_id">SloodleCourse::save_layout_by_id()</a> in course.php</div>
  5002. <div class="index-item-description">Save the given entries in the profile specified by id.</div>
  5003. </dd>
  5004. <dt class="field">
  5005. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5006. <span class="method-title">search</span>
  5007. </dt>
  5008. <dd class="index-item-body">
  5009. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodsearch">SloodleModuleGlossary::search()</a> in module_glossary.php</div>
  5010. <div class="index-item-description">Searches all entries in the current glossary for the given term.</div>
  5011. </dd>
  5012. <dt class="field">
  5013. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5014. <span class="method-title">searchUserList</span>
  5015. </dt>
  5016. <dd class="index-item-body">
  5017. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodsearchUserList">stipendGiverObject::searchUserList()</a> in stipendgiver_object.php</div>
  5018. </dd>
  5019. <dt class="field">
  5020. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5021. <span class="method-title">select_option</span>
  5022. </dt>
  5023. <dd class="index-item-body">
  5024. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodselect_option">SloodleModuleChoice::select_option()</a> in module_choice.php</div>
  5025. <div class="index-item-description">Selects an option in this choice on behalf of the specified user.</div>
  5026. </dd>
  5027. <dt class="field">
  5028. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5029. <span class="method-title">send_object</span>
  5030. </dt>
  5031. <dd class="index-item-body">
  5032. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodsend_object">SloodleModuleDistributor::send_object()</a> in module_distributor.php</div>
  5033. <div class="index-item-description">Request that the specified object be sent to the specified avatar.</div>
  5034. </dd>
  5035. <dt class="field">
  5036. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5037. <span class="method-title">set</span>
  5038. </dt>
  5039. <dd class="index-item-body">
  5040. <div class="index-item-details"><a href="sloodle/SloodleAviListName.html#methodset">SloodleAviListName::set()</a> in module_avilister.php</div>
  5041. <div class="index-item-description">Accessor - set all members in a single call.</div>
  5042. </dd>
  5043. <dt class="field">
  5044. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5045. <span class="method-title">set</span>
  5046. </dt>
  5047. <dd class="index-item-body">
  5048. <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#methodset">SloodleChatMessage::set()</a> in module_chat.php</div>
  5049. <div class="index-item-description">Accessor - set all members in a single call.</div>
  5050. </dd>
  5051. <dt class="field">
  5052. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5053. <span class="method-title">set</span>
  5054. </dt>
  5055. <dd class="index-item-body">
  5056. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#methodset">SloodleBlogPost::set()</a> in module_blog.php</div>
  5057. <div class="index-item-description">Accessor - set all members in a single call.</div>
  5058. </dd>
  5059. <dt class="field">
  5060. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5061. <span class="method-title">set</span>
  5062. </dt>
  5063. <dd class="index-item-body">
  5064. <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#methodset">SloodleGlossaryEntry::set()</a> in module_glossary.php</div>
  5065. <div class="index-item-description">Accessor - set all members in a single call.</div>
  5066. </dd>
  5067. <dt class="field">
  5068. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5069. <span class="method-title">setRenderMessage</span>
  5070. </dt>
  5071. <dd class="index-item-body">
  5072. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodsetRenderMessage">sloodle_view_ibank::setRenderMessage()</a> in ibank.php</div>
  5073. </dd>
  5074. <dt class="field">
  5075. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5076. <span class="method-title">setStartingBalance</span>
  5077. </dt>
  5078. <dd class="index-item-body">
  5079. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodsetStartingBalance">stipendGiverObject::setStartingBalance()</a> in stipendgiver_object.php</div>
  5080. </dd>
  5081. <dt class="field">
  5082. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5083. <span class="method-title">setStipendBudget</span>
  5084. </dt>
  5085. <dd class="index-item-body">
  5086. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodsetStipendBudget">stipendGiverObject::setStipendBudget()</a> in stipendgiver_object.php</div>
  5087. </dd>
  5088. <dt class="field">
  5089. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  5090. <span class="include-title">settings.php</span>
  5091. </dt>
  5092. <dd class="index-item-body">
  5093. <div class="index-item-details"><a href="sloodle/_settings.php.html">settings.php</a> in settings.php</div>
  5094. </dd>
  5095. <dt class="field">
  5096. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5097. <span class="method-title">setUserList</span>
  5098. </dt>
  5099. <dd class="index-item-body">
  5100. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodsetUserList">sloodleCourseObj::setUserList()</a> in sloodlecourseobject.php</div>
  5101. <div class="index-item-description">setUserList set's the private userList array</div>
  5102. </dd>
  5103. <dt class="field">
  5104. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5105. <span class="method-title">set_avatar_last_active</span>
  5106. </dt>
  5107. <dd class="index-item-body">
  5108. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodset_avatar_last_active">SloodleUser::set_avatar_last_active()</a> in user.php</div>
  5109. <div class="index-item-description">Sets the timestamp of when the user was last active</div>
  5110. </dd>
  5111. <dt class="field">
  5112. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5113. <span class="method-title">set_avatar_name</span>
  5114. </dt>
  5115. <dd class="index-item-body">
  5116. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodset_avatar_name">SloodleUser::set_avatar_name()</a> in user.php</div>
  5117. <div class="index-item-description">Sets the name of the avatar</div>
  5118. </dd>
  5119. <dt class="field">
  5120. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5121. <span class="method-title">set_avatar_uuid</span>
  5122. </dt>
  5123. <dd class="index-item-body">
  5124. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodset_avatar_uuid">SloodleUser::set_avatar_uuid()</a> in user.php</div>
  5125. <div class="index-item-description">Sets the UUID of the avatar</div>
  5126. </dd>
  5127. <dt class="field">
  5128. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5129. <span class="method-title">set_avatar_uuid</span>
  5130. </dt>
  5131. <dd class="index-item-body">
  5132. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_avatar_uuid">SloodleResponse::set_avatar_uuid()</a> in io.php</div>
  5133. <div class="index-item-description">Accessor function to set member value $avatar_uuid</div>
  5134. </dd>
  5135. <dt class="field">
  5136. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5137. <span class="method-title">set_channel</span>
  5138. </dt>
  5139. <dd class="index-item-body">
  5140. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodset_channel">SloodleModuleDistributor::set_channel()</a> in module_distributor.php</div>
  5141. <div class="index-item-description">Sets the UUID of the XMLRPC channel used for requests.</div>
  5142. </dd>
  5143. <dt class="field">
  5144. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5145. <span class="method-title">set_config</span>
  5146. </dt>
  5147. <dd class="index-item-body">
  5148. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodset_config">SloodleLayoutEntry::set_config()</a> in layout_profile.php</div>
  5149. </dd>
  5150. <dt class="field">
  5151. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5152. <span class="method-title">set_data</span>
  5153. </dt>
  5154. <dd class="index-item-body">
  5155. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_data">SloodleResponse::set_data()</a> in io.php</div>
  5156. <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>
  5157. </dd>
  5158. <dt class="field">
  5159. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5160. <span class="method-title">set_field_separator</span>
  5161. </dt>
  5162. <dd class="index-item-body">
  5163. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_field_separator">SloodleResponse::set_field_separator()</a> in io.php</div>
  5164. <div class="index-item-description">Sets the field separator.</div>
  5165. </dd>
  5166. <dt class="field">
  5167. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5168. <span class="method-title">set_initial_coordinates</span>
  5169. </dt>
  5170. <dd class="index-item-body">
  5171. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodset_initial_coordinates">SloodleModuleMap::set_initial_coordinates()</a> in module_map.php</div>
  5172. <div class="index-item-description">Sets the initial coordinates of the map.</div>
  5173. </dd>
  5174. <dt class="field">
  5175. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5176. <span class="method-title">set_intro</span>
  5177. </dt>
  5178. <dd class="index-item-body">
  5179. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodset_intro">SloodleController::set_intro()</a> in controller.php</div>
  5180. <div class="index-item-description">Sets the intro description of this controller.</div>
  5181. </dd>
  5182. <dt class="field">
  5183. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5184. <span class="method-title">set_line_separator</span>
  5185. </dt>
  5186. <dd class="index-item-body">
  5187. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_line_separator">SloodleResponse::set_line_separator()</a> in io.php</div>
  5188. <div class="index-item-description">Sets the line separator.</div>
  5189. </dd>
  5190. <dt class="field">
  5191. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5192. <span class="method-title">set_loginzone_position</span>
  5193. </dt>
  5194. <dd class="index-item-body">
  5195. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_position">SloodleCourse::set_loginzone_position()</a> in course.php</div>
  5196. <div class="index-item-description">Sets the position of the loginzone as a string vector &lt;x,y,z&gt;</div>
  5197. </dd>
  5198. <dt class="field">
  5199. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5200. <span class="method-title">set_loginzone_position_xyz</span>
  5201. </dt>
  5202. <dd class="index-item-body">
  5203. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_position_xyz">SloodleCourse::set_loginzone_position_xyz()</a> in course.php</div>
  5204. <div class="index-item-description">Sets the position of the loginzone as a set of components</div>
  5205. </dd>
  5206. <dt class="field">
  5207. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5208. <span class="method-title">set_loginzone_region</span>
  5209. </dt>
  5210. <dd class="index-item-body">
  5211. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_region">SloodleCourse::set_loginzone_region()</a> in course.php</div>
  5212. <div class="index-item-description">Sets the region of the loginzone</div>
  5213. </dd>
  5214. <dt class="field">
  5215. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5216. <span class="method-title">set_loginzone_size</span>
  5217. </dt>
  5218. <dd class="index-item-body">
  5219. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_size">SloodleCourse::set_loginzone_size()</a> in course.php</div>
  5220. <div class="index-item-description">Sets the size of the loginzone as a string vector &lt;x,y,z&gt;</div>
  5221. </dd>
  5222. <dt class="field">
  5223. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5224. <span class="method-title">set_loginzone_size_xyz</span>
  5225. </dt>
  5226. <dd class="index-item-body">
  5227. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_size_xyz">SloodleCourse::set_loginzone_size_xyz()</a> in course.php</div>
  5228. <div class="index-item-description">Sets the size of the loginzone as a set of components</div>
  5229. </dd>
  5230. <dt class="field">
  5231. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5232. <span class="method-title">set_loginzone_time_updated</span>
  5233. </dt>
  5234. <dd class="index-item-body">
  5235. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodset_loginzone_time_updated">SloodleCourse::set_loginzone_time_updated()</a> in course.php</div>
  5236. <div class="index-item-description">Sets the timestamp of the last time the loginzone was updated</div>
  5237. </dd>
  5238. <dt class="field">
  5239. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5240. <span class="method-title">set_name</span>
  5241. </dt>
  5242. <dd class="index-item-body">
  5243. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodset_name">SloodleController::set_name()</a> in controller.php</div>
  5244. <div class="index-item-description">Sets the name of this controller.</div>
  5245. </dd>
  5246. <dt class="field">
  5247. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5248. <span class="method-title">set_objects</span>
  5249. </dt>
  5250. <dd class="index-item-body">
  5251. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodset_objects">SloodleModuleDistributor::set_objects()</a> in module_distributor.php</div>
  5252. <div class="index-item-description">Sets the list of objects in this Distributor</div>
  5253. </dd>
  5254. <dt class="field">
  5255. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5256. <span class="method-title">set_page_number</span>
  5257. </dt>
  5258. <dd class="index-item-body">
  5259. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_page_number">SloodleResponse::set_page_number()</a> in io.php</div>
  5260. <div class="index-item-description">Accessor function to set member value $page_number</div>
  5261. </dd>
  5262. <dt class="field">
  5263. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5264. <span class="method-title">set_page_total</span>
  5265. </dt>
  5266. <dd class="index-item-body">
  5267. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_page_total">SloodleResponse::set_page_total()</a> in io.php</div>
  5268. <div class="index-item-description">Accessor function to set member value $page_total</div>
  5269. </dd>
  5270. <dt class="field">
  5271. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5272. <span class="method-title">set_password</span>
  5273. </dt>
  5274. <dd class="index-item-body">
  5275. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodset_password">SloodleController::set_password()</a> in controller.php</div>
  5276. <div class="index-item-description">Sets the prim password of this controller.</div>
  5277. </dd>
  5278. <dt class="field">
  5279. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5280. <span class="method-title">set_position_xyz</span>
  5281. </dt>
  5282. <dd class="index-item-body">
  5283. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodset_position_xyz">SloodleLayoutEntry::set_position_xyz()</a> in layout_profile.php</div>
  5284. <div class="index-item-description">Sets the position as separate X,Y,Z components</div>
  5285. </dd>
  5286. <dt class="field">
  5287. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5288. <span class="method-title">set_request_descriptor</span>
  5289. </dt>
  5290. <dd class="index-item-body">
  5291. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_request_descriptor">SloodleResponse::set_request_descriptor()</a> in io.php</div>
  5292. <div class="index-item-description">Accessor function to set member value $request_descriptor</div>
  5293. </dd>
  5294. <dt class="field">
  5295. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5296. <span class="method-title">set_request_timestamp</span>
  5297. </dt>
  5298. <dd class="index-item-body">
  5299. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_request_timestamp">SloodleResponse::set_request_timestamp()</a> in io.php</div>
  5300. <div class="index-item-description">Accessor function to set member value $request_timestamp</div>
  5301. </dd>
  5302. <dt class="field">
  5303. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5304. <span class="method-title">set_response_timestamp</span>
  5305. </dt>
  5306. <dd class="index-item-body">
  5307. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_response_timestamp">SloodleResponse::set_response_timestamp()</a> in io.php</div>
  5308. <div class="index-item-description">Accessor function to set member value $response_timestamp</div>
  5309. </dd>
  5310. <dt class="field">
  5311. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5312. <span class="method-title">set_rotation_xyz</span>
  5313. </dt>
  5314. <dd class="index-item-body">
  5315. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodset_rotation_xyz">SloodleLayoutEntry::set_rotation_xyz()</a> in layout_profile.php</div>
  5316. <div class="index-item-description">Sets the rotation as separate X,Y,Z components</div>
  5317. </dd>
  5318. <dt class="field">
  5319. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5320. <span class="method-title">set_side_effects</span>
  5321. </dt>
  5322. <dd class="index-item-body">
  5323. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_side_effects">SloodleResponse::set_side_effects()</a> in io.php</div>
  5324. <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>
  5325. </dd>
  5326. <dt class="field">
  5327. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5328. <span class="method-title">set_status_code</span>
  5329. </dt>
  5330. <dd class="index-item-body">
  5331. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_status_code">SloodleResponse::set_status_code()</a> in io.php</div>
  5332. <div class="index-item-description">Accessor function to set member value $status_code</div>
  5333. </dd>
  5334. <dt class="field">
  5335. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5336. <span class="method-title">set_status_descriptor</span>
  5337. </dt>
  5338. <dd class="index-item-body">
  5339. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_status_descriptor">SloodleResponse::set_status_descriptor()</a> in io.php</div>
  5340. <div class="index-item-description">Accessor function to set member value $status_descriptor</div>
  5341. </dd>
  5342. <dt class="field">
  5343. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5344. <span class="method-title">set_tracking_code</span>
  5345. </dt>
  5346. <dd class="index-item-body">
  5347. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodset_tracking_code">SloodleResponse::set_tracking_code()</a> in io.php</div>
  5348. <div class="index-item-description">Accessor function to set member value $tracking_code</div>
  5349. </dd>
  5350. <dt class="field">
  5351. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5352. SloodleActiveObject
  5353. </dt>
  5354. <dd class="index-item-body">
  5355. <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html">SloodleActiveObject</a> in active_object.php</div>
  5356. <div class="index-item-description">An active object, relating to the Sloodle active objects DB table.</div>
  5357. </dd>
  5358. <dt class="field">
  5359. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5360. SloodleAviListName
  5361. </dt>
  5362. <dd class="index-item-body">
  5363. <div class="index-item-details"><a href="sloodle/SloodleAviListName.html">SloodleAviListName</a> in module_avilister.php</div>
  5364. <div class="index-item-description">Represents a single avatar list name association</div>
  5365. </dd>
  5366. <dt class="field">
  5367. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5368. SloodleBlogPost
  5369. </dt>
  5370. <dd class="index-item-body">
  5371. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html">SloodleBlogPost</a> in module_blog.php</div>
  5372. <div class="index-item-description">Represents a single blog post</div>
  5373. </dd>
  5374. <dt class="field">
  5375. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5376. <span class="method-title">SloodleChatMessage</span>
  5377. </dt>
  5378. <dd class="index-item-body">
  5379. <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#methodSloodleChatMessage">SloodleChatMessage::SloodleChatMessage()</a> in module_chat.php</div>
  5380. <div class="index-item-description">Constructor - initialises members.</div>
  5381. </dd>
  5382. <dt class="field">
  5383. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5384. <span class="method-title">SloodleChatMessage</span>
  5385. </dt>
  5386. <dd class="index-item-body">
  5387. <div class="index-item-details"><a href="sloodle/SloodleAviListName.html#methodSloodleChatMessage">SloodleAviListName::SloodleChatMessage()</a> in module_avilister.php</div>
  5388. <div class="index-item-description">Constructor - initialises members.</div>
  5389. </dd>
  5390. <dt class="field">
  5391. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5392. SloodleChatMessage
  5393. </dt>
  5394. <dd class="index-item-body">
  5395. <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html">SloodleChatMessage</a> in module_chat.php</div>
  5396. <div class="index-item-description">Represents a single chat message</div>
  5397. </dd>
  5398. <dt class="field">
  5399. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5400. <span class="method-title">SloodleChatMessage</span>
  5401. </dt>
  5402. <dd class="index-item-body">
  5403. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#methodSloodleChatMessage">SloodleBlogPost::SloodleChatMessage()</a> in module_blog.php</div>
  5404. <div class="index-item-description">Constructor - initialises members.</div>
  5405. </dd>
  5406. <dt class="field">
  5407. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5408. SloodleChoiceOption
  5409. </dt>
  5410. <dd class="index-item-body">
  5411. <div class="index-item-details"><a href="sloodle/SloodleChoiceOption.html">SloodleChoiceOption</a> in module_choice.php</div>
  5412. <div class="index-item-description">Class to represent a single available option for a choice.</div>
  5413. </dd>
  5414. <dt class="field">
  5415. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5416. SloodleController
  5417. </dt>
  5418. <dd class="index-item-body">
  5419. <div class="index-item-details"><a href="sloodle/SloodleController.html">SloodleController</a> in controller.php</div>
  5420. <div class="index-item-description">Represents a Sloodle Controller, including data such as prim password.</div>
  5421. </dd>
  5422. <dt class="field">
  5423. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5424. <span class="method-title">SloodleController</span>
  5425. </dt>
  5426. <dd class="index-item-body">
  5427. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodSloodleController">SloodleController::SloodleController()</a> in controller.php</div>
  5428. <div class="index-item-description">Constructor</div>
  5429. </dd>
  5430. <dt class="field">
  5431. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5432. <span class="method-title">SloodleCourse</span>
  5433. </dt>
  5434. <dd class="index-item-body">
  5435. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodSloodleCourse">SloodleCourse::SloodleCourse()</a> in course.php</div>
  5436. <div class="index-item-description">Constructor</div>
  5437. </dd>
  5438. <dt class="field">
  5439. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5440. SloodleCourse
  5441. </dt>
  5442. <dd class="index-item-body">
  5443. <div class="index-item-details"><a href="sloodle/SloodleCourse.html">SloodleCourse</a> in course.php</div>
  5444. <div class="index-item-description">The Sloodle course data class</div>
  5445. </dd>
  5446. <dt class="field">
  5447. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5448. <span class="method-title">sloodleCourseObj</span>
  5449. </dt>
  5450. <dd class="index-item-body">
  5451. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#methodsloodleCourseObj">sloodleCourseObj::sloodleCourseObj()</a> in sloodlecourseobject.php</div>
  5452. </dd>
  5453. <dt class="field">
  5454. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5455. sloodleCourseObj
  5456. </dt>
  5457. <dd class="index-item-body">
  5458. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html">sloodleCourseObj</a> in sloodlecourseobject.php</div>
  5459. </dd>
  5460. <dt class="field">
  5461. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5462. <span class="method-title">SloodleGlossaryEntry</span>
  5463. </dt>
  5464. <dd class="index-item-body">
  5465. <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html#methodSloodleGlossaryEntry">SloodleGlossaryEntry::SloodleGlossaryEntry()</a> in module_glossary.php</div>
  5466. <div class="index-item-description">Constructor - initialises members.</div>
  5467. </dd>
  5468. <dt class="field">
  5469. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5470. SloodleGlossaryEntry
  5471. </dt>
  5472. <dd class="index-item-body">
  5473. <div class="index-item-details"><a href="sloodle/SloodleGlossaryEntry.html">SloodleGlossaryEntry</a> in module_glossary.php</div>
  5474. <div class="index-item-description">Represents a single glossary entry</div>
  5475. </dd>
  5476. <dt class="field">
  5477. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5478. SloodleLayout
  5479. </dt>
  5480. <dd class="index-item-body">
  5481. <div class="index-item-details"><a href="sloodle/SloodleLayout.html">SloodleLayout</a> in layout_profile.php</div>
  5482. <div class="index-item-description">This file defines structures for managing Sloodle layout profiles.</div>
  5483. </dd>
  5484. <dt class="field">
  5485. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5486. <span class="method-title">SloodleLayout</span>
  5487. </dt>
  5488. <dd class="index-item-body">
  5489. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodSloodleLayout">SloodleLayout::SloodleLayout()</a> in layout_profile.php</div>
  5490. </dd>
  5491. <dt class="field">
  5492. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5493. <span class="method-title">SloodleLayoutEntry</span>
  5494. </dt>
  5495. <dd class="index-item-body">
  5496. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodSloodleLayoutEntry">SloodleLayoutEntry::SloodleLayoutEntry()</a> in layout_profile.php</div>
  5497. </dd>
  5498. <dt class="field">
  5499. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5500. SloodleLayoutEntry
  5501. </dt>
  5502. <dd class="index-item-body">
  5503. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html">SloodleLayoutEntry</a> in layout_profile.php</div>
  5504. <div class="index-item-description">Stores data for a single entry in a layout profile.</div>
  5505. </dd>
  5506. <dt class="field">
  5507. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5508. <span class="method-title">SloodleLayoutEntryConfig</span>
  5509. </dt>
  5510. <dd class="index-item-body">
  5511. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#methodSloodleLayoutEntryConfig">SloodleLayoutEntryConfig::SloodleLayoutEntryConfig()</a> in layout_profile.php</div>
  5512. </dd>
  5513. <dt class="field">
  5514. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5515. SloodleLayoutEntryConfig
  5516. </dt>
  5517. <dd class="index-item-body">
  5518. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html">SloodleLayoutEntryConfig</a> in layout_profile.php</div>
  5519. </dd>
  5520. <dt class="field">
  5521. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5522. SloodleModule
  5523. </dt>
  5524. <dd class="index-item-body">
  5525. <div class="index-item-details"><a href="sloodle/SloodleModule.html">SloodleModule</a> in module_base.php</div>
  5526. <div class="index-item-description">Sloodle module base class.</div>
  5527. </dd>
  5528. <dt class="field">
  5529. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5530. <span class="method-title">SloodleModule</span>
  5531. </dt>
  5532. <dd class="index-item-body">
  5533. <div class="index-item-details"><a href="sloodle/SloodleModule.html#methodSloodleModule">SloodleModule::SloodleModule()</a> in module_base.php</div>
  5534. <div class="index-item-description">Constructor - initialises the session variable</div>
  5535. </dd>
  5536. <dt class="field">
  5537. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5538. <span class="method-title">SloodleModuleAviLister</span>
  5539. </dt>
  5540. <dd class="index-item-body">
  5541. <div class="index-item-details"><a href="sloodle/SloodleModuleAviLister.html#methodSloodleModuleAviLister">SloodleModuleAviLister::SloodleModuleAviLister()</a> in module_avilister.php</div>
  5542. <div class="index-item-description">Constructor</div>
  5543. </dd>
  5544. <dt class="field">
  5545. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5546. SloodleModuleAviLister
  5547. </dt>
  5548. <dd class="index-item-body">
  5549. <div class="index-item-details"><a href="sloodle/SloodleModuleAviLister.html">SloodleModuleAviLister</a> in module_avilister.php</div>
  5550. <div class="index-item-description">The Sloodle AviLister module class.</div>
  5551. </dd>
  5552. <dt class="field">
  5553. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5554. SloodleModuleBlog
  5555. </dt>
  5556. <dd class="index-item-body">
  5557. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html">SloodleModuleBlog</a> in module_blog.php</div>
  5558. <div class="index-item-description">The Sloodle blog module class.</div>
  5559. </dd>
  5560. <dt class="field">
  5561. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5562. <span class="method-title">SloodleModuleBlog</span>
  5563. </dt>
  5564. <dd class="index-item-body">
  5565. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methodSloodleModuleBlog">SloodleModuleBlog::SloodleModuleBlog()</a> in module_blog.php</div>
  5566. <div class="index-item-description">Constructor</div>
  5567. </dd>
  5568. <dt class="field">
  5569. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5570. <span class="method-title">SloodleModuleChat</span>
  5571. </dt>
  5572. <dd class="index-item-body">
  5573. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html#methodSloodleModuleChat">SloodleModuleChat::SloodleModuleChat()</a> in module_chat.php</div>
  5574. <div class="index-item-description">Constructor</div>
  5575. </dd>
  5576. <dt class="field">
  5577. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5578. SloodleModuleChat
  5579. </dt>
  5580. <dd class="index-item-body">
  5581. <div class="index-item-details"><a href="sloodle/SloodleModuleChat.html">SloodleModuleChat</a> in module_chat.php</div>
  5582. <div class="index-item-description">The Sloodle chat module class.</div>
  5583. </dd>
  5584. <dt class="field">
  5585. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5586. SloodleModuleChoice
  5587. </dt>
  5588. <dd class="index-item-body">
  5589. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html">SloodleModuleChoice</a> in module_choice.php</div>
  5590. <div class="index-item-description">The Sloodle choice module class.</div>
  5591. </dd>
  5592. <dt class="field">
  5593. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5594. <span class="method-title">SloodleModuleChoice</span>
  5595. </dt>
  5596. <dd class="index-item-body">
  5597. <div class="index-item-details"><a href="sloodle/SloodleModuleChoice.html#methodSloodleModuleChoice">SloodleModuleChoice::SloodleModuleChoice()</a> in module_choice.php</div>
  5598. <div class="index-item-description">Constructor</div>
  5599. </dd>
  5600. <dt class="field">
  5601. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5602. SloodleModuleDistributor
  5603. </dt>
  5604. <dd class="index-item-body">
  5605. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html">SloodleModuleDistributor</a> in module_distributor.php</div>
  5606. <div class="index-item-description">The Sloodle Distributor module class.</div>
  5607. </dd>
  5608. <dt class="field">
  5609. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5610. <span class="method-title">SloodleModuleDistributor</span>
  5611. </dt>
  5612. <dd class="index-item-body">
  5613. <div class="index-item-details"><a href="sloodle/SloodleModuleDistributor.html#methodSloodleModuleDistributor">SloodleModuleDistributor::SloodleModuleDistributor()</a> in module_distributor.php</div>
  5614. <div class="index-item-description">Constructor</div>
  5615. </dd>
  5616. <dt class="field">
  5617. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5618. <span class="method-title">SloodleModuleGlossary</span>
  5619. </dt>
  5620. <dd class="index-item-body">
  5621. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html#methodSloodleModuleGlossary">SloodleModuleGlossary::SloodleModuleGlossary()</a> in module_glossary.php</div>
  5622. <div class="index-item-description">Constructor</div>
  5623. </dd>
  5624. <dt class="field">
  5625. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5626. SloodleModuleGlossary
  5627. </dt>
  5628. <dd class="index-item-body">
  5629. <div class="index-item-details"><a href="sloodle/SloodleModuleGlossary.html">SloodleModuleGlossary</a> in module_glossary.php</div>
  5630. <div class="index-item-description">The Sloodle glossary module class.</div>
  5631. </dd>
  5632. <dt class="field">
  5633. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5634. SloodleModuleiBank
  5635. </dt>
  5636. <dd class="index-item-body">
  5637. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html">SloodleModuleiBank</a> in module_ibank.php</div>
  5638. <div class="index-item-description">The Sloodle StipendGiver module class.</div>
  5639. </dd>
  5640. <dt class="field">
  5641. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5642. <span class="method-title">SloodleModuleiBank</span>
  5643. </dt>
  5644. <dd class="index-item-body">
  5645. <div class="index-item-details"><a href="sloodle/SloodleModuleiBank.html#methodSloodleModuleiBank">SloodleModuleiBank::SloodleModuleiBank()</a> in module_ibank.php</div>
  5646. <div class="index-item-description">Constructor</div>
  5647. </dd>
  5648. <dt class="field">
  5649. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5650. SloodleModuleMap
  5651. </dt>
  5652. <dd class="index-item-body">
  5653. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html">SloodleModuleMap</a> in module_map.php</div>
  5654. <div class="index-item-description">The Sloodle map resource module class.</div>
  5655. </dd>
  5656. <dt class="field">
  5657. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5658. <span class="method-title">SloodleModuleMap</span>
  5659. </dt>
  5660. <dd class="index-item-body">
  5661. <div class="index-item-details"><a href="sloodle/SloodleModuleMap.html#methodSloodleModuleMap">SloodleModuleMap::SloodleModuleMap()</a> in module_map.php</div>
  5662. <div class="index-item-description">Constructor</div>
  5663. </dd>
  5664. <dt class="field">
  5665. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5666. <span class="method-title">SloodleModulePresenter</span>
  5667. </dt>
  5668. <dd class="index-item-body">
  5669. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodSloodleModulePresenter">SloodleModulePresenter::SloodleModulePresenter()</a> in module_presenter.php</div>
  5670. <div class="index-item-description">Constructor</div>
  5671. </dd>
  5672. <dt class="field">
  5673. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5674. SloodleModulePresenter
  5675. </dt>
  5676. <dd class="index-item-body">
  5677. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html">SloodleModulePresenter</a> in module_presenter.php</div>
  5678. <div class="index-item-description">The Sloodle presenter module class.</div>
  5679. </dd>
  5680. <dt class="field">
  5681. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5682. <span class="method-title">SloodleModuleSloodleObject</span>
  5683. </dt>
  5684. <dd class="index-item-body">
  5685. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodSloodleModuleSloodleObject">SloodleModuleSloodleObject::SloodleModuleSloodleObject()</a> in module_sloodleobject.php</div>
  5686. <div class="index-item-description">Constructor</div>
  5687. </dd>
  5688. <dt class="field">
  5689. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5690. SloodleModuleSloodleObject
  5691. </dt>
  5692. <dd class="index-item-body">
  5693. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html">SloodleModuleSloodleObject</a> in module_sloodleobject.php</div>
  5694. <div class="index-item-description">The Sloodle Object assignment module class.</div>
  5695. </dd>
  5696. <dt class="field">
  5697. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5698. SloodlePluginBase
  5699. </dt>
  5700. <dd class="index-item-body">
  5701. <div class="index-item-details"><a href="sloodle/SloodlePluginBase.html">SloodlePluginBase</a> in _base.php</div>
  5702. <div class="index-item-description">Base class for all SLOODLE plugins.</div>
  5703. </dd>
  5704. <dt class="field">
  5705. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5706. SloodlePluginBasePresenterImporter
  5707. </dt>
  5708. <dd class="index-item-body">
  5709. <div class="index-item-details"><a href="sloodle/SloodlePluginBasePresenterImporter.html">SloodlePluginBasePresenterImporter</a> in _base.php</div>
  5710. <div class="index-item-description">Base class for plugins which provide slide importers for the SLOODLE Presenter.</div>
  5711. </dd>
  5712. <dt class="field">
  5713. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5714. SloodlePluginBasePresenterSlide
  5715. </dt>
  5716. <dd class="index-item-body">
  5717. <div class="index-item-details"><a href="sloodle/SloodlePluginBasePresenterSlide.html">SloodlePluginBasePresenterSlide</a> in _base.php</div>
  5718. <div class="index-item-description">Base class for plugins which provide slide types for the SLOODLE Presenter.</div>
  5719. </dd>
  5720. <dt class="field">
  5721. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5722. <span class="method-title">SloodlePluginManager</span>
  5723. </dt>
  5724. <dd class="index-item-body">
  5725. <div class="index-item-details"><a href="sloodle/SloodlePluginManager.html#methodSloodlePluginManager">SloodlePluginManager::SloodlePluginManager()</a> in plugins.php</div>
  5726. <div class="index-item-description">Class constructor.</div>
  5727. </dd>
  5728. <dt class="field">
  5729. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5730. SloodlePluginManager
  5731. </dt>
  5732. <dd class="index-item-body">
  5733. <div class="index-item-details"><a href="sloodle/SloodlePluginManager.html">SloodlePluginManager</a> in plugins.php</div>
  5734. <div class="index-item-description">A class to load SLOODLE plugins, and provide a means to access them.</div>
  5735. </dd>
  5736. <dt class="field">
  5737. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5738. SloodlePluginPresenterPDFImporter
  5739. </dt>
  5740. <dd class="index-item-body">
  5741. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterPDFImporter.html">SloodlePluginPresenterPDFImporter</a> in pdfimporter.php</div>
  5742. <div class="index-item-description">Presenter plugin for importing a PDF file as a series of image slides.</div>
  5743. </dd>
  5744. <dt class="field">
  5745. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5746. SloodlePluginPresenterSlideImage
  5747. </dt>
  5748. <dd class="index-item-body">
  5749. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideImage.html">SloodlePluginPresenterSlideImage</a> in image.php</div>
  5750. <div class="index-item-description">Presenter plugin for showing image slides.</div>
  5751. </dd>
  5752. <dt class="field">
  5753. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5754. SloodlePluginPresenterSlideVideo
  5755. </dt>
  5756. <dd class="index-item-body">
  5757. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideVideo.html">SloodlePluginPresenterSlideVideo</a> in video.php</div>
  5758. <div class="index-item-description">Presenter plugin for showing video slides.</div>
  5759. </dd>
  5760. <dt class="field">
  5761. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5762. SloodlePluginPresenterSlideWeb
  5763. </dt>
  5764. <dd class="index-item-body">
  5765. <div class="index-item-details"><a href="sloodle/SloodlePluginPresenterSlideWeb.html">SloodlePluginPresenterSlideWeb</a> in web.php</div>
  5766. <div class="index-item-description">Presenter plugin for showing web slides.</div>
  5767. </dd>
  5768. <dt class="field">
  5769. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5770. <span class="method-title">SloodlePresenterSlide</span>
  5771. </dt>
  5772. <dd class="index-item-body">
  5773. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html#methodSloodlePresenterSlide">SloodlePresenterSlide::SloodlePresenterSlide()</a> in module_presenter.php</div>
  5774. </dd>
  5775. <dt class="field">
  5776. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5777. SloodlePresenterSlide
  5778. </dt>
  5779. <dd class="index-item-body">
  5780. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html">SloodlePresenterSlide</a> in module_presenter.php</div>
  5781. <div class="index-item-description">Defines a single slide from a presentation, containing raw data.</div>
  5782. </dd>
  5783. <dt class="field">
  5784. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5785. SloodleRequest
  5786. </dt>
  5787. <dd class="index-item-body">
  5788. <div class="index-item-details"><a href="sloodle/SloodleRequest.html">SloodleRequest</a> in io.php</div>
  5789. <div class="index-item-description">Handles incoming HTTP requests, typically from LSL if dealing with Second Life.</div>
  5790. </dd>
  5791. <dt class="field">
  5792. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5793. <span class="method-title">SloodleRequest</span>
  5794. </dt>
  5795. <dd class="index-item-body">
  5796. <div class="index-item-details"><a href="sloodle/SloodleRequest.html#methodSloodleRequest">SloodleRequest::SloodleRequest()</a> in io.php</div>
  5797. <div class="index-item-description"><em>Constructor</em><ul><li>initialises the <a href="sloodle/SloodleSession.html">SloodleSession</a> object.</li></ul></div>
  5798. </dd>
  5799. <dt class="field">
  5800. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5801. <span class="method-title">SloodleResponse</span>
  5802. </dt>
  5803. <dd class="index-item-body">
  5804. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#methodSloodleResponse">SloodleResponse::SloodleResponse()</a> in io.php</div>
  5805. <div class="index-item-description"><em>Constructor</em><ul><li>can intialise some variables</li></ul></div>
  5806. </dd>
  5807. <dt class="field">
  5808. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5809. SloodleResponse
  5810. </dt>
  5811. <dd class="index-item-body">
  5812. <div class="index-item-details"><a href="sloodle/SloodleResponse.html">SloodleResponse</a> in io.php</div>
  5813. <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>
  5814. </dd>
  5815. <dt class="field">
  5816. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5817. SloodleSession
  5818. </dt>
  5819. <dd class="index-item-body">
  5820. <div class="index-item-details"><a href="sloodle/SloodleSession.html">SloodleSession</a> in sloodle_session.php</div>
  5821. <div class="index-item-description">The primary API class, which manages all other parts.</div>
  5822. </dd>
  5823. <dt class="field">
  5824. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5825. <span class="method-title">SloodleSession</span>
  5826. </dt>
  5827. <dd class="index-item-body">
  5828. <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodSloodleSession">SloodleSession::SloodleSession()</a> in sloodle_session.php</div>
  5829. <div class="index-item-description">Constructor - initialises members</div>
  5830. </dd>
  5831. <dt class="field">
  5832. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5833. SloodleUser
  5834. </dt>
  5835. <dd class="index-item-body">
  5836. <div class="index-item-details"><a href="sloodle/SloodleUser.html">SloodleUser</a> in user.php</div>
  5837. <div class="index-item-description">A class to represent a single user, including Moodle and Sloodle data.</div>
  5838. </dd>
  5839. <dt class="field">
  5840. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5841. <span class="method-title">SloodleUser</span>
  5842. </dt>
  5843. <dd class="index-item-body">
  5844. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodSloodleUser">SloodleUser::SloodleUser()</a> in user.php</div>
  5845. <div class="index-item-description">Class constructor.</div>
  5846. </dd>
  5847. <dt class="field">
  5848. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5849. SloodleUserObject
  5850. </dt>
  5851. <dd class="index-item-body">
  5852. <div class="index-item-details"><a href="sloodle/SloodleUserObject.html">SloodleUserObject</a> in user_object.php</div>
  5853. <div class="index-item-description">A user-centric object, relating to the Sloodle user objects DB table.</div>
  5854. </dd>
  5855. <dt class="field">
  5856. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5857. <span class="method-title">sloodle_access_level_option_choice</span>
  5858. </dt>
  5859. <dd class="index-item-body">
  5860. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_access_level_option_choice">sloodle_access_level_option_choice()</a> in general.php</div>
  5861. </dd>
  5862. <dt class="field">
  5863. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5864. <span class="method-title">sloodle_add_instance</span>
  5865. </dt>
  5866. <dd class="index-item-body">
  5867. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_add_instance">sloodle_add_instance()</a> in lib.php</div>
  5868. <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>
  5869. </dd>
  5870. <dt class="field">
  5871. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5872. <span class="method-title">sloodle_add_to_log</span>
  5873. </dt>
  5874. <dd class="index-item-body">
  5875. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_add_to_log">sloodle_add_to_log()</a> in general.php</div>
  5876. <div class="index-item-description">Old logging function</div>
  5877. </dd>
  5878. <dt class="field">
  5879. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5880. <span class="method-title">sloodle_array_to_vector</span>
  5881. </dt>
  5882. <dd class="index-item-body">
  5883. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_array_to_vector">sloodle_array_to_vector()</a> in general.php</div>
  5884. <div class="index-item-description">Converts an array vector to a string vector.</div>
  5885. </dd>
  5886. <dt class="field">
  5887. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5888. <span class="method-title">sloodle_autoenrol_enabled_site</span>
  5889. </dt>
  5890. <dd class="index-item-body">
  5891. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_autoenrol_enabled_site">sloodle_autoenrol_enabled_site()</a> in general.php</div>
  5892. <div class="index-item-description">Determines whether or not auto-enrolment is allowed for the site.</div>
  5893. </dd>
  5894. <dt class="field">
  5895. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5896. <span class="method-title">sloodle_autoreg_enabled_site</span>
  5897. </dt>
  5898. <dd class="index-item-body">
  5899. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_autoreg_enabled_site">sloodle_autoreg_enabled_site()</a> in general.php</div>
  5900. <div class="index-item-description">Determines whether or not auto-registration is allowed for the site.</div>
  5901. </dd>
  5902. <dt class="field">
  5903. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5904. <span class="method-title">sloodle_base_view</span>
  5905. </dt>
  5906. <dd class="index-item-body">
  5907. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html#methodsloodle_base_view">sloodle_base_view::sloodle_base_view()</a> in base_view.php</div>
  5908. <div class="index-item-description">Constructor.</div>
  5909. </dd>
  5910. <dt class="field">
  5911. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5912. sloodle_base_view
  5913. </dt>
  5914. <dd class="index-item-body">
  5915. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html">sloodle_base_view</a> in base_view.php</div>
  5916. <div class="index-item-description">The base class for viewing a SLOODLE module or feature.</div>
  5917. </dd>
  5918. <dt class="field">
  5919. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  5920. <span class="method-title">sloodle_base_view_module</span>
  5921. </dt>
  5922. <dd class="index-item-body">
  5923. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html#methodsloodle_base_view_module">sloodle_base_view_module::sloodle_base_view_module()</a> in base_view_module.php</div>
  5924. <div class="index-item-description">Constructor.</div>
  5925. </dd>
  5926. <dt class="field">
  5927. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  5928. <span class="method-title">sloodle_base_view_module</span>
  5929. </dt>
  5930. <dd class="index-item-body">
  5931. <div class="index-item-details"><a href="sloodle/sloodle_view_distributor.html#methodsloodle_base_view_module">sloodle_view_distributor::sloodle_base_view_module()</a> in distributor.php</div>
  5932. <div class="index-item-description">Constructor.</div>
  5933. </dd>
  5934. <dt class="field">
  5935. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  5936. sloodle_base_view_module
  5937. </dt>
  5938. <dd class="index-item-body">
  5939. <div class="index-item-details"><a href="sloodle/sloodle_base_view_module.html">sloodle_base_view_module</a> in base_view_module.php</div>
  5940. <div class="index-item-description">The base class for viewing a SLOODLE module.</div>
  5941. </dd>
  5942. <dt class="field">
  5943. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  5944. <span class="const-title">SLOODLE_BLOG_VISIBILITY_PRIVATE</span>
  5945. </dt>
  5946. <dd class="index-item-body">
  5947. <div class="index-item-details"><a href="sloodle/_lib---modules---module_blog.php.html#defineSLOODLE_BLOG_VISIBILITY_PRIVATE">SLOODLE_BLOG_VISIBILITY_PRIVATE</a> in module_blog.php</div>
  5948. <div class="index-item-description">Blog visibility identifier for private posts. (These can only be viewed by the person who posted them)</div>
  5949. </dd>
  5950. <dt class="field">
  5951. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  5952. <span class="const-title">SLOODLE_BLOG_VISIBILITY_PUBLIC</span>
  5953. </dt>
  5954. <dd class="index-item-body">
  5955. <div class="index-item-details"><a href="sloodle/_lib---modules---module_blog.php.html#defineSLOODLE_BLOG_VISIBILITY_PUBLIC">SLOODLE_BLOG_VISIBILITY_PUBLIC</a> in module_blog.php</div>
  5956. <div class="index-item-description">Blog visibility identifier for public posts. (These can be viewed by anybody)</div>
  5957. </dd>
  5958. <dt class="field">
  5959. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  5960. <span class="const-title">SLOODLE_BLOG_VISIBILITY_SITE</span>
  5961. </dt>
  5962. <dd class="index-item-body">
  5963. <div class="index-item-details"><a href="sloodle/_lib---modules---module_blog.php.html#defineSLOODLE_BLOG_VISIBILITY_SITE">SLOODLE_BLOG_VISIBILITY_SITE</a> in module_blog.php</div>
  5964. <div class="index-item-description">Blog visibility identifier for site posts. (These can be viewed by anybody who is registered on the site)</div>
  5965. </dd>
  5966. <dt class="field">
  5967. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5968. <span class="method-title">sloodle_check_course_module_instance_type</span>
  5969. </dt>
  5970. <dd class="index-item-body">
  5971. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_check_course_module_instance_type">sloodle_check_course_module_instance_type()</a> in general.php</div>
  5972. <div class="index-item-description">Determines if the specified course module instance is of the named type.</div>
  5973. </dd>
  5974. <dt class="field">
  5975. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5976. <span class="method-title">sloodle_clean_for_db</span>
  5977. </dt>
  5978. <dd class="index-item-body">
  5979. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_clean_for_db">sloodle_clean_for_db()</a> in general.php</div>
  5980. <div class="index-item-description">Returns the given string, 'cleaned' and ready for storage in the database.</div>
  5981. </dd>
  5982. <dt class="field">
  5983. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5984. <span class="method-title">sloodle_clean_for_output</span>
  5985. </dt>
  5986. <dd class="index-item-body">
  5987. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_clean_for_output">sloodle_clean_for_output()</a> in general.php</div>
  5988. <div class="index-item-description">Returns the given string, 'cleaned' and ready for output to SL as UTF-8.</div>
  5989. </dd>
  5990. <dt class="field">
  5991. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  5992. <span class="method-title">sloodle_convert_file_size_shorthand</span>
  5993. </dt>
  5994. <dd class="index-item-body">
  5995. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_convert_file_size_shorthand">sloodle_convert_file_size_shorthand()</a> in general.php</div>
  5996. <div class="index-item-description">Converts a shorthand file size to a number of bytes, if necessary.</div>
  5997. </dd>
  5998. <dt class="field">
  5999. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6000. <span class="method-title">sloodle_cron</span>
  6001. </dt>
  6002. <dd class="index-item-body">
  6003. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_cron">sloodle_cron()</a> in lib.php</div>
  6004. <div class="index-item-description">Function to be run periodically according to the Moodle cron.</div>
  6005. </dd>
  6006. <dt class="field">
  6007. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6008. <span class="const-title">SLOODLE_DEBUG</span>
  6009. </dt>
  6010. <dd class="index-item-body">
  6011. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_DEBUG">SLOODLE_DEBUG</a> in sl_config.php</div>
  6012. </dd>
  6013. <dt class="field">
  6014. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6015. <span class="method-title">sloodle_debug</span>
  6016. </dt>
  6017. <dd class="index-item-body">
  6018. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#functionsloodle_debug">sloodle_debug()</a> in sl_config.php</div>
  6019. <div class="index-item-description">Outputs messages if in debug mode.</div>
  6020. </dd>
  6021. <dt class="field">
  6022. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6023. <span class="const-title">SLOODLE_DEBUG_MODE_PARAM_NAME</span>
  6024. </dt>
  6025. <dd class="index-item-body">
  6026. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_DEBUG_MODE_PARAM_NAME">SLOODLE_DEBUG_MODE_PARAM_NAME</a> in sl_config.php</div>
  6027. <div class="index-item-description">The name of the HTTP parameter which can be used to activate Sloodle debug mode.</div>
  6028. </dd>
  6029. <dt class="field">
  6030. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6031. <span class="method-title">sloodle_delete_instance</span>
  6032. </dt>
  6033. <dd class="index-item-body">
  6034. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_delete_instance">sloodle_delete_instance()</a> in lib.php</div>
  6035. <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>
  6036. </dd>
  6037. <dt class="field">
  6038. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6039. <span class="method-title">sloodle_describe_approx_time</span>
  6040. </dt>
  6041. <dd class="index-item-body">
  6042. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_describe_approx_time">sloodle_describe_approx_time()</a> in general.php</div>
  6043. <div class="index-item-description">Returns a very approximate natural language description of a period of time (in minutes, hours, days, or weeks).</div>
  6044. </dd>
  6045. <dt class="field">
  6046. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6047. <span class="const-title">SLOODLE_DIRROOT</span>
  6048. </dt>
  6049. <dd class="index-item-body">
  6050. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_DIRROOT">SLOODLE_DIRROOT</a> in sl_config.php</div>
  6051. <div class="index-item-description">The data path for the root of the Sloodle folder.</div>
  6052. </dd>
  6053. <dt class="field">
  6054. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6055. <span class="method-title">sloodle_display_config_form</span>
  6056. </dt>
  6057. <dd class="index-item-body">
  6058. <div class="index-item-details"><a href="sloodle/_mod---demo-1.0---object_config.php.html#functionsloodle_display_config_form">sloodle_display_config_form()</a> in object_config.php</div>
  6059. </dd>
  6060. <dt class="field">
  6061. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6062. <span class="method-title">sloodle_finished_login_coordinates</span>
  6063. </dt>
  6064. <dd class="index-item-body">
  6065. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_finished_login_coordinates">sloodle_finished_login_coordinates()</a> in general.php</div>
  6066. <div class="index-item-description">Generates teleport coordinates for a user who has already finished the LoginZone process.</div>
  6067. </dd>
  6068. <dt class="field">
  6069. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6070. <span class="method-title">sloodle_get_config</span>
  6071. </dt>
  6072. <dd class="index-item-body">
  6073. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_config">sloodle_get_config()</a> in general.php</div>
  6074. <div class="index-item-description">Gets a Sloodle configuration value from Moodle's &quot;config&quot; table.</div>
  6075. </dd>
  6076. <dt class="field">
  6077. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6078. <span class="method-title">sloodle_get_course_module_instance</span>
  6079. </dt>
  6080. <dd class="index-item-body">
  6081. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_course_module_instance">sloodle_get_course_module_instance()</a> in general.php</div>
  6082. <div class="index-item-description">Obtains the identified course module instance database record.</div>
  6083. </dd>
  6084. <dt class="field">
  6085. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6086. <span class="method-title">sloodle_get_files</span>
  6087. </dt>
  6088. <dd class="index-item-body">
  6089. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_files">sloodle_get_files()</a> in general.php</div>
  6090. <div class="index-item-description">Gets an array of files within the given directory.</div>
  6091. </dd>
  6092. <dt class="field">
  6093. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6094. <span class="method-title">sloodle_get_installed_object_types</span>
  6095. </dt>
  6096. <dd class="index-item-body">
  6097. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_installed_object_types">sloodle_get_installed_object_types()</a> in general.php</div>
  6098. <div class="index-item-description">Gets all object types and versions available in this installation.</div>
  6099. </dd>
  6100. <dt class="field">
  6101. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6102. <span class="method-title">sloodle_get_max_post_upload</span>
  6103. </dt>
  6104. <dd class="index-item-body">
  6105. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_max_post_upload">sloodle_get_max_post_upload()</a> in general.php</div>
  6106. <div class="index-item-description">Gets the maximum size of a file (in bytes) that can be uploaded using POST.</div>
  6107. </dd>
  6108. <dt class="field">
  6109. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6110. <span class="method-title">sloodle_get_module_id</span>
  6111. </dt>
  6112. <dd class="index-item-body">
  6113. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_module_id">sloodle_get_module_id()</a> in general.php</div>
  6114. <div class="index-item-description">Obtains the ID number of the specified module (type not instance).</div>
  6115. </dd>
  6116. <dt class="field">
  6117. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6118. <span class="method-title">sloodle_get_participants</span>
  6119. </dt>
  6120. <dd class="index-item-body">
  6121. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_get_participants">sloodle_get_participants()</a> in lib.php</div>
  6122. <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>
  6123. </dd>
  6124. <dt class="field">
  6125. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6126. <span class="method-title">sloodle_get_size_description</span>
  6127. </dt>
  6128. <dd class="index-item-body">
  6129. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_size_description">sloodle_get_size_description()</a> in general.php</div>
  6130. <div class="index-item-description">Converts a file size to plain text.</div>
  6131. </dd>
  6132. <dt class="field">
  6133. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6134. <span class="method-title">sloodle_get_subdirectories</span>
  6135. </dt>
  6136. <dd class="index-item-body">
  6137. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_subdirectories">sloodle_get_subdirectories()</a> in general.php</div>
  6138. <div class="index-item-description">Gets an array of subdirectories within the given directory.</div>
  6139. </dd>
  6140. <dt class="field">
  6141. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6142. <span class="method-title">sloodle_get_types</span>
  6143. </dt>
  6144. <dd class="index-item-body">
  6145. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_get_types">sloodle_get_types()</a> in lib.php</div>
  6146. <div class="index-item-description">Gets the different sub-types of Sloodle module available as a list for the &quot;Add Activity...&quot; menu.</div>
  6147. </dd>
  6148. <dt class="field">
  6149. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6150. <span class="method-title">sloodle_get_value</span>
  6151. </dt>
  6152. <dd class="index-item-body">
  6153. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_value">sloodle_get_value()</a> in general.php</div>
  6154. <div class="index-item-description">Extracts a value from a name-value associative array if it is set.</div>
  6155. </dd>
  6156. <dt class="field">
  6157. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6158. <span class="method-title">sloodle_get_web_path</span>
  6159. </dt>
  6160. <dd class="index-item-body">
  6161. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_get_web_path">sloodle_get_web_path()</a> in general.php</div>
  6162. <div class="index-item-description">Gets the basic URL of the current web-page being accessed.</div>
  6163. </dd>
  6164. <dt class="field">
  6165. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6166. <span class="method-title">sloodle_grades</span>
  6167. </dt>
  6168. <dd class="index-item-body">
  6169. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_grades">sloodle_grades()</a> in lib.php</div>
  6170. <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>
  6171. </dd>
  6172. <dt class="field">
  6173. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6174. <span class="method-title">sloodle_is_course_module_instance_visible</span>
  6175. </dt>
  6176. <dd class="index-item-body">
  6177. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_is_course_module_instance_visible">sloodle_is_course_module_instance_visible()</a> in general.php</div>
  6178. <div class="index-item-description">Determines whether or not the specified course module instance is visible.</div>
  6179. </dd>
  6180. <dt class="field">
  6181. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6182. <span class="method-title">sloodle_is_installed</span>
  6183. </dt>
  6184. <dd class="index-item-body">
  6185. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_is_installed">sloodle_is_installed()</a> in general.php</div>
  6186. <div class="index-item-description">Determines whether or not Sloodle is installed.</div>
  6187. </dd>
  6188. <dt class="field">
  6189. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6190. <span class="const-title">SLOODLE_LIBROOT</span>
  6191. </dt>
  6192. <dd class="index-item-body">
  6193. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_LIBROOT">SLOODLE_LIBROOT</a> in sl_config.php</div>
  6194. <div class="index-item-description">The data path for the root of the Sloodle library folder.</div>
  6195. </dd>
  6196. <dt class="field">
  6197. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6198. <span class="const-title">SLOODLE_LINKER_SCRIPT</span>
  6199. </dt>
  6200. <dd class="index-item-body">
  6201. <div class="index-item-details"><a href="sloodle/_login---check_user_auth_linker.php.html#defineSLOODLE_LINKER_SCRIPT">SLOODLE_LINKER_SCRIPT</a> in check_user_auth_linker.php</div>
  6202. <div class="index-item-description">Lets Sloodle know we are in a linker script.</div>
  6203. </dd>
  6204. <dt class="field">
  6205. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6206. <span class="method-title">sloodle_load_module</span>
  6207. </dt>
  6208. <dd class="index-item-body">
  6209. <div class="index-item-details"><a href="sloodle/_lib---modules.php.html#functionsloodle_load_module">sloodle_load_module()</a> in modules.php</div>
  6210. <div class="index-item-description">Constructs a appropriate Sloodle module object based on the named type.</div>
  6211. </dd>
  6212. <dt class="field">
  6213. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6214. <span class="method-title">sloodle_login_notification</span>
  6215. </dt>
  6216. <dd class="index-item-body">
  6217. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_login_notification">sloodle_login_notification()</a> in general.php</div>
  6218. <div class="index-item-description">Stores a pending login notification for an auto-registered user.</div>
  6219. </dd>
  6220. <dt class="field">
  6221. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6222. <span class="method-title">sloodle_login_zone_bounds</span>
  6223. </dt>
  6224. <dd class="index-item-body">
  6225. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_login_zone_bounds">sloodle_login_zone_bounds()</a> in general.php</div>
  6226. <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>
  6227. </dd>
  6228. <dt class="field">
  6229. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6230. <span class="const-title">SLOODLE_OBJECT_ACCESS_LEVEL_GROUP</span>
  6231. </dt>
  6232. <dd class="index-item-body">
  6233. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_OBJECT_ACCESS_LEVEL_GROUP">SLOODLE_OBJECT_ACCESS_LEVEL_GROUP</a> in sl_config.php</div>
  6234. <div class="index-item-description">Indicates that only in-world group-members may access an object in-world.</div>
  6235. </dd>
  6236. <dt class="field">
  6237. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6238. <span class="const-title">SLOODLE_OBJECT_ACCESS_LEVEL_OWNER</span>
  6239. </dt>
  6240. <dd class="index-item-body">
  6241. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_OBJECT_ACCESS_LEVEL_OWNER">SLOODLE_OBJECT_ACCESS_LEVEL_OWNER</a> in sl_config.php</div>
  6242. <div class="index-item-description">Indicates that only the owner may access an object in-world.</div>
  6243. </dd>
  6244. <dt class="field">
  6245. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6246. <span class="const-title">SLOODLE_OBJECT_ACCESS_LEVEL_PUBLIC</span>
  6247. </dt>
  6248. <dd class="index-item-body">
  6249. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_OBJECT_ACCESS_LEVEL_PUBLIC">SLOODLE_OBJECT_ACCESS_LEVEL_PUBLIC</a> in sl_config.php</div>
  6250. <div class="index-item-description">Indicates that anybody may access an object in-world.</div>
  6251. </dd>
  6252. <dt class="field">
  6253. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6254. <span class="const-title">SLOODLE_PARAM_AVATAR_NAME</span>
  6255. </dt>
  6256. <dd class="index-item-body">
  6257. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_AVATAR_NAME">SLOODLE_PARAM_AVATAR_NAME</a> in io.php</div>
  6258. <div class="index-item-description">Defines the HTTP parameter name for an avatar name.</div>
  6259. </dd>
  6260. <dt class="field">
  6261. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6262. <span class="const-title">SLOODLE_PARAM_AVATAR_UUID</span>
  6263. </dt>
  6264. <dd class="index-item-body">
  6265. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_AVATAR_UUID">SLOODLE_PARAM_AVATAR_UUID</a> in io.php</div>
  6266. <div class="index-item-description">Defines the HTTP parameter name for an avatar UUID.</div>
  6267. </dd>
  6268. <dt class="field">
  6269. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6270. <span class="const-title">SLOODLE_PARAM_CONTROLLER_ID</span>
  6271. </dt>
  6272. <dd class="index-item-body">
  6273. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_CONTROLLER_ID">SLOODLE_PARAM_CONTROLLER_ID</a> in io.php</div>
  6274. <div class="index-item-description">Defines the HTTP parameter name for a Sloodle controller ID.</div>
  6275. </dd>
  6276. <dt class="field">
  6277. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6278. <span class="const-title">SLOODLE_PARAM_COURSE_ID</span>
  6279. </dt>
  6280. <dd class="index-item-body">
  6281. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_COURSE_ID">SLOODLE_PARAM_COURSE_ID</a> in io.php</div>
  6282. <div class="index-item-description">Defines the HTTP parameter name for a course ID.</div>
  6283. </dd>
  6284. <dt class="field">
  6285. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6286. <span class="const-title">SLOODLE_PARAM_IS_OBJECT</span>
  6287. </dt>
  6288. <dd class="index-item-body">
  6289. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_IS_OBJECT">SLOODLE_PARAM_IS_OBJECT</a> in io.php</div>
  6290. <div class="index-item-description">Defines the HTTP parameter name for indicating a request which relates to an object instead of a user.</div>
  6291. </dd>
  6292. <dt class="field">
  6293. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6294. <span class="const-title">SLOODLE_PARAM_MODULE_ID</span>
  6295. </dt>
  6296. <dd class="index-item-body">
  6297. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_MODULE_ID">SLOODLE_PARAM_MODULE_ID</a> in io.php</div>
  6298. <div class="index-item-description">Defines the HTTP parameter name for a module ID.</div>
  6299. </dd>
  6300. <dt class="field">
  6301. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6302. <span class="const-title">SLOODLE_PARAM_PASSWORD</span>
  6303. </dt>
  6304. <dd class="index-item-body">
  6305. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_PASSWORD">SLOODLE_PARAM_PASSWORD</a> in io.php</div>
  6306. <div class="index-item-description">Defines the HTTP parameter name for a Sloodle password.</div>
  6307. </dd>
  6308. <dt class="field">
  6309. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6310. <span class="const-title">SLOODLE_PARAM_REQUEST_DESC</span>
  6311. </dt>
  6312. <dd class="index-item-body">
  6313. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_REQUEST_DESC">SLOODLE_PARAM_REQUEST_DESC</a> in io.php</div>
  6314. <div class="index-item-description">Defines the HTTP parameter name for a request descriptor.</div>
  6315. </dd>
  6316. <dt class="field">
  6317. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6318. <span class="const-title">SLOODLE_PARAM_SERVER_ACCESS_LEVEL</span>
  6319. </dt>
  6320. <dd class="index-item-body">
  6321. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#defineSLOODLE_PARAM_SERVER_ACCESS_LEVEL">SLOODLE_PARAM_SERVER_ACCESS_LEVEL</a> in io.php</div>
  6322. <div class="index-item-description">Defines the HTTP parameter name for specifying server access level.</div>
  6323. </dd>
  6324. <dt class="field">
  6325. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6326. <span class="method-title">sloodle_parse_object_identifier</span>
  6327. </dt>
  6328. <dd class="index-item-body">
  6329. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_parse_object_identifier">sloodle_parse_object_identifier()</a> in general.php</div>
  6330. <div class="index-item-description">Extracts the object name and version number from an object identifier.</div>
  6331. </dd>
  6332. <dt class="field">
  6333. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6334. <span class="method-title">sloodle_position_is_in_login_zone</span>
  6335. </dt>
  6336. <dd class="index-item-body">
  6337. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_position_is_in_login_zone">sloodle_position_is_in_login_zone()</a> in general.php</div>
  6338. <div class="index-item-description">Checks if the specified position is in the current (site-wide) loginzone.</div>
  6339. </dd>
  6340. <dt class="field">
  6341. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6342. <span class="const-title">SLOODLE_PRESENTER_TAB_ADD_FILES</span>
  6343. </dt>
  6344. <dd class="index-item-body">
  6345. <div class="index-item-details"><a href="sloodle/_view---presenter.php.html#defineSLOODLE_PRESENTER_TAB_ADD_FILES">SLOODLE_PRESENTER_TAB_ADD_FILES</a> in presenter.php</div>
  6346. <div class="index-item-description">ID of the 'bulk upload' tab for the Presenter</div>
  6347. </dd>
  6348. <dt class="field">
  6349. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6350. <span class="const-title">SLOODLE_PRESENTER_TAB_ADD_SLIDE</span>
  6351. </dt>
  6352. <dd class="index-item-body">
  6353. <div class="index-item-details"><a href="sloodle/_view---presenter.php.html#defineSLOODLE_PRESENTER_TAB_ADD_SLIDE">SLOODLE_PRESENTER_TAB_ADD_SLIDE</a> in presenter.php</div>
  6354. <div class="index-item-description">ID of the 'add slide' tab for the Presenter</div>
  6355. </dd>
  6356. <dt class="field">
  6357. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6358. <span class="const-title">SLOODLE_PRESENTER_TAB_EDIT</span>
  6359. </dt>
  6360. <dd class="index-item-body">
  6361. <div class="index-item-details"><a href="sloodle/_view---presenter.php.html#defineSLOODLE_PRESENTER_TAB_EDIT">SLOODLE_PRESENTER_TAB_EDIT</a> in presenter.php</div>
  6362. <div class="index-item-description">ID of the 'edit' tab for the Presenter</div>
  6363. </dd>
  6364. <dt class="field">
  6365. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6366. <span class="const-title">SLOODLE_PRESENTER_TAB_EDIT_SLIDE</span>
  6367. </dt>
  6368. <dd class="index-item-body">
  6369. <div class="index-item-details"><a href="sloodle/_view---presenter.php.html#defineSLOODLE_PRESENTER_TAB_EDIT_SLIDE">SLOODLE_PRESENTER_TAB_EDIT_SLIDE</a> in presenter.php</div>
  6370. <div class="index-item-description">ID of the 'edit slide' tab for the Presenter</div>
  6371. </dd>
  6372. <dt class="field">
  6373. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6374. <span class="const-title">SLOODLE_PRESENTER_TAB_IMPORT_SLIDES</span>
  6375. </dt>
  6376. <dd class="index-item-body">
  6377. <div class="index-item-details"><a href="sloodle/_view---presenter.php.html#defineSLOODLE_PRESENTER_TAB_IMPORT_SLIDES">SLOODLE_PRESENTER_TAB_IMPORT_SLIDES</a> in presenter.php</div>
  6378. <div class="index-item-description">ID of the 'import slides' tab for the Presenter</div>
  6379. </dd>
  6380. <dt class="field">
  6381. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6382. <span class="const-title">SLOODLE_PRESENTER_TAB_VIEW</span>
  6383. </dt>
  6384. <dd class="index-item-body">
  6385. <div class="index-item-details"><a href="sloodle/_view---presenter.php.html#defineSLOODLE_PRESENTER_TAB_VIEW">SLOODLE_PRESENTER_TAB_VIEW</a> in presenter.php</div>
  6386. <div class="index-item-description">ID of the 'view' tab for the Presenter.</div>
  6387. </dd>
  6388. <dt class="field">
  6389. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6390. <span class="method-title">sloodle_print_access_level_options</span>
  6391. </dt>
  6392. <dd class="index-item-body">
  6393. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_print_access_level_options">sloodle_print_access_level_options()</a> in general.php</div>
  6394. <div class="index-item-description">Outputs the standard form elements for access levels in object configuration.</div>
  6395. </dd>
  6396. <dt class="field">
  6397. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6398. <span class="method-title">sloodle_print_recent_activity</span>
  6399. </dt>
  6400. <dd class="index-item-body">
  6401. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_print_recent_activity">sloodle_print_recent_activity()</a> in lib.php</div>
  6402. <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>
  6403. </dd>
  6404. <dt class="field">
  6405. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6406. <span class="method-title">sloodle_process_login_notifications</span>
  6407. </dt>
  6408. <dd class="index-item-body">
  6409. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_process_login_notifications">sloodle_process_login_notifications()</a> in general.php</div>
  6410. <div class="index-item-description">Processes pending login notifications, up to a certain limit.</div>
  6411. </dd>
  6412. <dt class="field">
  6413. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6414. <span class="method-title">sloodle_process_options</span>
  6415. </dt>
  6416. <dd class="index-item-body">
  6417. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_process_options">sloodle_process_options()</a> in lib.php</div>
  6418. <div class="index-item-description">Processes the module configuration options prior to saving them.</div>
  6419. </dd>
  6420. <dt class="field">
  6421. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6422. <span class="method-title">sloodle_random_position_in_zone</span>
  6423. </dt>
  6424. <dd class="index-item-body">
  6425. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_random_position_in_zone">sloodle_random_position_in_zone()</a> in general.php</div>
  6426. <div class="index-item-description">Generates a random position within a cuboid zone of the specified size.</div>
  6427. </dd>
  6428. <dt class="field">
  6429. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6430. <span class="method-title">sloodle_random_prim_password</span>
  6431. </dt>
  6432. <dd class="index-item-body">
  6433. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_random_prim_password">sloodle_random_prim_password()</a> in general.php</div>
  6434. <div class="index-item-description">Generates a random prim password (7 to 9 digit number).</div>
  6435. </dd>
  6436. <dt class="field">
  6437. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6438. <span class="method-title">sloodle_random_security_token</span>
  6439. </dt>
  6440. <dd class="index-item-body">
  6441. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_random_security_token">sloodle_random_security_token()</a> in general.php</div>
  6442. <div class="index-item-description">Generates a random login security token.</div>
  6443. </dd>
  6444. <dt class="field">
  6445. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6446. <span class="method-title">sloodle_random_web_password</span>
  6447. </dt>
  6448. <dd class="index-item-body">
  6449. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_random_web_password">sloodle_random_web_password()</a> in general.php</div>
  6450. <div class="index-item-description">Generates a random web password Uses mixed-case letters and numbers to generate a random 8-character string.</div>
  6451. </dd>
  6452. <dt class="field">
  6453. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6454. <span class="method-title">sloodle_required_param</span>
  6455. </dt>
  6456. <dd class="index-item-body">
  6457. <div class="index-item-details"><a href="sloodle/_lib---io.php.html#functionsloodle_required_param">sloodle_required_param()</a> in io.php</div>
  6458. <div class="index-item-description">Obtains a named HTTP request parameter, and terminates script with an error message if it was not provided.</div>
  6459. </dd>
  6460. <dt class="field">
  6461. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6462. <span class="method-title">sloodle_require_login_no_guest</span>
  6463. </dt>
  6464. <dd class="index-item-body">
  6465. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_require_login_no_guest">sloodle_require_login_no_guest()</a> in general.php</div>
  6466. <div class="index-item-description">Force the user to login, but reject guest logins.</div>
  6467. </dd>
  6468. <dt class="field">
  6469. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6470. <span class="method-title">sloodle_round_vector</span>
  6471. </dt>
  6472. <dd class="index-item-body">
  6473. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_round_vector">sloodle_round_vector()</a> in general.php</div>
  6474. <div class="index-item-description">Rounds the specified 3d vector integer values.</div>
  6475. </dd>
  6476. <dt class="field">
  6477. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6478. <span class="method-title">sloodle_scale_used</span>
  6479. </dt>
  6480. <dd class="index-item-body">
  6481. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_scale_used">sloodle_scale_used()</a> in lib.php</div>
  6482. <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>
  6483. </dd>
  6484. <dt class="field">
  6485. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6486. <span class="method-title">sloodle_send_login_notification</span>
  6487. </dt>
  6488. <dd class="index-item-body">
  6489. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_send_login_notification">sloodle_send_login_notification()</a> in general.php</div>
  6490. <div class="index-item-description">Send a login notification.</div>
  6491. </dd>
  6492. <dt class="field">
  6493. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6494. <span class="method-title">sloodle_send_xmlrpc_message</span>
  6495. </dt>
  6496. <dd class="index-item-body">
  6497. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_send_xmlrpc_message">sloodle_send_xmlrpc_message()</a> in general.php</div>
  6498. <div class="index-item-description">Sends an XMLRPC message into Second Life.</div>
  6499. </dd>
  6500. <dt class="field">
  6501. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6502. <span class="const-title">SLOODLE_SERVER_ACCESS_LEVEL_COURSE</span>
  6503. </dt>
  6504. <dd class="index-item-body">
  6505. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_SERVER_ACCESS_LEVEL_COURSE">SLOODLE_SERVER_ACCESS_LEVEL_COURSE</a> in sl_config.php</div>
  6506. <div class="index-item-description">Indicates that only those registered and enrolled in a specific course may access a server resource.</div>
  6507. </dd>
  6508. <dt class="field">
  6509. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6510. <span class="const-title">SLOODLE_SERVER_ACCESS_LEVEL_PUBLIC</span>
  6511. </dt>
  6512. <dd class="index-item-body">
  6513. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_SERVER_ACCESS_LEVEL_PUBLIC">SLOODLE_SERVER_ACCESS_LEVEL_PUBLIC</a> in sl_config.php</div>
  6514. <div class="index-item-description">Indicates that anybody may access a server resource (still requires an authenticated request).</div>
  6515. </dd>
  6516. <dt class="field">
  6517. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6518. <span class="const-title">SLOODLE_SERVER_ACCESS_LEVEL_SITE</span>
  6519. </dt>
  6520. <dd class="index-item-body">
  6521. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_SERVER_ACCESS_LEVEL_SITE">SLOODLE_SERVER_ACCESS_LEVEL_SITE</a> in sl_config.php</div>
  6522. <div class="index-item-description">Indicates that only those registered on the site may access a server resource.</div>
  6523. </dd>
  6524. <dt class="field">
  6525. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6526. <span class="const-title">SLOODLE_SERVER_ACCESS_LEVEL_STAFF</span>
  6527. </dt>
  6528. <dd class="index-item-body">
  6529. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_SERVER_ACCESS_LEVEL_STAFF">SLOODLE_SERVER_ACCESS_LEVEL_STAFF</a> in sl_config.php</div>
  6530. <div class="index-item-description">Indicates that only those with Sloodle staff status on a course may access a server resource.</div>
  6531. </dd>
  6532. <dt class="field">
  6533. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6534. <span class="method-title">sloodle_set_config</span>
  6535. </dt>
  6536. <dd class="index-item-body">
  6537. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_set_config">sloodle_set_config()</a> in general.php</div>
  6538. <div class="index-item-description">Sets a Sloodle configuration value.</div>
  6539. </dd>
  6540. <dt class="field">
  6541. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6542. <span class="method-title">sloodle_text_email</span>
  6543. </dt>
  6544. <dd class="index-item-body">
  6545. <div class="index-item-details"><a href="sloodle/_lib---mail.php.html#functionsloodle_text_email">sloodle_text_email()</a> in mail.php</div>
  6546. <div class="index-item-description">Send an email to a specific address, using the Moodle system.</div>
  6547. </dd>
  6548. <dt class="field">
  6549. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6550. <span class="method-title">sloodle_text_email_sl</span>
  6551. </dt>
  6552. <dd class="index-item-body">
  6553. <div class="index-item-details"><a href="sloodle/_lib---mail.php.html#functionsloodle_text_email_sl">sloodle_text_email_sl()</a> in mail.php</div>
  6554. <div class="index-item-description">Send an email to an object in SL.</div>
  6555. </dd>
  6556. <dt class="field">
  6557. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6558. <span class="const-title">SLOODLE_TYPE_CTRL</span>
  6559. </dt>
  6560. <dd class="index-item-body">
  6561. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_TYPE_CTRL">SLOODLE_TYPE_CTRL</a> in sl_config.php</div>
  6562. </dd>
  6563. <dt class="field">
  6564. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6565. <span class="const-title">SLOODLE_TYPE_DISTRIB</span>
  6566. </dt>
  6567. <dd class="index-item-body">
  6568. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_TYPE_DISTRIB">SLOODLE_TYPE_DISTRIB</a> in sl_config.php</div>
  6569. </dd>
  6570. <dt class="field">
  6571. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6572. <span class="const-title">SLOODLE_TYPE_IBANK</span>
  6573. </dt>
  6574. <dd class="index-item-body">
  6575. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_TYPE_IBANK">SLOODLE_TYPE_IBANK</a> in sl_config.php</div>
  6576. </dd>
  6577. <dt class="field">
  6578. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6579. <span class="const-title">SLOODLE_TYPE_MAP</span>
  6580. </dt>
  6581. <dd class="index-item-body">
  6582. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_TYPE_MAP">SLOODLE_TYPE_MAP</a> in sl_config.php</div>
  6583. </dd>
  6584. <dt class="field">
  6585. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6586. <span class="const-title">SLOODLE_TYPE_PRESENTER</span>
  6587. </dt>
  6588. <dd class="index-item-body">
  6589. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_TYPE_PRESENTER">SLOODLE_TYPE_PRESENTER</a> in sl_config.php</div>
  6590. </dd>
  6591. <dt class="field">
  6592. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6593. <span class="method-title">sloodle_update_instance</span>
  6594. </dt>
  6595. <dd class="index-item-body">
  6596. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_update_instance">sloodle_update_instance()</a> in lib.php</div>
  6597. <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>
  6598. </dd>
  6599. <dt class="field">
  6600. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6601. <span class="method-title">sloodle_user_complete</span>
  6602. </dt>
  6603. <dd class="index-item-body">
  6604. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_user_complete">sloodle_user_complete()</a> in lib.php</div>
  6605. <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>
  6606. </dd>
  6607. <dt class="field">
  6608. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6609. <span class="method-title">sloodle_user_outline</span>
  6610. </dt>
  6611. <dd class="index-item-body">
  6612. <div class="index-item-details"><a href="sloodle/_lib.php.html#functionsloodle_user_outline">sloodle_user_outline()</a> in lib.php</div>
  6613. <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>
  6614. </dd>
  6615. <dt class="field">
  6616. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6617. <span class="method-title">sloodle_validate_prim_password</span>
  6618. </dt>
  6619. <dd class="index-item-body">
  6620. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_validate_prim_password">sloodle_validate_prim_password()</a> in general.php</div>
  6621. <div class="index-item-description">Checks if the given prim password is valid.</div>
  6622. </dd>
  6623. <dt class="field">
  6624. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6625. <span class="method-title">sloodle_validate_prim_password_verbose</span>
  6626. </dt>
  6627. <dd class="index-item-body">
  6628. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_validate_prim_password_verbose">sloodle_validate_prim_password_verbose()</a> in general.php</div>
  6629. <div class="index-item-description">Checks if the given prim password is valid, and provides feedback.</div>
  6630. </dd>
  6631. <dt class="field">
  6632. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6633. <span class="method-title">sloodle_vector_to_array</span>
  6634. </dt>
  6635. <dd class="index-item-body">
  6636. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_vector_to_array">sloodle_vector_to_array()</a> in general.php</div>
  6637. <div class="index-item-description">Converts a string vector to an array vector.</div>
  6638. </dd>
  6639. <dt class="field">
  6640. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6641. <span class="const-title">SLOODLE_VERSION</span>
  6642. </dt>
  6643. <dd class="index-item-body">
  6644. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_VERSION">SLOODLE_VERSION</a> in sl_config.php</div>
  6645. <div class="index-item-description">The Sloodle version number.</div>
  6646. </dd>
  6647. <dt class="field">
  6648. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  6649. <span class="method-title">sloodle_view</span>
  6650. </dt>
  6651. <dd class="index-item-body">
  6652. <div class="index-item-details"><a href="sloodle/_lib---general.php.html#functionsloodle_view">sloodle_view()</a> in general.php</div>
  6653. <div class="index-item-description">Render a page viewing a particular feature, or a SLOODLE module.</div>
  6654. </dd>
  6655. <dt class="field">
  6656. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6657. sloodle_view_controller
  6658. </dt>
  6659. <dd class="index-item-body">
  6660. <div class="index-item-details"><a href="sloodle/sloodle_view_controller.html">sloodle_view_controller</a> in controller.php</div>
  6661. <div class="index-item-description">The base class for viewing a SLOODLE Controller module.</div>
  6662. </dd>
  6663. <dt class="field">
  6664. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  6665. <span class="method-title">sloodle_view_controller</span>
  6666. </dt>
  6667. <dd class="index-item-body">
  6668. <div class="index-item-details"><a href="sloodle/sloodle_view_controller.html#methodsloodle_view_controller">sloodle_view_controller::sloodle_view_controller()</a> in controller.php</div>
  6669. <div class="index-item-description">Constructor.</div>
  6670. </dd>
  6671. <dt class="field">
  6672. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6673. sloodle_view_course
  6674. </dt>
  6675. <dd class="index-item-body">
  6676. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html">sloodle_view_course</a> in course.php</div>
  6677. <div class="index-item-description">Class for rendering a view of SLOODLE course information.</div>
  6678. </dd>
  6679. <dt class="field">
  6680. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  6681. <span class="method-title">sloodle_view_course</span>
  6682. </dt>
  6683. <dd class="index-item-body">
  6684. <div class="index-item-details"><a href="sloodle/sloodle_view_course.html#methodsloodle_view_course">sloodle_view_course::sloodle_view_course()</a> in course.php</div>
  6685. <div class="index-item-description">Constructor.</div>
  6686. </dd>
  6687. <dt class="field">
  6688. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6689. sloodle_view_distributor
  6690. </dt>
  6691. <dd class="index-item-body">
  6692. <div class="index-item-details"><a href="sloodle/sloodle_view_distributor.html">sloodle_view_distributor</a> in distributor.php</div>
  6693. <div class="index-item-description">Class for rendering a view of a Distributor module in Moodle.</div>
  6694. </dd>
  6695. <dt class="field">
  6696. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6697. sloodle_view_ibank
  6698. </dt>
  6699. <dd class="index-item-body">
  6700. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html">sloodle_view_ibank</a> in ibank.php</div>
  6701. <div class="index-item-description">Class for rendering a view of a Distributor module in Moodle.</div>
  6702. </dd>
  6703. <dt class="field">
  6704. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  6705. <span class="method-title">sloodle_view_ibank</span>
  6706. </dt>
  6707. <dd class="index-item-body">
  6708. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#methodsloodle_view_ibank">sloodle_view_ibank::sloodle_view_ibank()</a> in ibank.php</div>
  6709. <div class="index-item-description">Constructor.</div>
  6710. </dd>
  6711. <dt class="field">
  6712. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6713. sloodle_view_map
  6714. </dt>
  6715. <dd class="index-item-body">
  6716. <div class="index-item-details"><a href="sloodle/sloodle_view_map.html">sloodle_view_map</a> in map.php</div>
  6717. <div class="index-item-description">Class for rendering a view of a Map module in Moodle.</div>
  6718. </dd>
  6719. <dt class="field">
  6720. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  6721. <span class="method-title">sloodle_view_map</span>
  6722. </dt>
  6723. <dd class="index-item-body">
  6724. <div class="index-item-details"><a href="sloodle/sloodle_view_map.html#methodsloodle_view_map">sloodle_view_map::sloodle_view_map()</a> in map.php</div>
  6725. <div class="index-item-description">Constructor.</div>
  6726. </dd>
  6727. <dt class="field">
  6728. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  6729. <span class="method-title">sloodle_view_presenter</span>
  6730. </dt>
  6731. <dd class="index-item-body">
  6732. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html#methodsloodle_view_presenter">sloodle_view_presenter::sloodle_view_presenter()</a> in presenter.php</div>
  6733. <div class="index-item-description">Constructor.</div>
  6734. </dd>
  6735. <dt class="field">
  6736. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6737. sloodle_view_presenter
  6738. </dt>
  6739. <dd class="index-item-body">
  6740. <div class="index-item-details"><a href="sloodle/sloodle_view_presenter.html">sloodle_view_presenter</a> in presenter.php</div>
  6741. <div class="index-item-description">Class for rendering a view of a Presenter module in Moodle.</div>
  6742. </dd>
  6743. <dt class="field">
  6744. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  6745. <span class="method-title">sloodle_view_user</span>
  6746. </dt>
  6747. <dd class="index-item-body">
  6748. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#methodsloodle_view_user">sloodle_view_user::sloodle_view_user()</a> in user.php</div>
  6749. <div class="index-item-description">Constructor.</div>
  6750. </dd>
  6751. <dt class="field">
  6752. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6753. sloodle_view_user
  6754. </dt>
  6755. <dd class="index-item-body">
  6756. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html">sloodle_view_user</a> in user.php</div>
  6757. <div class="index-item-description">Class for rendering a view of SLOODLE user information.</div>
  6758. </dd>
  6759. <dt class="field">
  6760. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6761. sloodle_view_users
  6762. </dt>
  6763. <dd class="index-item-body">
  6764. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html">sloodle_view_users</a> in users.php</div>
  6765. <div class="index-item-description">Class for rendering a view of SLOODLE users.</div>
  6766. </dd>
  6767. <dt class="field">
  6768. <img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
  6769. <span class="method-title">sloodle_view_users</span>
  6770. </dt>
  6771. <dd class="index-item-body">
  6772. <div class="index-item-details"><a href="sloodle/sloodle_view_users.html#methodsloodle_view_users">sloodle_view_users::sloodle_view_users()</a> in users.php</div>
  6773. <div class="index-item-description">Constructor.</div>
  6774. </dd>
  6775. <dt class="field">
  6776. <img src="media/images/Constant.png" alt="Constant" title="Constant" /></title>
  6777. <span class="const-title">SLOODLE_WWWROOT</span>
  6778. </dt>
  6779. <dd class="index-item-body">
  6780. <div class="index-item-details"><a href="sloodle/_sl_config.php.html#defineSLOODLE_WWWROOT">SLOODLE_WWWROOT</a> in sl_config.php</div>
  6781. <div class="index-item-description">The path for browsing to the root of the Sloodle folder.</div>
  6782. </dd>
  6783. <dt class="field">
  6784. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  6785. <span class="include-title">sl_config.php</span>
  6786. </dt>
  6787. <dd class="index-item-body">
  6788. <div class="index-item-details"><a href="sloodle/_sl_config.php.html">sl_config.php</a> in sl_config.php</div>
  6789. </dd>
  6790. <dt class="field">
  6791. <img src="media/images/Class.png" alt="Class" title="Class" /></title>
  6792. stipendGiverObject
  6793. </dt>
  6794. <dd class="index-item-body">
  6795. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html">stipendGiverObject</a> in stipendgiver_object.php</div>
  6796. </dd>
  6797. <dt class="field">
  6798. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  6799. <span class="method-title">StipendGiverObject</span>
  6800. </dt>
  6801. <dd class="index-item-body">
  6802. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodStipendGiverObject">stipendGiverObject::StipendGiverObject()</a> in stipendgiver_object.php</div>
  6803. </dd>
  6804. <dt class="field">
  6805. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  6806. <span class="method-title">submit</span>
  6807. </dt>
  6808. <dd class="index-item-body">
  6809. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methodsubmit">SloodleModuleSloodleObject::submit()</a> in module_sloodleobject.php</div>
  6810. <div class="index-item-description">Add a new submission (or replace an existing one).</div>
  6811. </dd>
  6812. </dl>
  6813. <a name="t"></a>
  6814. <div class="index-letter-section">
  6815. <div style="float: left" class="index-letter-title">t</div>
  6816. <div style="float: right"><a href="#top">top</a></div>
  6817. <div style="clear: both"></div>
  6818. </div>
  6819. <dl>
  6820. <dt class="field">
  6821. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6822. <span class="var-title">$text</span>
  6823. </dt>
  6824. <dd class="index-item-body">
  6825. <div class="index-item-details"><a href="sloodle/SloodleChoiceOption.html#var$text">SloodleChoiceOption::$text</a> in module_choice.php</div>
  6826. <div class="index-item-description">The text of this option.</div>
  6827. </dd>
  6828. <dt class="field">
  6829. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6830. <span class="var-title">$timemodified</span>
  6831. </dt>
  6832. <dd class="index-item-body">
  6833. <div class="index-item-details"><a href="sloodle/SloodleChoiceOption.html#var$timemodified">SloodleChoiceOption::$timemodified</a> in module_choice.php</div>
  6834. <div class="index-item-description">Timestamp of when this option was last modified.</div>
  6835. </dd>
  6836. <dt class="field">
  6837. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6838. <span class="var-title">$timestamp</span>
  6839. </dt>
  6840. <dd class="index-item-body">
  6841. <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#var$timestamp">SloodleChatMessage::$timestamp</a> in module_chat.php</div>
  6842. <div class="index-item-description">Timestamp of the message.</div>
  6843. </dd>
  6844. <dt class="field">
  6845. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6846. <span class="var-title">$timestamp_created</span>
  6847. </dt>
  6848. <dd class="index-item-body">
  6849. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#var$timestamp_created">SloodleBlogPost::$timestamp_created</a> in module_blog.php</div>
  6850. <div class="index-item-description">Timestamp of when this message was created.</div>
  6851. </dd>
  6852. <dt class="field">
  6853. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6854. <span class="var-title">$timestamp_modified</span>
  6855. </dt>
  6856. <dd class="index-item-body">
  6857. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#var$timestamp_modified">SloodleBlogPost::$timestamp_modified</a> in module_blog.php</div>
  6858. <div class="index-item-description">Timestamp of when this message was last modified.</div>
  6859. </dd>
  6860. <dt class="field">
  6861. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6862. <span class="var-title">$timeupdated</span>
  6863. </dt>
  6864. <dd class="index-item-body">
  6865. <div class="index-item-details"><a href="sloodle/SloodleUserObject.html#var$timeupdated">SloodleUserObject::$timeupdated</a> in user_object.php</div>
  6866. <div class="index-item-description">Timestamp for when this object was last used.</div>
  6867. </dd>
  6868. <dt class="field">
  6869. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  6870. <span class="var-title">$tracking_code</span>
  6871. </dt>
  6872. <dd class="index-item-body">
  6873. <div class="index-item-details"><a href="sloodle/SloodleResponse.html#var$tracking_code">SloodleResponse::$tracking_code</a> in io.php</div>
  6874. <div class="index-item-description">Tracking code of the request.</div>
  6875. </dd>
  6876. <dt class="field">
  6877. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6878. <span class="var-title">$transactionRecords</span>
  6879. </dt>
  6880. <dd class="index-item-body">
  6881. <div class="index-item-details"><a href="sloodle/iPointBank.html#var$transactionRecords">iPointBank::$transactionRecords</a> in ipointbank_object.php</div>
  6882. </dd>
  6883. <dt class="field">
  6884. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  6885. <span class="var-title">$transactionRecords</span>
  6886. </dt>
  6887. <dd class="index-item-body">
  6888. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$transactionRecords">sloodle_view_ibank::$transactionRecords</a> in ibank.php</div>
  6889. <div class="index-item-description">A List of records of the transactions for this stipend</div>
  6890. </dd>
  6891. <dt class="field">
  6892. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6893. <span class="var-title">$type</span>
  6894. </dt>
  6895. <dd class="index-item-body">
  6896. <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$type">SloodleActiveObject::$type</a> in active_object.php</div>
  6897. <div class="index-item-description">The type of this object.</div>
  6898. </dd>
  6899. <dt class="field">
  6900. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6901. <span class="var-title">$type</span>
  6902. </dt>
  6903. <dd class="index-item-body">
  6904. <div class="index-item-details"><a href="sloodle/SloodlePresenterSlide.html#var$type">SloodlePresenterSlide::$type</a> in module_presenter.php</div>
  6905. <div class="index-item-description">The type of this slide. This will be the ID of a plugin, or it may be a legacy type, 'web', 'image', or 'video'.</div>
  6906. </dd>
  6907. </dl>
  6908. <a name="u"></a>
  6909. <div class="index-letter-section">
  6910. <div style="float: left" class="index-letter-title">u</div>
  6911. <div style="float: right"><a href="#top">top</a></div>
  6912. <div style="clear: both"></div>
  6913. </div>
  6914. <dl>
  6915. <dt class="field">
  6916. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6917. <span class="var-title">$user</span>
  6918. </dt>
  6919. <dd class="index-item-body">
  6920. <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$user">SloodleActiveObject::$user</a> in active_object.php</div>
  6921. <div class="index-item-description">The user who authorised this object.</div>
  6922. </dd>
  6923. <dt class="field">
  6924. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6925. <span class="var-title">$user</span>
  6926. </dt>
  6927. <dd class="index-item-body">
  6928. <div class="index-item-details"><a href="sloodle/SloodleSession.html#var$user">SloodleSession::$user</a> in sloodle_session.php</div>
  6929. <div class="index-item-description">Current user information.</div>
  6930. </dd>
  6931. <dt class="field">
  6932. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6933. <span class="var-title">$user</span>
  6934. </dt>
  6935. <dd class="index-item-body">
  6936. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#var$user">SloodleBlogPost::$user</a> in module_blog.php</div>
  6937. <div class="index-item-description">The user who wrote this message.</div>
  6938. </dd>
  6939. <dt class="field">
  6940. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6941. <span class="var-title">$user</span>
  6942. </dt>
  6943. <dd class="index-item-body">
  6944. <div class="index-item-details"><a href="sloodle/SloodleChatMessage.html#var$user">SloodleChatMessage::$user</a> in module_chat.php</div>
  6945. <div class="index-item-description">The user who wrote this message.</div>
  6946. </dd>
  6947. <dt class="field">
  6948. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  6949. <span class="var-title">$userconfirmed</span>
  6950. </dt>
  6951. <dd class="index-item-body">
  6952. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$userconfirmed">sloodle_view_user::$userconfirmed</a> in user.php</div>
  6953. <div class="index-item-description">Indicates a confirmation for certain actions, such as deletion, supplied by request parameter.</div>
  6954. </dd>
  6955. <dt class="field">
  6956. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  6957. <span class="var-title">$userList</span>
  6958. </dt>
  6959. <dd class="index-item-body">
  6960. <div class="index-item-details"><a href="sloodle/sloodle_view_ibank.html#var$userList">sloodle_view_ibank::$userList</a> in ibank.php</div>
  6961. <div class="index-item-description">A List of all the students in this course</div>
  6962. </dd>
  6963. <dt class="field">
  6964. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6965. <span class="var-title">$userList</span>
  6966. </dt>
  6967. <dd class="index-item-body">
  6968. <div class="index-item-details"><a href="sloodle/sloodleCourseObj.html#var$userList">sloodleCourseObj::$userList</a> in sloodlecourseobject.php</div>
  6969. </dd>
  6970. <dt class="field">
  6971. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  6972. <span class="var-title">$user_data</span>
  6973. </dt>
  6974. <dd class="index-item-body">
  6975. <div class="index-item-details"><a href="sloodle/SloodleUser.html#var$user_data">SloodleUser::$user_data</a> in user.php</div>
  6976. <div class="index-item-description">Internal only - user data. (i.e. VLE user) In Moodle, corresponds to a record from the 'user' table.</div>
  6977. </dd>
  6978. <dt class="field">
  6979. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  6980. <span class="var-title">$uuid</span>
  6981. </dt>
  6982. <dd class="index-item-body">
  6983. <div class="index-item-details"><a href="sloodle/SloodleActiveObject.html#var$uuid">SloodleActiveObject::$uuid</a> in active_object.php</div>
  6984. <div class="index-item-description">The UUID of this object.</div>
  6985. </dd>
  6986. <dt class="field">
  6987. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  6988. <span class="include-title">upload.php</span>
  6989. </dt>
  6990. <dd class="index-item-body">
  6991. <div class="index-item-details"><a href="sloodle/_lib---jquery---upload.php.html">upload.php</a> in upload.php</div>
  6992. </dd>
  6993. <dt class="field">
  6994. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  6995. <span class="include-title">upload.php</span>
  6996. </dt>
  6997. <dd class="index-item-body">
  6998. <div class="index-item-details"><a href="sloodle/_lib---multiplefileupload---upload.php.html">upload.php</a> in upload.php</div>
  6999. </dd>
  7000. <dt class="field">
  7001. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7002. <span class="include-title">user.php</span>
  7003. </dt>
  7004. <dd class="index-item-body">
  7005. <div class="index-item-details"><a href="sloodle/_lib---user.php.html">user.php</a> in user.php</div>
  7006. </dd>
  7007. <dt class="field">
  7008. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7009. <span class="include-title">user_object.php</span>
  7010. </dt>
  7011. <dd class="index-item-body">
  7012. <div class="index-item-details"><a href="sloodle/_lib---user_object.php.html">user_object.php</a> in user_object.php</div>
  7013. </dd>
  7014. <dt class="field">
  7015. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7016. <span class="include-title">user_object_auth.php</span>
  7017. </dt>
  7018. <dd class="index-item-body">
  7019. <div class="index-item-details"><a href="sloodle/_login---user_object_auth.php.html">user_object_auth.php</a> in user_object_auth.php</div>
  7020. </dd>
  7021. <dt class="field">
  7022. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7023. <span class="include-title">user_object_linker.php</span>
  7024. </dt>
  7025. <dd class="index-item-body">
  7026. <div class="index-item-details"><a href="sloodle/_login---user_object_linker.php.html">user_object_linker.php</a> in user_object_linker.php</div>
  7027. </dd>
  7028. <dt class="field">
  7029. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7030. <span class="method-title">update</span>
  7031. </dt>
  7032. <dd class="index-item-body">
  7033. <div class="index-item-details"><a href="sloodle/SloodleLayout.html#methodupdate">SloodleLayout::update()</a> in layout_profile.php</div>
  7034. </dd>
  7035. <dt class="field">
  7036. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7037. <span class="method-title">update</span>
  7038. </dt>
  7039. <dd class="index-item-body">
  7040. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntry.html#methodupdate">SloodleLayoutEntry::update()</a> in layout_profile.php</div>
  7041. </dd>
  7042. <dt class="field">
  7043. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7044. <span class="method-title">update</span>
  7045. </dt>
  7046. <dd class="index-item-body">
  7047. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#methodupdate">SloodleLayoutEntryConfig::update()</a> in layout_profile.php</div>
  7048. </dd>
  7049. <dt class="field">
  7050. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7051. <span class="method-title">update</span>
  7052. </dt>
  7053. <dd class="index-item-body">
  7054. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodupdate">iPointBank::update()</a> in ipointbank_object.php</div>
  7055. </dd>
  7056. <dt class="field">
  7057. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7058. <span class="method-title">updateTransaction</span>
  7059. </dt>
  7060. <dd class="index-item-body">
  7061. <div class="index-item-details"><a href="sloodle/iPointBank.html#methodupdateTransaction">iPointBank::updateTransaction()</a> in ipointbank_object.php</div>
  7062. </dd>
  7063. <dt class="field">
  7064. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7065. <span class="method-title">updateUserList</span>
  7066. </dt>
  7067. <dd class="index-item-body">
  7068. <div class="index-item-details"><a href="sloodle/stipendGiverObject.html#methodupdateUserList">stipendGiverObject::updateUserList()</a> in stipendgiver_object.php</div>
  7069. </dd>
  7070. <dt class="field">
  7071. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7072. <span class="method-title">update_object_type</span>
  7073. </dt>
  7074. <dd class="index-item-body">
  7075. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodupdate_object_type">SloodleController::update_object_type()</a> in controller.php</div>
  7076. <div class="index-item-description">Updates the type of a given active object to the specified type.</div>
  7077. </dd>
  7078. <dt class="field">
  7079. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7080. <span class="method-title">user_can_submit</span>
  7081. </dt>
  7082. <dd class="index-item-body">
  7083. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methoduser_can_submit">SloodleModuleSloodleObject::user_can_submit()</a> in module_sloodleobject.php</div>
  7084. <div class="index-item-description">Checks if the specified user is permitted to submit to this assignment.</div>
  7085. </dd>
  7086. <dt class="field">
  7087. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7088. <span class="method-title">user_can_view</span>
  7089. </dt>
  7090. <dd class="index-item-body">
  7091. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methoduser_can_view">SloodleModuleSloodleObject::user_can_view()</a> in module_sloodleobject.php</div>
  7092. <div class="index-item-description">Checks if the specified user is permitted to view submissions to this assignment.</div>
  7093. </dd>
  7094. <dt class="field">
  7095. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7096. <span class="method-title">user_can_write</span>
  7097. </dt>
  7098. <dd class="index-item-body">
  7099. <div class="index-item-details"><a href="sloodle/SloodleModuleBlog.html#methoduser_can_write">SloodleModuleBlog::user_can_write()</a> in module_blog.php</div>
  7100. <div class="index-item-description">Checks if the currently logged-in user has permission to create blog entries.</div>
  7101. </dd>
  7102. <dt class="field">
  7103. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7104. <span class="method-title">user_has_submitted</span>
  7105. </dt>
  7106. <dd class="index-item-body">
  7107. <div class="index-item-details"><a href="sloodle/SloodleModuleSloodleObject.html#methoduser_has_submitted">SloodleModuleSloodleObject::user_has_submitted()</a> in module_sloodleobject.php</div>
  7108. <div class="index-item-description">Checks if the specified user has submitted to this assignment already.</div>
  7109. </dd>
  7110. <dt class="field">
  7111. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7112. <span class="include-title">user.php</span>
  7113. </dt>
  7114. <dd class="index-item-body">
  7115. <div class="index-item-details"><a href="sloodle/_view---user.php.html">user.php</a> in user.php</div>
  7116. </dd>
  7117. <dt class="field">
  7118. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7119. <span class="include-title">users.php</span>
  7120. </dt>
  7121. <dd class="index-item-body">
  7122. <div class="index-item-details"><a href="sloodle/_view---users.php.html">users.php</a> in users.php</div>
  7123. </dd>
  7124. </dl>
  7125. <a name="v"></a>
  7126. <div class="index-letter-section">
  7127. <div style="float: left" class="index-letter-title">v</div>
  7128. <div style="float: right"><a href="#top">top</a></div>
  7129. <div style="clear: both"></div>
  7130. </div>
  7131. <dl>
  7132. <dt class="field">
  7133. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  7134. <span class="var-title">$value</span>
  7135. </dt>
  7136. <dd class="index-item-body">
  7137. <div class="index-item-details"><a href="sloodle/SloodleLayoutEntryConfig.html#var$value">SloodleLayoutEntryConfig::$value</a> in layout_profile.php</div>
  7138. </dd>
  7139. <dt class="field">
  7140. <img src="media/images/PrivateVariable.png" alt="Variable" title="Variable" /></title>
  7141. <span class="var-title">$viewingself</span>
  7142. </dt>
  7143. <dd class="index-item-body">
  7144. <div class="index-item-details"><a href="sloodle/sloodle_view_user.html#var$viewingself">sloodle_view_user::$viewingself</a> in user.php</div>
  7145. <div class="index-item-description">Is the user viewing their own profile?</div>
  7146. </dd>
  7147. <dt class="field">
  7148. <img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
  7149. <span class="var-title">$visibility</span>
  7150. </dt>
  7151. <dd class="index-item-body">
  7152. <div class="index-item-details"><a href="sloodle/SloodleBlogPost.html#var$visibility">SloodleBlogPost::$visibility</a> in module_blog.php</div>
  7153. <div class="index-item-description">The visibility of this post.</div>
  7154. </dd>
  7155. <dt class="field">
  7156. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7157. <span class="include-title">video.php</span>
  7158. </dt>
  7159. <dd class="index-item-body">
  7160. <div class="index-item-details"><a href="sloodle/_plugin---presenter---video.php.html">video.php</a> in video.php</div>
  7161. </dd>
  7162. <dt class="field">
  7163. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7164. <span class="method-title">validate_avatar</span>
  7165. </dt>
  7166. <dd class="index-item-body">
  7167. <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodvalidate_avatar">SloodleSession::validate_avatar()</a> in sloodle_session.php</div>
  7168. <div class="index-item-description">Validate the avatar specified in the request, to ensure it is registered to a Moodle account.</div>
  7169. </dd>
  7170. <dt class="field">
  7171. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7172. <span class="method-title">validate_ordering</span>
  7173. </dt>
  7174. <dd class="index-item-body">
  7175. <div class="index-item-details"><a href="sloodle/SloodleModulePresenter.html#methodvalidate_ordering">SloodleModulePresenter::validate_ordering()</a> in module_presenter.php</div>
  7176. <div class="index-item-description">Validates the ordering value of all entries in the presenter.</div>
  7177. </dd>
  7178. <dt class="field">
  7179. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7180. <span class="method-title">validate_user</span>
  7181. </dt>
  7182. <dd class="index-item-body">
  7183. <div class="index-item-details"><a href="sloodle/SloodleSession.html#methodvalidate_user">SloodleSession::validate_user()</a> in sloodle_session.php</div>
  7184. <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>
  7185. </dd>
  7186. <dt class="field">
  7187. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7188. <span class="method-title">validation</span>
  7189. </dt>
  7190. <dd class="index-item-body">
  7191. <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>
  7192. <div class="index-item-description">Validates the form data.</div>
  7193. </dd>
  7194. <dt class="field">
  7195. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7196. <span class="include-title">version.php</span>
  7197. </dt>
  7198. <dd class="index-item-body">
  7199. <div class="index-item-details"><a href="sloodle/_version.php.html">version.php</a> in version.php</div>
  7200. </dd>
  7201. <dt class="field">
  7202. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7203. <span class="include-title">version_linker.php</span>
  7204. </dt>
  7205. <dd class="index-item-body">
  7206. <div class="index-item-details"><a href="sloodle/_version_linker.php.html">version_linker.php</a> in version_linker.php</div>
  7207. </dd>
  7208. <dt class="field">
  7209. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7210. <span class="method-title">view</span>
  7211. </dt>
  7212. <dd class="index-item-body">
  7213. <div class="index-item-details"><a href="sloodle/sloodle_base_view.html#methodview">sloodle_base_view::view()</a> in base_view.php</div>
  7214. <div class="index-item-description">The main viewing function.</div>
  7215. </dd>
  7216. <dt class="field">
  7217. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7218. <span class="include-title">view.php</span>
  7219. </dt>
  7220. <dd class="index-item-body">
  7221. <div class="index-item-details"><a href="sloodle/_view.php.html">view.php</a> in view.php</div>
  7222. </dd>
  7223. <dt class="field">
  7224. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7225. <span class="include-title">view_course.php</span>
  7226. </dt>
  7227. <dd class="index-item-body">
  7228. <div class="index-item-details"><a href="sloodle/_view_course.php.html">view_course.php</a> in view_course.php</div>
  7229. </dd>
  7230. <dt class="field">
  7231. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7232. <span class="include-title">view_layout.php</span>
  7233. </dt>
  7234. <dd class="index-item-body">
  7235. <div class="index-item-details"><a href="sloodle/_view_layout.php.html">view_layout.php</a> in view_layout.php</div>
  7236. </dd>
  7237. </dl>
  7238. <a name="w"></a>
  7239. <div class="index-letter-section">
  7240. <div style="float: left" class="index-letter-title">w</div>
  7241. <div style="float: right"><a href="#top">top</a></div>
  7242. <div style="clear: both"></div>
  7243. </div>
  7244. <dl>
  7245. <dt class="field">
  7246. <img src="media/images/Page.png" alt="Page" title="Page" /></title>
  7247. <span class="include-title">web.php</span>
  7248. </dt>
  7249. <dd class="index-item-body">
  7250. <div class="index-item-details"><a href="sloodle/_plugin---presenter---web.php.html">web.php</a> in web.php</div>
  7251. </dd>
  7252. <dt class="field">
  7253. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7254. <span class="method-title">write</span>
  7255. </dt>
  7256. <dd class="index-item-body">
  7257. <div class="index-item-details"><a href="sloodle/SloodleCourse.html#methodwrite">SloodleCourse::write()</a> in course.php</div>
  7258. <div class="index-item-description">Writes current Sloodle course data back to the database.</div>
  7259. </dd>
  7260. <dt class="field">
  7261. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7262. <span class="method-title">write</span>
  7263. </dt>
  7264. <dd class="index-item-body">
  7265. <div class="index-item-details"><a href="sloodle/SloodleController.html#methodwrite">SloodleController::write()</a> in controller.php</div>
  7266. <div class="index-item-description">Updates the currently loaded entry in the database.</div>
  7267. </dd>
  7268. <dt class="field">
  7269. <img src="media/images/Method.png" alt="Method" title="Method" /></title>
  7270. <span class="method-title">write_avatar</span>
  7271. </dt>
  7272. <dd class="index-item-body">
  7273. <div class="index-item-details"><a href="sloodle/SloodleUser.html#methodwrite_avatar">SloodleUser::write_avatar()</a> in user.php</div>
  7274. <div class="index-item-description">Uses the current avatar data to update the database.</div>
  7275. </dd>
  7276. </dl>
  7277. <a name="x"></a>
  7278. <div class="index-letter-section">
  7279. <div style="float: left" class="index-letter-title">x</div>
  7280. <div style="float: right"><a href="#top">top</a></div>
  7281. <div style="clear: both"></div>
  7282. </div>
  7283. <dl>
  7284. <dt class="field">
  7285. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  7286. <span class="method-title">xForIndex</span>
  7287. </dt>
  7288. <dd class="index-item-body">
  7289. <div class="index-item-details"><a href="sloodle/_view_layout.php.html#functionxForIndex">xForIndex()</a> in view_layout.php</div>
  7290. </dd>
  7291. </dl>
  7292. <a name="y"></a>
  7293. <div class="index-letter-section">
  7294. <div style="float: left" class="index-letter-title">y</div>
  7295. <div style="float: right"><a href="#top">top</a></div>
  7296. <div style="clear: both"></div>
  7297. </div>
  7298. <dl>
  7299. <dt class="field">
  7300. <img src="media/images/Function.png" alt="Function" title="Function" /></title>
  7301. <span class="method-title">yForIndex</span>
  7302. </dt>
  7303. <dd class="index-item-body">
  7304. <div class="index-item-details"><a href="sloodle/_view_layout.php.html#functionyForIndex">yForIndex()</a> in view_layout.php</div>
  7305. </dd>
  7306. </dl>
  7307. <div class="index-letter-menu">
  7308. <a class="index-letter" href="elementindex_sloodle.html#a">a</a>
  7309. <a class="index-letter" href="elementindex_sloodle.html#b">b</a>
  7310. <a class="index-letter" href="elementindex_sloodle.html#c">c</a>
  7311. <a class="index-letter" href="elementindex_sloodle.html#d">d</a>
  7312. <a class="index-letter" href="elementindex_sloodle.html#e">e</a>
  7313. <a class="index-letter" href="elementindex_sloodle.html#f">f</a>
  7314. <a class="index-letter" href="elementindex_sloodle.html#g">g</a>
  7315. <a class="index-letter" href="elementindex_sloodle.html#h">h</a>
  7316. <a class="index-letter" href="elementindex_sloodle.html#i">i</a>
  7317. <a class="index-letter" href="elementindex_sloodle.html#l">l</a>
  7318. <a class="index-letter" href="elementindex_sloodle.html#m">m</a>
  7319. <a class="index-letter" href="elementindex_sloodle.html#n">n</a>
  7320. <a class="index-letter" href="elementindex_sloodle.html#o">o</a>
  7321. <a class="index-letter" href="elementindex_sloodle.html#p">p</a>
  7322. <a class="index-letter" href="elementindex_sloodle.html#q">q</a>
  7323. <a class="index-letter" href="elementindex_sloodle.html#r">r</a>
  7324. <a class="index-letter" href="elementindex_sloodle.html#s">s</a>
  7325. <a class="index-letter" href="elementindex_sloodle.html#t">t</a>
  7326. <a class="index-letter" href="elementindex_sloodle.html#u">u</a>
  7327. <a class="index-letter" href="elementindex_sloodle.html#v">v</a>
  7328. <a class="index-letter" href="elementindex_sloodle.html#w">w</a>
  7329. <a class="index-letter" href="elementindex_sloodle.html#x">x</a>
  7330. <a class="index-letter" href="elementindex_sloodle.html#y">y</a>
  7331. <a class="index-letter" href="elementindex_sloodle.html#_">_</a>
  7332. </div> </body>
  7333. </html>