| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743 | 
							- <?php
 
- /**
 
-  * Lists entities from an access collection
 
-  *
 
-  * @deprecated 1.8 Use elgg_list_entities_from_access_id()
 
-  *
 
-  * @return str
 
-  */
 
- function list_entities_from_access_id($access_id, $entity_type = "", $entity_subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = true, $pagination = true) {
 
- 	elgg_deprecated_notice("All list_entities* functions were deprecated in 1.8.  Use elgg_list_entities* instead.", 1.8);
 
- 	echo elgg_list_entities_from_access_id(array('access_id' => $access_id,
 
- 		'type' => $entity_type, 'subtype' => $entity_subtype, 'owner_guids' => $owner_guid,
 
- 		'limit' => $limit, 'full_view' => $fullview, 'list_type_toggle' => $listtypetoggle,
 
- 		'pagination' => $pagination,));
 
- }
 
- /**
 
-  * Registers a particular action in memory
 
-  *
 
-  * @deprecated 1.8 Use {@link elgg_register_action()} instead
 
-  *
 
-  * @param string $action The name of the action (eg "register", "account/settings/save")
 
-  * @param boolean $public Can this action be accessed by people not logged into the system?
 
-  * @param string $filename Optionally, the filename where this action is located
 
-  * @param boolean $admin_only Whether this action is only available to admin users.
 
-  */
 
- function register_action($action, $public = false, $filename = "", $admin_only = false) {
 
- 	elgg_deprecated_notice("register_action() was deprecated by elgg_register_action()", 1.8);
 
- 	if ($admin_only) {
 
- 		$access = 'admin';
 
- 	} elseif ($public) {
 
- 		$access = 'public';
 
- 	} else {
 
- 		$access = 'logged_in';
 
- 	}
 
- 	return elgg_register_action($action, $filename, $access);
 
- }
 
- /**
 
-  * Register an admin page with the admin panel.
 
-  * This function extends the view "admin/main" with the provided view.
 
-  * This view should provide a description and either a control or a link to.
 
-  *
 
-  * @deprecated 1.8 Extend admin views manually
 
-  *
 
-  * Usage:
 
-  * 	- To add a control to the main admin panel then extend admin/main
 
-  *  - To add a control to a new page create a page which renders a view admin/subpage
 
-  *    (where subpage is your new page -
 
-  *    nb. some pages already exist that you can extend), extend the main view to point to it,
 
-  *    and add controls to your new view.
 
-  *
 
-  * At the moment this is essentially a wrapper around elgg_extend_view().
 
-  *
 
-  * @param string $new_admin_view The view associated with the control you're adding
 
-  * @param string $view           The view to extend, by default this is 'admin/main'.
 
-  * @param int    $priority       Optional priority to govern the appearance in the list.
 
-  *
 
-  * @return void
 
-  */
 
- function extend_elgg_admin_page($new_admin_view, $view = 'admin/main', $priority = 500) {
 
- 	elgg_deprecated_notice('extend_elgg_admin_page() does nothing. Extend admin views manually.', 1.8);
 
- }
 
- /**
 
-  * Get entities ordered by a mathematical calculation
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_entities_from_annotation_calculation()
 
-  *
 
-  * @param string $sum            What sort of calculation to perform
 
-  * @param string $entity_type    Type of Entity
 
-  * @param string $entity_subtype Subtype of Entity
 
-  * @param string $name           Name of annotation
 
-  * @param string $mdname         Metadata name
 
-  * @param string $mdvalue        Metadata value
 
-  * @param int    $owner_guid     GUID of owner of annotation
 
-  * @param int    $limit          Limit of results
 
-  * @param int    $offset         Offset of results
 
-  * @param string $orderdir       Order of results
 
-  * @param bool   $count          Return count or entities
 
-  *
 
-  * @return mixed
 
-  */
 
- function get_entities_from_annotations_calculate_x($sum = "sum", $entity_type = "", $entity_subtype = "", $name = "", $mdname = '', $mdvalue = '', $owner_guid = 0, $limit = 10, $offset = 0, $orderdir = 'desc', $count = false) {
 
- 	$msg = 'get_entities_from_annotations_calculate_x() is deprecated by elgg_get_entities_from_annotation_calculation().';
 
- 	elgg_deprecated_notice($msg, 1.8);
 
- 	$options = array();
 
- 	$options['calculation'] = $sum;
 
- 	if ($entity_type) {
 
- 		$options['types'] = $entity_type;
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$options['subtypes'] = $entity_subtype;
 
- 	}
 
- 	$options['annotation_names'] = $name;
 
- 	if ($mdname) {
 
- 		$options['metadata_names'] = $mdname;
 
- 	}
 
- 	if ($mdvalue) {
 
- 		$options['metadata_values'] = $mdvalue;
 
- 	}
 
- 	// original function rewrote this to container guid.
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			$options['container_guids'] = $owner_guid;
 
- 		} else {
 
- 			$options['container_guid'] = $owner_guid;
 
- 		}
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	$options['offset'] = $offset;
 
- 	$options['order_by'] = "annotation_calculation $orderdir";
 
- 	$options['count'] = $count;
 
- 	return elgg_get_entities_from_annotation_calculation($options);
 
- }
 
- /**
 
-  * Returns entities ordered by the sum of an annotation
 
-  *
 
-  * @warning This is function uses sum instead of count. THIS IS SLOW. See #3366.
 
-  *          This should be used when you have annotations with different values and you
 
-  *          want a list of entities ordered by the sum of all of those values.
 
-  *          If you want a list of entities ordered by the number of annotations on each entity,
 
-  *          use __get_entities_from_annotations_calculate_x() and pass 'count' as the first param.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_entities_from_annotation_calculation()
 
-  *
 
-  * @param string $entity_type    Type of Entity
 
-  * @param string $entity_subtype Subtype of Entity
 
-  * @param string $name           Name of annotation
 
-  * @param string $mdname         Metadata name
 
-  * @param string $mdvalue        Metadata value
 
-  * @param int    $owner_guid     GUID of owner of annotation
 
-  * @param int    $limit          Limit of results
 
-  * @param int    $offset         Offset of results
 
-  * @param string $orderdir       Order of results
 
-  * @param bool   $count          Return count or entities
 
-  *
 
-  * @return ElggEntity[]|int
 
-  */
 
- function get_entities_from_annotation_count($entity_type = "", $entity_subtype = "", $name = "", $mdname = '', $mdvalue = '', $owner_guid = 0, $limit = 10, $offset = 0, $orderdir = 'desc', $count = false) {
 
- 	$msg = 'get_entities_from_annotation_count() is deprecated by elgg_get_entities_from_annotation_calculation().';
 
- 	elgg_deprecated_notice($msg, 1.8);
 
- 	$options = array();
 
- 	$options['calculation'] = 'sum';
 
- 	if ($entity_type) {
 
- 		$options['types'] = $entity_type;
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$options['subtypes'] = $entity_subtype;
 
- 	}
 
- 	$options['annotation_names'] = $name;
 
- 	if ($mdname) {
 
- 		$options['metadata_names'] = $mdname;
 
- 	}
 
- 	if ($mdvalue) {
 
- 		$options['metadata_values'] = $mdvalue;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			$options['owner_guids'] = $owner_guid;
 
- 		} else {
 
- 			$options['owner_guid'] = $owner_guid;
 
- 		}
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	$options['offset'] = $offset;
 
- 	$options['order_by'] = "annotation_calculation $orderdir";
 
- 	$options['count'] = $count;
 
- 	return elgg_get_entities_from_annotation_calculation($options);
 
- }
 
- /**
 
-  * Lists entities by the totals of a particular kind of annotation
 
-  *
 
-  * @deprecated 1.8 Use elgg_list_entities_from_annotation_calculation()
 
-  *
 
-  * @param string  $entity_type    Type of entity.
 
-  * @param string  $entity_subtype Subtype of entity.
 
-  * @param string  $name           Name of annotation.
 
-  * @param int     $limit          Maximum number of results to return.
 
-  * @param int     $owner_guid     Owner.
 
-  * @param int     $group_guid     Group container. Currently only supported if entity_type is object
 
-  * @param boolean $asc            Whether to list in ascending or descending order (default: desc)
 
-  * @param boolean $fullview       Whether to display the entities in full
 
-  * @param boolean $listtypetoggle Can the 'gallery' view can be displayed (default: no)
 
-  * @param boolean $pagination     Add pagination
 
-  * @param string  $orderdir       Order desc or asc
 
-  *
 
-  * @return string Formatted entity list
 
-  */
 
- function list_entities_from_annotation_count($entity_type = "", $entity_subtype = "", $name = "", $limit = 10, $owner_guid = 0, $group_guid = 0, $asc = false, $fullview = true, $listtypetoggle = false, $pagination = true, $orderdir = 'desc') {
 
- 	$msg = 'list_entities_from_annotation_count() is deprecated by elgg_list_entities_from_annotation_calculation().';
 
- 	elgg_deprecated_notice($msg, 1.8);
 
- 	$options = array();
 
- 	$options['calculation'] = 'sum';
 
- 	if ($entity_type) {
 
- 		$options['types'] = $entity_type;
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$options['subtypes'] = $entity_subtype;
 
- 	}
 
- 	$options['annotation_names'] = $name;
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			$options['owner_guids'] = $owner_guid;
 
- 		} else {
 
- 			$options['owner_guid'] = $owner_guid;
 
- 		}
 
- 	}
 
- 	$options['full_view'] = $fullview;
 
- 	$options['list_type_toggle'] = $listtypetoggle;
 
- 	$options['pagination'] = $pagination;
 
- 	$options['limit'] = $limit;
 
- 	$options['order_by'] = "annotation_calculation $orderdir";
 
- 	return elgg_get_entities_from_annotation_calculation($options);
 
- }
 
- /**
 
-  * Adds an entry in $CONFIG[$register_name][$subregister_name].
 
-  *
 
-  * @deprecated 1.8 Use the new menu system.
 
-  * 
 
-  * This is only used for the site-wide menu.  See {@link add_menu()}.
 
-  *
 
-  * @param string $register_name     The name of the top-level register
 
-  * @param string $subregister_name  The name of the subregister
 
-  * @param mixed  $subregister_value The value of the subregister
 
-  * @param array  $children_array    Optionally, an array of children
 
-  *
 
-  * @return true|false Depending on success
 
-  */
 
- function add_to_register($register_name, $subregister_name, $subregister_value, $children_array = array()) {
 
- 	elgg_deprecated_notice("add_to_register() has been deprecated", 1.8);
 
- 	global $CONFIG;
 
- 	if (empty($register_name) || empty($subregister_name)) {
 
- 		return false;
 
- 	}
 
- 	if (!isset($CONFIG->registers)) {
 
- 		$CONFIG->registers = array();
 
- 	}
 
- 	if (!isset($CONFIG->registers[$register_name])) {
 
- 		$CONFIG->registers[$register_name] = array();
 
- 	}
 
- 	$subregister = new \stdClass;
 
- 	$subregister->name = $subregister_name;
 
- 	$subregister->value = $subregister_value;
 
- 	if (is_array($children_array)) {
 
- 		$subregister->children = $children_array;
 
- 	}
 
- 	$CONFIG->registers[$register_name][$subregister_name] = $subregister;
 
- 	return true;
 
- }
 
- /**
 
-  * Removes a register entry from $CONFIG[register_name][subregister_name]
 
-  *
 
-  * @deprecated 1.8 Use the new menu system.
 
-  *
 
-  * This is used to by {@link remove_menu()} to remove site-wide menu items.
 
-  *
 
-  * @param string $register_name    The name of the top-level register
 
-  * @param string $subregister_name The name of the subregister
 
-  *
 
-  * @return true|false Depending on success
 
-  * @since 1.7.0
 
-  */
 
- function remove_from_register($register_name, $subregister_name) {
 
- 	elgg_deprecated_notice("remove_from_register() has been deprecated", 1.8);
 
- 	global $CONFIG;
 
- 	if (empty($register_name) || empty($subregister_name)) {
 
- 		return false;
 
- 	}
 
- 	if (!isset($CONFIG->registers)) {
 
- 		return false;
 
- 	}
 
- 	if (!isset($CONFIG->registers[$register_name])) {
 
- 		return false;
 
- 	}
 
- 	if (isset($CONFIG->registers[$register_name][$subregister_name])) {
 
- 		unset($CONFIG->registers[$register_name][$subregister_name]);
 
- 		return true;
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * If it exists, returns a particular register as an array
 
-  *
 
-  * @deprecated 1.8 Use the new menu system
 
-  *
 
-  * @param string $register_name The name of the register
 
-  *
 
-  * @return array|false Depending on success
 
-  */
 
- function get_register($register_name) {
 
- 	elgg_deprecated_notice("get_register() has been deprecated", 1.8);
 
- 	global $CONFIG;
 
- 	if ($register_name == 'menu') {
 
- 		// backward compatible code for site menu
 
- 		$menu = $CONFIG->menus['site'];
 
- 		$builder = new \ElggMenuBuilder($menu);
 
- 		$menu_items = $builder->getMenu('text');
 
- 		$menu_items = $menu_items['default'];
 
- 		$menu = array();
 
- 		foreach ($menu_items as $item) {
 
- 			$subregister = new \stdClass;
 
- 			$subregister->name = $item->getText();
 
- 			$subregister->value = $item->getHref();
 
- 			$menu[$subregister->name] = $subregister;
 
- 		}
 
- 		return $menu;
 
- 	}
 
- 	if (isset($CONFIG->registers[$register_name])) {
 
- 		return $CONFIG->registers[$register_name];
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Deprecated events core function. Code divided between elgg_register_event_handler()
 
-  * and trigger_elgg_event().
 
-  *
 
-  * @deprecated 1.8 Use explicit register/trigger event functions
 
-  *
 
-  * @param string  $event       The type of event (eg 'init', 'update', 'delete')
 
-  * @param string  $object_type The type of object (eg 'system', 'blog', 'user')
 
-  * @param string  $function    The name of the function that will handle the event
 
-  * @param int     $priority    Priority to call handler. Lower numbers called first (default 500)
 
-  * @param boolean $call        Set to true to call the event rather than add to it (default false)
 
-  * @param mixed   $object      Optionally, the object the event is being performed on (eg a user)
 
-  *
 
-  * @return true|false Depending on success
 
-  */
 
- function events($event = "", $object_type = "", $function = "", $priority = 500, $call = false, $object = null) {
 
- 	elgg_deprecated_notice('events() has been deprecated.', 1.8);
 
- 	// leaving this here just in case someone was directly calling this internal function
 
- 	if (!$call) {
 
- 		return elgg_register_event_handler($event, $object_type, $function, $priority);
 
- 	} else {
 
- 		return trigger_elgg_event($event, $object_type, $object);
 
- 	}
 
- }
 
- /**
 
-  * Alias function for events, that registers a function to a particular kind of event
 
-  *
 
-  * @deprecated 1.8 Use elgg_register_event_handler() instead
 
-  * 
 
-  * @param string $event The event type
 
-  * @param string $object_type The object type
 
-  * @param string $function The function name
 
-  * @return true|false Depending on success
 
-  */
 
- function register_elgg_event_handler($event, $object_type, $callback, $priority = 500) {
 
- 	elgg_deprecated_notice("register_elgg_event_handler() was deprecated by elgg_register_event_handler()", 1.8);
 
- 	return elgg_register_event_handler($event, $object_type, $callback, $priority);
 
- }
 
- /**
 
-  * Unregisters a function to a particular kind of event
 
-  * 
 
-  * @deprecated 1.8 Use elgg_unregister_event_handler instead
 
-  *
 
-  * @param string $event The event type
 
-  * @param string $object_type The object type
 
-  * @param string $function The function name
 
-  * @since 1.7.0
 
-  */
 
- function unregister_elgg_event_handler($event, $object_type, $callback) {
 
- 	elgg_deprecated_notice('unregister_elgg_event_handler => elgg_unregister_event_handler', 1.8);
 
- 	elgg_unregister_event_handler($event, $object_type, $callback);
 
- }
 
- /**
 
-  * Alias function for events, that triggers a particular kind of event
 
-  *
 
-  * @deprecated 1.8 Use elgg_trigger_event() instead
 
-  * 
 
-  * @param string $event The event type
 
-  * @param string $object_type The object type
 
-  * @param string $function The function name
 
-  * @return true|false Depending on success
 
-  */
 
- function trigger_elgg_event($event, $object_type, $object = null) {
 
- 	elgg_deprecated_notice('trigger_elgg_event() was deprecated by elgg_trigger_event()', 1.8);
 
- 	return elgg_trigger_event($event, $object_type, $object);
 
- }
 
- /**
 
-  * Register a function to a plugin hook for a particular entity type, with a given priority.
 
-  *
 
-  * @deprecated 1.8 Use elgg_register_plugin_hook_handler() instead
 
-  * 
 
-  * eg if you want the function "export_user" to be called when the hook "export" for "user" entities
 
-  * is run, use:
 
-  *
 
-  * 		register_plugin_hook("export", "user", "export_user");
 
-  *
 
-  * "all" is a valid value for both $hook and $entity_type. "none" is a valid value for $entity_type.
 
-  *
 
-  * The export_user function would then be defined as:
 
-  *
 
-  * 		function export_user($hook, $entity_type, $returnvalue, $params);
 
-  *
 
-  * Where $returnvalue is the return value returned by the last function returned by the hook, and
 
-  * $params is an array containing a set of parameters (or nothing).
 
-  *
 
-  * @param string $hook The name of the hook
 
-  * @param string $entity_type The name of the type of entity (eg "user", "object" etc)
 
-  * @param string $function The name of a valid function to be run
 
-  * @param string $priority The priority - 0 is first, 1000 last, default is 500
 
-  * @return true|false Depending on success
 
-  */
 
- function register_plugin_hook($hook, $type, $callback, $priority = 500) {
 
- 	elgg_deprecated_notice("register_plugin_hook() was deprecated by elgg_register_plugin_hook_handler()", 1.8);
 
- 	return elgg_register_plugin_hook_handler($hook, $type, $callback, $priority);
 
- }
 
- /**
 
-  * Unregister a function to a plugin hook for a particular entity type
 
-  *
 
-  * @deprecated 1.8 Use elgg_unregister_plugin_hook_handler() instead
 
-  * 
 
-  * @param string $hook The name of the hook
 
-  * @param string $entity_type The name of the type of entity (eg "user", "object" etc)
 
-  * @param string $function The name of a valid function to be run
 
-  * @since 1.7.0
 
-  */
 
- function unregister_plugin_hook($hook, $entity_type, $callback) {
 
- 	elgg_deprecated_notice("unregister_plugin_hook() was deprecated by elgg_unregister_plugin_hook_handler()", 1.8);
 
- 	elgg_unregister_plugin_hook_handler($hook, $entity_type, $callback);
 
- }
 
- /**
 
-  * Triggers a plugin hook, with various parameters as an array. For example, to provide
 
-  * a 'foo' hook that concerns an entity of type 'bar', with a parameter called 'param1'
 
-  * with value 'value1', that by default returns true, you'd call:
 
-  *
 
-  * @deprecated 1.8 Use elgg_trigger_plugin_hook() instead
 
-  *
 
-  * trigger_plugin_hook('foo', 'bar', array('param1' => 'value1'), true);
 
-  *
 
-  * @see register_plugin_hook
 
-  * @param string $hook The name of the hook to trigger
 
-  * @param string $entity_type The name of the entity type to trigger it for (or "all", or "none")
 
-  * @param array $params Any parameters. It's good practice to name the keys, i.e. by using array('name' => 'value', 'name2' => 'value2')
 
-  * @param mixed $returnvalue An initial return value
 
-  * @return mixed|null The cumulative return value for the plugin hook functions
 
-  */
 
- function trigger_plugin_hook($hook, $type, $params = null, $returnvalue = null) {
 
- 	elgg_deprecated_notice("trigger_plugin_hook() was deprecated by elgg_trigger_plugin_hook()", 1.8);
 
- 	return elgg_trigger_plugin_hook($hook, $type, $params, $returnvalue);
 
- }
 
- /**
 
-  * Checks if code is being called from a certain function.
 
-  *
 
-  * To use, call this function with the function name (and optional
 
-  * file location) that it has to be called from, it will either
 
-  * return true or false.
 
-  *
 
-  * e.g.
 
-  *
 
-  * function my_secure_function()
 
-  * {
 
-  * 		if (!call_gatekeeper("my_call_function"))
 
-  * 			return false;
 
-  *
 
-  * 		... do secure stuff ...
 
-  * }
 
-  *
 
-  * function my_call_function()
 
-  * {
 
-  * 		// will work
 
-  * 		my_secure_function();
 
-  * }
 
-  *
 
-  * function bad_function()
 
-  * {
 
-  * 		// Will not work
 
-  * 		my_secure_function();
 
-  * }
 
-  *
 
-  * @param mixed  $function The function that this function must have in its call stack,
 
-  * 		                   to test against a method pass an array containing a class and
 
-  *                         method name.
 
-  * @param string $file     Optional file that the function must reside in.
 
-  *
 
-  * @return bool
 
-  *
 
-  * @deprecated 1.8 A neat but pointless function
 
-  */
 
- function call_gatekeeper($function, $file = "") {
 
- 	elgg_deprecated_notice("call_gatekeeper() is neat but pointless", 1.8);
 
- 	// Sanity check
 
- 	if (!$function) {
 
- 		return false;
 
- 	}
 
- 	// Check against call stack to see if this is being called from the correct location
 
- 	$callstack = debug_backtrace();
 
- 	$stack_element = false;
 
- 	foreach ($callstack as $call) {
 
- 		if (is_array($function)) {
 
- 			if ((strcmp($call['class'], $function[0]) == 0) && (strcmp($call['function'], $function[1]) == 0)) {
 
- 				$stack_element = $call;
 
- 			}
 
- 		} else {
 
- 			if (strcmp($call['function'], $function) == 0) {
 
- 				$stack_element = $call;
 
- 			}
 
- 		}
 
- 	}
 
- 	if (!$stack_element) {
 
- 		return false;
 
- 	}
 
- 	// If file then check that this it is being called from this function
 
- 	if ($file) {
 
- 		$mirror = null;
 
- 		if (is_array($function)) {
 
- 			$mirror = new ReflectionMethod($function[0], $function[1]);
 
- 		} else {
 
- 			$mirror = new ReflectionFunction($function);
 
- 		}
 
- 		if ((!$mirror) || (strcmp($file, $mirror->getFileName()) != 0)) {
 
- 			return false;
 
- 		}
 
- 	}
 
- 	return true;
 
- }
 
- /**
 
-  * This function checks to see if it is being called at somepoint by a function defined somewhere
 
-  * on a given path (optionally including subdirectories).
 
-  *
 
-  * This function is similar to call_gatekeeper() but returns true if it is being called
 
-  * by a method or function which has been defined on a given path or by a specified file.
 
-  *
 
-  * @param string $path            The full path and filename that this function must have
 
-  *                                in its call stack If a partial path is given and
 
-  *                                $include_subdirs is true, then the function will return
 
-  *                                true if called by any function in or below the specified path.
 
-  * @param bool   $include_subdirs Are subdirectories of the path ok, or must you specify an
 
-  *                                absolute path and filename.
 
-  * @param bool   $strict_mode     If true then the calling method or function must be directly
 
-  *                                called by something on $path, if false the whole call stack is
 
-  *                                searched.
 
-  *
 
-  * @return void
 
-  *
 
-  * @deprecated 1.8 A neat but pointless function
 
-  */
 
- function callpath_gatekeeper($path, $include_subdirs = true, $strict_mode = false) {
 
- 	elgg_deprecated_notice("callpath_gatekeeper() is neat but pointless", 1.8);
 
- 	global $CONFIG;
 
- 	$path = sanitise_string($path);
 
- 	if ($path) {
 
- 		$callstack = debug_backtrace();
 
- 		foreach ($callstack as $call) {
 
- 			$call['file'] = str_replace("\\", "/", $call['file']);
 
- 			if ($include_subdirs) {
 
- 				if (strpos($call['file'], $path) === 0) {
 
- 					if ($strict_mode) {
 
- 						$callstack[1]['file'] = str_replace("\\", "/", $callstack[1]['file']);
 
- 						if ($callstack[1] === $call) {
 
- 							return true;
 
- 						}
 
- 					} else {
 
- 						return true;
 
- 					}
 
- 				}
 
- 			} else {
 
- 				if (strcmp($path, $call['file']) == 0) {
 
- 					if ($strict_mode) {
 
- 						if ($callstack[1] === $call) {
 
- 							return true;
 
- 						}
 
- 					} else {
 
- 						return true;
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 		return false;
 
- 	}
 
- 	if (isset($CONFIG->debug)) {
 
- 		system_message("Gatekeeper'd function called from {$callstack[1]['file']}:" . "{$callstack[1]['line']}\n\nStack trace:\n\n" . print_r($callstack, true));
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Returns SQL where clause for owner and containers.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_guid_based_where_sql();
 
-  *
 
-  * @param string     $table       Entity table prefix as defined in SELECT...FROM entities $table
 
-  * @param NULL|array $owner_guids Owner GUIDs
 
-  *
 
-  * @return string|false
 
-  * @since 1.7.0
 
-  * @access private
 
-  */
 
- function elgg_get_entity_owner_where_sql($table, $owner_guids) {
 
- 	elgg_deprecated_notice('elgg_get_entity_owner_where_sql() is deprecated by elgg_get_guid_based_where_sql().', 1.8);
 
- 	return _elgg_get_guid_based_where_sql("{$table}.owner_guid", $owner_guids);
 
- }
 
- /**
 
-  * Returns SQL where clause for containers.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_guid_based_where_sql();
 
-  *
 
-  * @param string     $table           Entity table prefix as defined in
 
-  *                                    SELECT...FROM entities $table
 
-  * @param NULL|array $container_guids Array of container guids
 
-  *
 
-  * @return FALSE|string
 
-  * @since 1.7.0
 
-  * @access private
 
-  */
 
- function elgg_get_entity_container_where_sql($table, $container_guids) {
 
- 	elgg_deprecated_notice('elgg_get_entity_container_where_sql() is deprecated by elgg_get_guid_based_where_sql().', 1.8);
 
- 	return _elgg_get_guid_based_where_sql("{$table}.container_guid", $container_guids);
 
- }
 
- /**
 
-  * Returns SQL where clause for site entities
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_guid_based_where_sql()
 
-  *
 
-  * @param string     $table      Entity table prefix as defined in SELECT...FROM entities $table
 
-  * @param NULL|array $site_guids Array of site guids
 
-  *
 
-  * @return FALSE|string
 
-  * @since 1.7.0
 
-  * @access private
 
-  */
 
- function elgg_get_entity_site_where_sql($table, $site_guids) {
 
- 	elgg_deprecated_notice('elgg_get_entity_site_where_sql() is deprecated by elgg_get_guid_based_where_sql().', 1.8);
 
- 	return _elgg_get_guid_based_where_sql("{$table}.site_guid", $site_guids);
 
- }
 
- /**
 
-  * Return an array of objects in a given container.
 
-  *
 
-  * @see get_entities()
 
-  *
 
-  * @param int    $group_guid The container (defaults to current page owner)
 
-  * @param string $subtype    The subtype
 
-  * @param int    $owner_guid Owner
 
-  * @param int    $site_guid  The site
 
-  * @param string $order_by   Order
 
-  * @param int    $limit      Limit on number of elements to return, by default 10.
 
-  * @param int    $offset     Where to start, by default 0.
 
-  * @param bool   $count      Whether to return the entities or a count of them.
 
-  *
 
-  * @return array|false
 
-  * @deprecated 1.8 Use elgg_get_entities() instead
 
-  */
 
- function get_objects_in_group($group_guid, $subtype = "", $owner_guid = 0, $site_guid = 0, $order_by = "", $limit = 10, $offset = 0, $count = FALSE) {
 
- 	elgg_deprecated_notice("get_objects_in_group was deprected in 1.8.  Use elgg_get_entities() instead", 1.8);
 
- 	global $CONFIG;
 
- 	if ($subtype === FALSE || $subtype === null || $subtype === 0) {
 
- 		return FALSE;
 
- 	}
 
- 	if ($order_by == "") {
 
- 		$order_by = "e.time_created desc";
 
- 	}
 
- 	$order_by = sanitise_string($order_by);
 
- 	$limit = (int)$limit;
 
- 	$offset = (int)$offset;
 
- 	$site_guid = (int)$site_guid;
 
- 	if ($site_guid == 0) {
 
- 		$site_guid = $CONFIG->site_guid;
 
- 	}
 
- 	$container_guid = (int)$group_guid;
 
- 	if ($container_guid == 0) {
 
- 		$container_guid = elgg_get_page_owner_guid();
 
- 	}
 
- 	$where = array();
 
- 	$where[] = "e.type='object'";
 
- 	if (!empty($subtype)) {
 
- 		if (!$subtype = get_subtype_id('object', $subtype)) {
 
- 			return FALSE;
 
- 		}
 
- 		$where[] = "e.subtype=$subtype";
 
- 	}
 
- 	if ($owner_guid != "") {
 
- 		if (!is_array($owner_guid)) {
 
- 			$owner_guid = (int)$owner_guid;
 
- 			$where[] = "e.container_guid = '$owner_guid'";
 
- 		} else if (sizeof($owner_guid) > 0) {
 
- 			// Cast every element to the owner_guid array to int
 
- 			$owner_guid = array_map("sanitise_int", $owner_guid);
 
- 			$owner_guid = implode(",", $owner_guid);
 
- 			$where[] = "e.container_guid in ({$owner_guid})";
 
- 		}
 
- 	}
 
- 	if ($site_guid > 0) {
 
- 		$where[] = "e.site_guid = {$site_guid}";
 
- 	}
 
- 	if ($container_guid > 0) {
 
- 		$where[] = "e.container_guid = {$container_guid}";
 
- 	}
 
- 	if (!$count) {
 
- 		$query = "SELECT * from {$CONFIG->dbprefix}entities e" . " join {$CONFIG->dbprefix}objects_entity o on e.guid=o.guid where ";
 
- 	} else {
 
- 		$query = "SELECT count(e.guid) as total from {$CONFIG->dbprefix}entities e" . " join {$CONFIG->dbprefix}objects_entity o on e.guid=o.guid where ";
 
- 	}
 
- 	foreach ($where as $w) {
 
- 		$query .= " $w and ";
 
- 	}
 
- 	// Add access controls
 
- 	$query .= _elgg_get_access_where_sql();
 
- 	if (!$count) {
 
- 		$query .= " order by $order_by";
 
- 		// Add order and limit
 
- 		if ($limit) {
 
- 			$query .= " limit $offset, $limit";
 
- 		}
 
- 		$dt = get_data($query, "entity_row_to_elggstar");
 
- 		return $dt;
 
- 	} else {
 
- 		$total = get_data_row($query);
 
- 		return $total->total;
 
- 	}
 
- }
 
- /**
 
-  * Lists entities that belong to a group.
 
-  *
 
-  * @param string $subtype        The arbitrary subtype of the entity
 
-  * @param int    $owner_guid     The GUID of the owning user
 
-  * @param int    $container_guid The GUID of the containing group
 
-  * @param int    $limit          The number of entities to display per page (default: 10)
 
-  * @param bool   $fullview       Whether or not to display the full view (default: true)
 
-  * @param bool   $listtypetoggle Whether or not to allow gallery view (default: true)
 
-  * @param bool   $pagination     Whether to display pagination (default: true)
 
-  *
 
-  * @return string List of parsed entities
 
-  *
 
-  * @see elgg_list_entities()
 
-  * @deprecated 1.8 Use elgg_list_entities() instead
 
-  */
 
- function list_entities_groups($subtype = "", $owner_guid = 0, $container_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = true, $pagination = true) {
 
- 	elgg_deprecated_notice("list_entities_groups was deprecated in 1.8.  Use elgg_list_entities() instead.", 1.8);
 
- 	$offset = (int)get_input('offset');
 
- 	$count = get_objects_in_group($container_guid, $subtype, $owner_guid, 0, "", $limit, $offset, true);
 
- 	$entities = get_objects_in_group($container_guid, $subtype, $owner_guid, 0, "", $limit, $offset);
 
- 	return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $listtypetoggle, $pagination);
 
- }
 
- /**
 
-  * Get all the entities from metadata from a group.
 
-  *
 
-  * @param int    $group_guid     The ID of the group.
 
-  * @param mixed  $meta_name      Metadata name
 
-  * @param mixed  $meta_value     Metadata value
 
-  * @param string $entity_type    The type of entity to look for, eg 'site' or 'object'
 
-  * @param string $entity_subtype The subtype of the entity.
 
-  * @param int    $owner_guid     Owner guid
 
-  * @param int    $limit          Limit
 
-  * @param int    $offset         Offset
 
-  * @param string $order_by       Optional ordering.
 
-  * @param int    $site_guid      Site GUID. 0 for current, -1 for any
 
-  * @param bool   $count          Return count instead of entities
 
-  *
 
-  * @return array|false
 
-  * @deprecated 1.8 Use elgg_get_entities_from_metadata()
 
-  */
 
- function get_entities_from_metadata_groups($group_guid, $meta_name, $meta_value = "", $entity_type = "", $entity_subtype = "", $owner_guid = 0, $limit = 10, $offset = 0, $order_by = "", $site_guid = 0, $count = false) {
 
- 	elgg_deprecated_notice("get_entities_from_metadata_groups was deprecated in 1.8.", 1.8);
 
- 	global $CONFIG;
 
- 	$meta_n = get_metastring_id($meta_name);
 
- 	$meta_v = get_metastring_id($meta_value);
 
- 	$entity_type = sanitise_string($entity_type);
 
- 	$entity_subtype = get_subtype_id($entity_type, $entity_subtype);
 
- 	$limit = (int)$limit;
 
- 	$offset = (int)$offset;
 
- 	if ($order_by == "") {
 
- 		$order_by = "e.time_created desc";
 
- 	}
 
- 	$order_by = sanitise_string($order_by);
 
- 	$site_guid = (int)$site_guid;
 
- 	if (is_array($owner_guid)) {
 
- 		foreach ($owner_guid as $key => $guid) {
 
- 			$owner_guid[$key] = (int)$guid;
 
- 		}
 
- 	} else {
 
- 		$owner_guid = (int)$owner_guid;
 
- 	}
 
- 	if ($site_guid == 0) {
 
- 		$site_guid = $CONFIG->site_guid;
 
- 	}
 
- 	$container_guid = (int)$group_guid;
 
- 	if ($container_guid == 0) {
 
- 		$container_guid = elgg_get_page_owner_guid();
 
- 	}
 
- 	$where = array();
 
- 	if ($entity_type != "") {
 
- 		$where[] = "e.type='$entity_type'";
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$where[] = "e.subtype=$entity_subtype";
 
- 	}
 
- 	if ($meta_name != "") {
 
- 		$where[] = "m.name_id='$meta_n'";
 
- 	}
 
- 	if ($meta_value != "") {
 
- 		$where[] = "m.value_id='$meta_v'";
 
- 	}
 
- 	if ($site_guid > 0) {
 
- 		$where[] = "e.site_guid = {$site_guid}";
 
- 	}
 
- 	if ($container_guid > 0) {
 
- 		$where[] = "e.container_guid = {$container_guid}";
 
- 	}
 
- 	if (is_array($owner_guid)) {
 
- 		$where[] = "e.container_guid in (" . implode(",", $owner_guid) . ")";
 
- 	} else if ($owner_guid > 0) {
 
- 		$where[] = "e.container_guid = {$owner_guid}";
 
- 	}
 
- 	if (!$count) {
 
- 		$query = "SELECT distinct e.* ";
 
- 	} else {
 
- 		$query = "SELECT count(e.guid) as total ";
 
- 	}
 
- 	$query .= "from {$CONFIG->dbprefix}entities e" . " JOIN {$CONFIG->dbprefix}metadata m on e.guid = m.entity_guid " . " JOIN {$CONFIG->dbprefix}objects_entity o on e.guid = o.guid where";
 
- 	foreach ($where as $w) {
 
- 		$query .= " $w and ";
 
- 	}
 
- 	// Add access controls
 
- 	$query .= _elgg_get_access_where_sql();
 
- 	if (!$count) {
 
- 		$query .= " order by $order_by limit $offset, $limit"; // Add order and limit
 
- 		return get_data($query, "entity_row_to_elggstar");
 
- 	} else {
 
- 		if ($row = get_data_row($query)) {
 
- 			return $row->total;
 
- 		}
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * As get_entities_from_metadata_groups() but with multiple entities.
 
-  *
 
-  * @param int    $group_guid     The ID of the group.
 
-  * @param array  $meta_array     Array of 'name' => 'value' pairs
 
-  * @param string $entity_type    The type of entity to look for, eg 'site' or 'object'
 
-  * @param string $entity_subtype The subtype of the entity.
 
-  * @param int    $owner_guid     Owner GUID
 
-  * @param int    $limit          Limit
 
-  * @param int    $offset         Offset
 
-  * @param string $order_by       Optional ordering.
 
-  * @param int    $site_guid      Site GUID. 0 for current, -1 for any
 
-  * @param bool   $count          Return count of entities instead of entities
 
-  *
 
-  * @return int|array List of \ElggEntities, or the total number if count is set to false
 
-  * @deprecated 1.8 Use elgg_get_entities_from_metadata()
 
-  */
 
- function get_entities_from_metadata_groups_multi($group_guid, $meta_array, $entity_type = "", $entity_subtype = "", $owner_guid = 0, $limit = 10, $offset = 0, $order_by = "", $site_guid = 0, $count = false) {
 
- 	elgg_deprecated_notice("get_entities_from_metadata_groups_multi was deprecated in 1.8.", 1.8);
 
- 	global $CONFIG;
 
- 	if (!is_array($meta_array) || sizeof($meta_array) == 0) {
 
- 		return false;
 
- 	}
 
- 	$where = array();
 
- 	$mindex = 1;
 
- 	$join = "";
 
- 	foreach ($meta_array as $meta_name => $meta_value) {
 
- 		$meta_n = get_metastring_id($meta_name);
 
- 		$meta_v = get_metastring_id($meta_value);
 
- 		$join .= " JOIN {$CONFIG->dbprefix}metadata m{$mindex} on e.guid = m{$mindex}.entity_guid" . " JOIN {$CONFIG->dbprefix}objects_entity o on e.guid = o.guid ";
 
- 		if ($meta_name != "") {
 
- 			$where[] = "m{$mindex}.name_id='$meta_n'";
 
- 		}
 
- 		if ($meta_value != "") {
 
- 			$where[] = "m{$mindex}.value_id='$meta_v'";
 
- 		}
 
- 		$mindex++;
 
- 	}
 
- 	$entity_type = sanitise_string($entity_type);
 
- 	$entity_subtype = get_subtype_id($entity_type, $entity_subtype);
 
- 	$limit = (int)$limit;
 
- 	$offset = (int)$offset;
 
- 	if ($order_by == "") {
 
- 		$order_by = "e.time_created desc";
 
- 	}
 
- 	$order_by = sanitise_string($order_by);
 
- 	$owner_guid = (int)$owner_guid;
 
- 	$site_guid = (int)$site_guid;
 
- 	if ($site_guid == 0) {
 
- 		$site_guid = $CONFIG->site_guid;
 
- 	}
 
- 	//$access = get_access_list();
 
- 	if ($entity_type != "") {
 
- 		$where[] = "e.type = '{$entity_type}'";
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$where[] = "e.subtype = {$entity_subtype}";
 
- 	}
 
- 	if ($site_guid > 0) {
 
- 		$where[] = "e.site_guid = {$site_guid}";
 
- 	}
 
- 	if ($owner_guid > 0) {
 
- 		$where[] = "e.owner_guid = {$owner_guid}";
 
- 	}
 
- 	if ($group_guid > 0) {
 
- 		$where[] = "e.container_guid = {$group_guid}";
 
- 	}
 
- 	if ($count) {
 
- 		$query = "SELECT count(e.guid) as total ";
 
- 	} else {
 
- 		$query = "SELECT distinct e.* ";
 
- 	}
 
- 	$query .= " from {$CONFIG->dbprefix}entities e {$join} where";
 
- 	foreach ($where as $w) {
 
- 		$query .= " $w and ";
 
- 	}
 
- 	$query .= _elgg_get_access_where_sql();
 
- 	if (!$count) {
 
- 		$query .= " order by $order_by limit $offset, $limit"; // Add order and limit
 
- 		return get_data($query, "entity_row_to_elggstar");
 
- 	} else {
 
- 		if ($count = get_data_row($query)) {
 
- 			return $count->total;
 
- 		}
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * List items within a given geographic area.
 
-  *
 
-  * @param float  $lat            Latitude
 
-  * @param float  $long           Longitude
 
-  * @param float  $radius         The radius
 
-  * @param string $type           The type of entity (eg "user", "object" etc)
 
-  * @param string $subtype        The arbitrary subtype of the entity
 
-  * @param int    $owner_guid     The GUID of the owning user
 
-  * @param int    $limit          The number of entities to display per page (default: 10)
 
-  * @param bool   $fullview       Whether or not to display the full view (default: true)
 
-  * @param bool   $listtypetoggle Whether or not to allow gallery view
 
-  * @param bool   $navigation     Display pagination? Default: true
 
-  *
 
-  * @return string A viewable list of entities
 
-  * @deprecated 1.8 Use elgg_get_entities_from_location()
 
-  */
 
- function list_entities_in_area($lat, $long, $radius, $type = "", $subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = false, $navigation = true) {
 
- 	elgg_deprecated_notice('list_entities_in_area() was deprecated. Use elgg_list_entities_from_location()', 1.8);
 
- 	$options = array();
 
- 	$options['latitude'] = $lat;
 
- 	$options['longitude'] = $long;
 
- 	$options['distance'] = $radius;
 
- 	if ($type) {
 
- 		$options['types'] = $type;
 
- 	}
 
- 	if ($subtype) {
 
- 		$options['subtypes'] = $subtype;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			$options['owner_guids'] = $owner_guid;
 
- 		} else {
 
- 			$options['owner_guid'] = $owner_guid;
 
- 		}
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	$options['full_view'] = $fullview;
 
- 	$options['list_type_toggle'] = $listtypetoggle;
 
- 	$options['pagination'] = true;
 
- 	return elgg_list_entities_from_location($options);
 
- }
 
- /**
 
-  * List entities in a given location
 
-  *
 
-  * @param string $location       Location
 
-  * @param string $type           The type of entity (eg "user", "object" etc)
 
-  * @param string $subtype        The arbitrary subtype of the entity
 
-  * @param int    $owner_guid     The GUID of the owning user
 
-  * @param int    $limit          The number of entities to display per page (default: 10)
 
-  * @param bool   $fullview       Whether or not to display the full view (default: true)
 
-  * @param bool   $listtypetoggle Whether or not to allow gallery view
 
-  * @param bool   $navigation     Display pagination? Default: true
 
-  *
 
-  * @return string A viewable list of entities
 
-  * @deprecated 1.8 Use elgg_list_entities_from_location()
 
-  */
 
- function list_entities_location($location, $type = "", $subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = false, $navigation = true) {
 
- 	elgg_deprecated_notice('list_entities_location() was deprecated. Use elgg_list_entities_from_metadata()', 1.8);
 
- 	return list_entities_from_metadata('location', $location, $type, $subtype, $owner_guid, $limit, $fullview, $listtypetoggle, $navigation);
 
- }
 
- /**
 
-  * Return entities within a given geographic area.
 
-  *
 
-  * @param float     $lat            Latitude
 
-  * @param float     $long           Longitude
 
-  * @param float     $radius         The radius
 
-  * @param string    $type           The type of entity (eg "user", "object" etc)
 
-  * @param string    $subtype        The arbitrary subtype of the entity
 
-  * @param int       $owner_guid     The GUID of the owning user
 
-  * @param string    $order_by       The field to order by; by default, time_created desc
 
-  * @param int       $limit          The number of entities to return; 10 by default
 
-  * @param int       $offset         The indexing offset, 0 by default
 
-  * @param boolean   $count          Count entities
 
-  * @param int       $site_guid      Site GUID. 0 for current, -1 for any
 
-  * @param int|array $container_guid Container GUID
 
-  *
 
-  * @return array A list of entities.
 
-  * @deprecated 1.8 Use elgg_get_entities_from_location()
 
-  */
 
- function get_entities_in_area($lat, $long, $radius, $type = "", $subtype = "", $owner_guid = 0, $order_by = "", $limit = 10, $offset = 0, $count = false, $site_guid = 0, $container_guid = NULL) {
 
- 	elgg_deprecated_notice('get_entities_in_area() was deprecated by elgg_get_entities_from_location()!', 1.8);
 
- 	$options = array();
 
- 	$options['latitude'] = $lat;
 
- 	$options['longitude'] = $long;
 
- 	$options['distance'] = $radius;
 
- 	// set container_guid to owner_guid to emulate old functionality
 
- 	if ($owner_guid != "") {
 
- 		if (is_null($container_guid)) {
 
- 			$container_guid = $owner_guid;
 
- 		}
 
- 	}
 
- 	if ($type) {
 
- 		$options['types'] = $type;
 
- 	}
 
- 	if ($subtype) {
 
- 		$options['subtypes'] = $subtype;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			$options['owner_guids'] = $owner_guid;
 
- 		} else {
 
- 			$options['owner_guid'] = $owner_guid;
 
- 		}
 
- 	}
 
- 	if ($container_guid) {
 
- 		if (is_array($container_guid)) {
 
- 			$options['container_guids'] = $container_guid;
 
- 		} else {
 
- 			$options['container_guid'] = $container_guid;
 
- 		}
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	if ($offset) {
 
- 		$options['offset'] = $offset;
 
- 	}
 
- 	if ($order_by) {
 
- 		$options['order_by'];
 
- 	}
 
- 	if ($site_guid) {
 
- 		$options['site_guid'];
 
- 	}
 
- 	if ($count) {
 
- 		$options['count'] = $count;
 
- 	}
 
- 	return elgg_get_entities_from_location($options);
 
- }
 
- /**
 
-  * Return a list of entities suitable for display based on the given search criteria.
 
-  *
 
-  * @see elgg_view_entity_list
 
-  *
 
-  * @deprecated 1.8 Use elgg_list_entities_from_metadata
 
-  *
 
-  * @param mixed  $meta_name      Metadata name to search on
 
-  * @param mixed  $meta_value     The value to match, optionally
 
-  * @param string $entity_type    The type of entity to look for, eg 'site' or 'object'
 
-  * @param string $entity_subtype The subtype of the entity
 
-  * @param int    $owner_guid     Owner GUID
 
-  * @param int    $limit          Number of entities to display per page
 
-  * @param bool   $fullview       WDisplay the full view (default: true)
 
-  * @param bool   $listtypetoggle Allow users to toggle to the gallery view. Default: true
 
-  * @param bool   $pagination     Display pagination? Default: true
 
-  * @param bool   $case_sensitive Case sensitive metadata names?
 
-  *
 
-  * @return string
 
-  *
 
-  * @return string A list of entities suitable for display
 
-  */
 
- function list_entities_from_metadata($meta_name, $meta_value = "", $entity_type = ELGG_ENTITIES_ANY_VALUE, $entity_subtype = ELGG_ENTITIES_ANY_VALUE, $owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = true, $pagination = true, $case_sensitive = true) {
 
- 	elgg_deprecated_notice('list_entities_from_metadata() was deprecated by elgg_list_entities_from_metadata()!', 1.8);
 
- 	$offset = (int)get_input('offset');
 
- 	$limit = (int)$limit;
 
- 	$options = array(
 
- 		'metadata_name' => $meta_name,
 
- 		'metadata_value' => $meta_value,
 
- 		'type' => $entity_type,
 
- 		'subtype' => $entity_subtype,
 
- 		'limit' => $limit,
 
- 		'offset' => $offset,
 
- 		'count' => TRUE,
 
- 		'metadata_case_sensitive' => $case_sensitive
 
- 	);
 
- 	// previous function allowed falsy $owner_guid for anything
 
- 	if ($owner_guid) {
 
- 		$options['owner_guid'] = $owner_guid;
 
- 	}
 
- 	$count = elgg_get_entities_from_metadata($options);
 
- 	$options['count'] = FALSE;
 
- 	$entities = elgg_get_entities_from_metadata($options);
 
- 	return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $listtypetoggle, $pagination);
 
- }
 
- /**
 
-  * Returns a viewable list of entities based on the given search criteria.
 
-  *
 
-  * @see elgg_view_entity_list
 
-  *
 
-  * @param array  $meta_array     Array of 'name' => 'value' pairs
 
-  * @param string $entity_type    The type of entity to look for, eg 'site' or 'object'
 
-  * @param string $entity_subtype The subtype of the entity.
 
-  * @param int    $owner_guid     Owner GUID
 
-  * @param int    $limit          Limit
 
-  * @param bool   $fullview       WDisplay the full view (default: true)
 
-  * @param bool   $listtypetoggle Allow users to toggle to the gallery view. Default: true
 
-  * @param bool   $pagination     Display pagination? Default: true
 
-  *
 
-  * @return string List of \ElggEntities suitable for display
 
-  *
 
-  * @deprecated 1.8 Use elgg_list_entities_from_metadata() instead
 
-  */
 
- function list_entities_from_metadata_multi($meta_array, $entity_type = "", $entity_subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = true, $pagination = true) {
 
- 	elgg_deprecated_notice(elgg_echo('deprecated:function', array(
 
- 		'list_entities_from_metadata_multi', 'elgg_get_entities_from_metadata')), 1.8);
 
- 	$offset = (int)get_input('offset');
 
- 	$limit = (int)$limit;
 
- 	$count = get_entities_from_metadata_multi($meta_array, $entity_type, $entity_subtype, $owner_guid, $limit, $offset, "", 0, true);
 
- 	$entities = get_entities_from_metadata_multi($meta_array, $entity_type, $entity_subtype, $owner_guid, $limit, $offset, "", 0, false);
 
- 	return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $listtypetoggle, $pagination);
 
- }
 
- /**
 
-  * Deprecated by elgg_register_menu_item(). Set $menu_name to 'page'.
 
-  *
 
-  * @see elgg_register_menu_item()
 
-  * @deprecated 1.8 Use the new menu system
 
-  *
 
-  * @param string  $label    The label
 
-  * @param string  $link     The link
 
-  * @param string  $group    The group to store item in
 
-  * @param boolean $onclick  Add a confirmation when clicked?
 
-  * @param boolean $selected Is menu item selected
 
-  *
 
-  * @return bool
 
-  */
 
- function add_submenu_item($label, $link, $group = 'default', $onclick = false, $selected = NULL) {
 
- 	elgg_deprecated_notice('add_submenu_item was deprecated by elgg_register_menu_item', 1.8);
 
- 	// submenu items were added in the page setup hook usually by checking
 
- 	// the context.  We'll pass in the current context here, which will
 
- 	// emulate that effect.
 
- 	// if context == 'main' (default) it probably means they always wanted
 
- 	// the menu item to show up everywhere.
 
- 	$context = elgg_get_context();
 
- 	if ($context == 'main') {
 
- 		$context = 'all';
 
- 	}
 
- 	$item = array('name' => $label, 'text' => $label, 'href' => $link, 'context' => $context,
 
- 		'section' => $group,);
 
- 	if ($selected) {
 
- 		$item['selected'] = true;
 
- 	}
 
- 	if ($onclick) {
 
- 		$js = "onclick=\"javascript:return confirm('" . elgg_echo('deleteconfirm') . "')\"";
 
- 		$item['vars'] = array('js' => $js);
 
- 	}
 
- 	return elgg_register_menu_item('page', $item);
 
- }
 
- /**
 
-  * Remove an item from submenu by label
 
-  *
 
-  * @deprecated 1.8 Use the new menu system
 
-  * @see elgg_unregister_menu_item()
 
-  *
 
-  * @param string $label The item label
 
-  * @param string $group The submenu group (default "a")
 
-  * @return bool whether the item was removed or not
 
-  * @since 1.7.8
 
-  */
 
- function remove_submenu_item($label, $group = 'a') {
 
- 	elgg_deprecated_notice('remove_submenu_item was deprecated by elgg_unregister_menu_item', 1.8);
 
- 	return elgg_unregister_menu_item('page', $label);
 
- }
 
- /**
 
-  * Use elgg_view_menu(). Set $menu_name to 'owner_block'.
 
-  *
 
-  * @see elgg_view_menu()
 
-  * @deprecated 1.8 Use the new menu system. elgg_view_menu()
 
-  *
 
-  * @return string
 
-  */
 
- function get_submenu() {
 
- 	elgg_deprecated_notice("get_submenu() has been deprecated by elgg_view_menu()", 1.8);
 
- 	$owner = elgg_get_page_owner_entity();
 
- 	return elgg_view_menu('owner_block', array('entity' => $owner,
 
- 		'class' => 'elgg-menu-owner-block',));
 
- }
 
- /**
 
-  * Adds an item to the site-wide menu.
 
-  *
 
-  * You can obtain the menu array by calling {@link get_register('menu')}
 
-  *
 
-  * @param string $menu_name     The name of the menu item
 
-  * @param string $menu_url      The URL of the page
 
-  * @param array  $menu_children Optionally, an array of submenu items (not used)
 
-  * @param string $context       (not used)
 
-  *
 
-  * @return true|false Depending on success
 
-  * @deprecated 1.8 use elgg_register_menu_item() for the menu 'site'
 
-  */
 
- function add_menu($menu_name, $menu_url, $menu_children = array(), $context = "") {
 
- 	elgg_deprecated_notice('add_menu() deprecated by elgg_register_menu_item()', 1.8);
 
- 	return elgg_register_menu_item('site', array('name' => $menu_name, 'text' => $menu_name,
 
- 		'href' => $menu_url,));
 
- }
 
- /**
 
-  * Removes an item from the menu register
 
-  *
 
-  * @param string $menu_name The name of the menu item
 
-  *
 
-  * @return true|false Depending on success
 
-  * @deprecated 1.8 Use the new menu system
 
-  */
 
- function remove_menu($menu_name) {
 
- 	elgg_deprecated_notice("remove_menu() deprecated by elgg_unregister_menu_item()", 1.8);
 
- 	return elgg_unregister_menu_item('site', $menu_name);
 
- }
 
- /**
 
-  * When given a title, returns a version suitable for inclusion in a URL
 
-  *
 
-  * @param string $title The title
 
-  *
 
-  * @return string The optimised title
 
-  * @deprecated 1.8 Use elgg_get_friendly_title()
 
-  */
 
- function friendly_title($title) {
 
- 	elgg_deprecated_notice('friendly_title was deprecated by elgg_get_friendly_title', 1.8);
 
- 	return elgg_get_friendly_title($title);
 
- }
 
- /**
 
-  * Displays a UNIX timestamp in a friendly way (eg "less than a minute ago")
 
-  *
 
-  * @param int $time A UNIX epoch timestamp
 
-  *
 
-  * @return string The friendly time
 
-  * @deprecated 1.8 Use elgg_view_friendly_time()
 
-  */
 
- function friendly_time($time) {
 
- 	elgg_deprecated_notice('friendly_time was deprecated by elgg_view_friendly_time', 1.8);
 
- 	return elgg_view_friendly_time($time);
 
- }
 
- /**
 
-  * Filters a string into an array of significant words
 
-  *
 
-  * @deprecated 1.8 Don't use this.
 
-  *
 
-  * @param string $string A string
 
-  *
 
-  * @return array
 
-  */
 
- function filter_string($string) {
 
- 	elgg_deprecated_notice('filter_string() was deprecated!', 1.8);
 
- 	// Convert it to lower and trim
 
- 	$string = strtolower($string);
 
- 	$string = trim($string);
 
- 	// Remove links and email addresses
 
- 	// match protocol://address/path/file.extension?some=variable&another=asf%
 
- 	$string = preg_replace("/\s([a-zA-Z]+:\/\/[a-z][a-z0-9\_\.\-]*[a-z]{2,6}" . "[a-zA-Z0-9\/\*\-\?\&\%\=]*)([\s|\.|\,])/iu", " ", $string);
 
- 	// match www.something.domain/path/file.extension?some=variable&another=asf%
 
- 	$string = preg_replace("/\s(www\.[a-z][a-z0-9\_\.\-]*[a-z]{2,6}" . "[a-zA-Z0-9\/\*\-\?\&\%\=]*)([\s|\.|\,])/iu", " ", $string);
 
- 	// match name@address
 
- 	$string = preg_replace("/\s([a-zA-Z][a-zA-Z0-9\_\.\-]*[a-zA-Z]" . "*\@[a-zA-Z][a-zA-Z0-9\_\.\-]*[a-zA-Z]{2,6})([\s|\.|\,])/iu", " ", $string);
 
- 	// Sanitise the string; remove unwanted characters
 
- 	$string = preg_replace('/\W/ui', ' ', $string);
 
- 	// Explode it into an array
 
- 	$terms = explode(' ', $string);
 
- 	// Remove any blacklist terms
 
- 	//$terms = array_filter($terms, 'remove_blacklist');
 
- 	return $terms;
 
- }
 
- /**
 
-  * Returns true if the word in $input is considered significant
 
-  *
 
-  * @deprecated 1.8 Don't use this.
 
-  *
 
-  * @param string $input A word
 
-  *
 
-  * @return true|false
 
-  */
 
- function remove_blacklist($input) {
 
- 	elgg_deprecated_notice('remove_blacklist() was deprecated!', 1.8);
 
- 	global $CONFIG;
 
- 	if (!is_array($CONFIG->wordblacklist)) {
 
- 		return $input;
 
- 	}
 
- 	if (strlen($input) < 3 || in_array($input, $CONFIG->wordblacklist)) {
 
- 		return false;
 
- 	}
 
- 	return true;
 
- }
 
- /**
 
-  * Gets the guid of the entity that owns the current page.
 
-  *
 
-  * @deprecated 1.8  Use elgg_get_page_owner_guid()
 
-  *
 
-  * @return int The current page owner guid (0 if none).
 
-  */
 
- function page_owner() {
 
- 	elgg_deprecated_notice('page_owner() was deprecated by elgg_get_page_owner_guid().', 1.8);
 
- 	return elgg_get_page_owner_guid();
 
- }
 
- /**
 
-  * Gets the owner entity for the current page.
 
-  *
 
-  * @deprecated 1.8  Use elgg_get_page_owner_entity()
 
-  * @return \ElggEntity|false The current page owner or false if none.
 
-  */
 
- function page_owner_entity() {
 
- 	elgg_deprecated_notice('page_owner_entity() was deprecated by elgg_get_page_owner_entity().', 1.8);
 
- 	return elgg_get_page_owner_entity();
 
- }
 
- /**
 
-  * Registers a page owner handler function
 
-  *
 
-  * @param string $functionname The callback function
 
-  *
 
-  * @deprecated 1.8  Use the 'page_owner', 'system' plugin hook
 
-  * @return void
 
-  */
 
- function add_page_owner_handler($functionname) {
 
- 	elgg_deprecated_notice("add_page_owner_handler() was deprecated by the plugin hook 'page_owner', 'system'.", 1.8);
 
- }
 
- /**
 
-  * Set a page owner entity
 
-  *
 
-  * @param int $entitytoset The GUID of the entity
 
-  *
 
-  * @deprecated 1.8  Use elgg_set_page_owner_guid()
 
-  * @return void
 
-  */
 
- function set_page_owner($entitytoset = -1) {
 
- 	elgg_deprecated_notice('set_page_owner() was deprecated by elgg_set_page_owner_guid().', 1.8);
 
- 	elgg_set_page_owner_guid($entitytoset);
 
- }
 
- /**
 
-  * Sets the functional context of a page
 
-  *
 
-  * @deprecated 1.8  Use elgg_set_context()
 
-  *
 
-  * @param string $context The context of the page
 
-  *
 
-  * @return mixed Either the context string, or false on failure
 
-  */
 
- function set_context($context) {
 
- 	elgg_deprecated_notice('set_context() was deprecated by elgg_set_context().', 1.8);
 
- 	elgg_set_context($context);
 
- 	if (empty($context)) {
 
- 		return false;
 
- 	}
 
- 	return $context;
 
- }
 
- /**
 
-  * Returns the functional context of a page
 
-  *
 
-  * @deprecated 1.8  Use elgg_get_context()
 
-  *
 
-  * @return string The context, or 'main' if no context has been provided
 
-  */
 
- function get_context() {
 
- 	elgg_deprecated_notice('get_context() was deprecated by elgg_get_context().', 1.8);
 
- 	return elgg_get_context();
 
- 	// @todo - used to set context based on calling script
 
- 	// $context = get_plugin_name(true)
 
- }
 
- /**
 
-  * Returns a list of plugins to load, in the order that they should be loaded.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_plugin_ids_in_dir() or elgg_get_plugins()
 
-  *
 
-  * @return array List of plugins
 
-  */
 
- function get_plugin_list() {
 
- 	elgg_deprecated_notice('get_plugin_list() is deprecated by elgg_get_plugin_ids_in_dir() or elgg_get_plugins()', 1.8);
 
- 	$plugins = elgg_get_plugins('any');
 
- 	$list = array();
 
- 	if ($plugins) {
 
- 		foreach ($plugins as $i => $plugin) {
 
- 			// in <=1.7 this returned indexed by multiples of 10.
 
- 			// uh...sure...why not.
 
- 			$index = ($i + 1) * 10;
 
- 			$list[$index] = $plugin->getID();
 
- 		}
 
- 	}
 
- 	return $list;
 
- }
 
- /**
 
-  * Regenerates the list of known plugins and saves it to the current site
 
-  *
 
-  * Important: You should regenerate simplecache and the viewpath cache after executing this function
 
-  * otherwise you may experience view display artifacts. Do this with the following code:
 
-  *
 
-  * 		elgg_regenerate_simplecache();
 
-  *		elgg_reset_system_cache();
 
-  *
 
-  * @deprecated 1.8 Use elgg_generate_plugin_entities() and elgg_set_plugin_priorities()
 
-  *
 
-  * @param array $pluginorder Optionally, a list of existing plugins and their orders
 
-  *
 
-  * @return array The new list of plugins and their orders
 
-  */
 
- function regenerate_plugin_list($pluginorder = FALSE) {
 
- 	$msg = 'regenerate_plugin_list() is (sorta) deprecated by elgg_generate_plugin_entities() and'
 
- 			. ' elgg_set_plugin_priorities().';
 
- 	elgg_deprecated_notice($msg, 1.8);
 
- 	// they're probably trying to set it?
 
- 	if ($pluginorder) {
 
- 		if (_elgg_generate_plugin_entities()) {
 
- 			// sort the plugins by the index numerically since we used
 
- 			// weird indexes in the old system.
 
- 			ksort($pluginorder, SORT_NUMERIC);
 
- 			return _elgg_set_plugin_priorities($pluginorder);
 
- 		}
 
- 		return false;
 
- 	} else {
 
- 		// they're probably trying to regenerate from disk?
 
- 		return _elgg_generate_plugin_entities();
 
- 	}
 
- }
 
- /**
 
-  * Get the name of the most recent plugin to be called in the
 
-  * call stack (or the plugin that owns the current page, if any).
 
-  *
 
-  * i.e., if the last plugin was in /mod/foobar/, get_plugin_name would return foo_bar.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_calling_plugin_id()
 
-  *
 
-  * @param boolean $mainfilename If set to true, this will instead determine the
 
-  *                              context from the main script filename called by
 
-  *                              the browser. Default = false.
 
-  *
 
-  * @return string|false Plugin name, or false if no plugin name was called
 
-  */
 
- function get_plugin_name($mainfilename = false) {
 
- 	elgg_deprecated_notice('get_plugin_name() is deprecated by elgg_get_calling_plugin_id()', 1.8);
 
- 	return elgg_get_calling_plugin_id($mainfilename);
 
- }
 
- /**
 
-  * Load and parse a plugin manifest from a plugin XML file.
 
-  *
 
-  * @deprecated 1.8 Use \ElggPlugin->getManifest()
 
-  *
 
-  * @param string $plugin Plugin name.
 
-  * @return array of values
 
-  */
 
- function load_plugin_manifest($plugin) {
 
- 	elgg_deprecated_notice('load_plugin_manifest() is deprecated by \ElggPlugin->getManifest()', 1.8);
 
- 	$xml_file = elgg_get_plugins_path() . "$plugin/manifest.xml";
 
- 	try {
 
- 		$manifest = new \ElggPluginManifest($xml_file, $plugin);
 
- 	} catch(Exception $e) {
 
- 		return false;
 
- 	}
 
- 	return $manifest->getManifest();
 
- }
 
- /**
 
-  * This function checks a plugin manifest 'elgg_version' value against the current install
 
-  * returning TRUE if the elgg_version is >= the current install's version.
 
-  *
 
-  * @deprecated 1.8 Use \ElggPlugin->canActivate()
 
-  *
 
-  * @param string $manifest_elgg_version_string The build version (eg 2009010201).
 
-  * @return bool
 
-  */
 
- function check_plugin_compatibility($manifest_elgg_version_string) {
 
- 	elgg_deprecated_notice('check_plugin_compatibility() is deprecated by \ElggPlugin->canActivate()', 1.8);
 
- 	$version = elgg_get_version();
 
- 	if (strpos($manifest_elgg_version_string, '.') === false) {
 
- 		// Using version
 
- 		$req_version = (int)$manifest_elgg_version_string;
 
- 		return ($version >= $req_version);
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Shorthand function for finding the plugin settings.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_calling_plugin_entity() or elgg_get_plugin_from_id()
 
-  *
 
-  * @param string $plugin_id Optional plugin id, if not specified
 
-  *                          then it is detected from where you are calling.
 
-  *
 
-  * @return mixed
 
-  */
 
- function find_plugin_settings($plugin_id = null) {
 
- 	elgg_deprecated_notice('find_plugin_setting() is deprecated by elgg_get_calling_plugin_entity() or elgg_get_plugin_from_id()', 1.8);
 
- 	if ($plugin_id) {
 
- 		return elgg_get_plugin_from_id($plugin_id);
 
- 	} else {
 
- 		return elgg_get_calling_plugin_entity();
 
- 	}
 
- }
 
- /**
 
-  * Return an array of installed plugins.
 
-  *
 
-  * @deprecated 1.8 use elgg_get_plugins()
 
-  *
 
-  * @param string $status any|enabled|disabled
 
-  * @return array
 
-  */
 
- function get_installed_plugins($status = 'all') {
 
- 	global $CONFIG;
 
- 	elgg_deprecated_notice('get_installed_plugins() was deprecated by elgg_get_plugins()', 1.8);
 
- 	$plugins = elgg_get_plugins($status);
 
- 	if (!$plugins) {
 
- 		return array();
 
- 	}
 
- 	$installed_plugins = array();
 
- 	foreach ($plugins as $plugin) {
 
- 		if (!$plugin->isValid()) {
 
- 			continue;
 
- 		}
 
- 		$include = true;
 
- 		if ($status == 'enabled' && !$plugin->isActive()) {
 
- 			$include = false;
 
- 		} elseif ($status == 'disabled' && $plugin->isActive()) {
 
- 			$include = true;
 
- 		}
 
- 		if ($include) {
 
- 			$installed_plugins[$plugin->getID()] = array(
 
- 				'active' => $plugin->isActive(),
 
- 				'manifest' => $plugin->getManifest()->getManifest()
 
- 			);
 
- 		}
 
- 	}
 
- 	return $installed_plugins;
 
- }
 
- /**
 
-  * Enable a plugin for a site (default current site)
 
-  *
 
-  * Important: You should regenerate simplecache and the viewpath cache after executing this function
 
-  * otherwise you may experience view display artifacts. Do this with the following code:
 
-  *
 
-  * 		elgg_regenerate_simplecache();
 
-  *		elgg_reset_system_cache();
 
-  *
 
-  * @deprecated 1.8 Use \ElggPlugin->activate()
 
-  *
 
-  * @param string $plugin    The plugin name.
 
-  * @param int    $site_guid The site id, if not specified then this is detected.
 
-  *
 
-  * @return array
 
-  * @throws InvalidClassException
 
-  */
 
- function enable_plugin($plugin, $site_guid = null) {
 
- 	elgg_deprecated_notice('enable_plugin() was deprecated by \ElggPlugin->activate()', 1.8);
 
- 	$plugin = sanitise_string($plugin);
 
- 	$site_guid = (int) $site_guid;
 
- 	if (!$site_guid) {
 
- 		$site = get_config('site');
 
- 		$site_guid = $site->guid;
 
- 	}
 
- 	try {
 
- 		$plugin = new \ElggPlugin($plugin);
 
- 	} catch(Exception $e) {
 
- 		return false;
 
- 	}
 
- 	if (!$plugin->canActivate($site_guid)) {
 
- 		return false;
 
- 	}
 
- 	return $plugin->activate($site_guid);
 
- }
 
- /**
 
-  * Disable a plugin for a site (default current site)
 
-  *
 
-  * Important: You should regenerate simplecache and the viewpath cache after executing this function
 
-  * otherwise you may experience view display artifacts. Do this with the following code:
 
-  *
 
-  * 		elgg_regenerate_simplecache();
 
-  *		elgg_reset_system_cache();
 
-  *
 
-  * @deprecated 1.8 Use \ElggPlugin->deactivate()
 
-  *
 
-  * @param string $plugin    The plugin name.
 
-  * @param int    $site_guid The site id, if not specified then this is detected.
 
-  *
 
-  * @return bool
 
-  * @throws InvalidClassException
 
-  */
 
- function disable_plugin($plugin, $site_guid = 0) {
 
- 	elgg_deprecated_notice('disable_plugin() was deprecated by \ElggPlugin->deactivate()', 1.8);
 
- 	$plugin = sanitise_string($plugin);
 
- 	$site_guid = (int) $site_guid;
 
- 	if (!$site_guid) {
 
- 		$site = get_config('site');
 
- 		$site_guid = $site->guid;
 
- 	}
 
- 	try {
 
- 		$plugin = new \ElggPlugin($plugin);
 
- 	} catch(Exception $e) {
 
- 		return false;
 
- 	}
 
- 	return $plugin->deactivate($site_guid);
 
- }
 
- /**
 
-  * Return whether a plugin is enabled or not.
 
-  *
 
-  * @deprecated 1.8 Use elgg_is_active_plugin()
 
-  *
 
-  * @param string $plugin    The plugin name.
 
-  * @param int    $site_guid The site id, if not specified then this is detected.
 
-  *
 
-  * @return bool
 
-  */
 
- function is_plugin_enabled($plugin, $site_guid = 0) {
 
- 	elgg_deprecated_notice('is_plugin_enabled() was deprecated by elgg_is_active_plugin()', 1.8);
 
- 	return elgg_is_active_plugin($plugin, $site_guid);
 
- }
 
- /**
 
-  * Get entities based on their private data.
 
-  *
 
-  * @param string  $name           The name of the setting
 
-  * @param string  $value          The value of the setting
 
-  * @param string  $type           The type of entity (eg "user", "object" etc)
 
-  * @param string  $subtype        The arbitrary subtype of the entity
 
-  * @param int     $owner_guid     The GUID of the owning user
 
-  * @param string  $order_by       The field to order by; by default, time_created desc
 
-  * @param int     $limit          The number of entities to return; 10 by default
 
-  * @param int     $offset         The indexing offset, 0 by default
 
-  * @param boolean $count          Return a count of entities
 
-  * @param int     $site_guid      The site to get entities for. 0 for current, -1 for any
 
-  * @param mixed   $container_guid The container(s) GUIDs
 
-  *
 
-  * @return array A list of entities.
 
-  * @deprecated 1.8 Use elgg_get_entities_from_private_settings()
 
-  */
 
- function get_entities_from_private_setting($name = "", $value = "", $type = "", $subtype = "",
 
- $owner_guid = 0, $order_by = "", $limit = 10, $offset = 0, $count = false, $site_guid = 0,
 
- $container_guid = null) {
 
- 	elgg_deprecated_notice('get_entities_from_private_setting() was deprecated by elgg_get_entities_from_private_setting()!', 1.8);
 
- 	$options = array();
 
- 	$options['private_setting_name'] = $name;
 
- 	$options['private_setting_value'] = $value;
 
- 	// set container_guid to owner_guid to emulate old functionality
 
- 	if ($owner_guid != "") {
 
- 		if (is_null($container_guid)) {
 
- 			$container_guid = $owner_guid;
 
- 		}
 
- 	}
 
- 	if ($type) {
 
- 		$options['types'] = $type;
 
- 	}
 
- 	if ($subtype) {
 
- 		$options['subtypes'] = $subtype;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			$options['owner_guids'] = $owner_guid;
 
- 		} else {
 
- 			$options['owner_guid'] = $owner_guid;
 
- 		}
 
- 	}
 
- 	if ($container_guid) {
 
- 		if (is_array($container_guid)) {
 
- 			$options['container_guids'] = $container_guid;
 
- 		} else {
 
- 			$options['container_guid'] = $container_guid;
 
- 		}
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	if ($offset) {
 
- 		$options['offset'] = $offset;
 
- 	}
 
- 	if ($order_by) {
 
- 		$options['order_by'];
 
- 	}
 
- 	if ($site_guid) {
 
- 		$options['site_guid'];
 
- 	}
 
- 	if ($count) {
 
- 		$options['count'] = $count;
 
- 	}
 
- 	return elgg_get_entities_from_private_settings($options);
 
- }
 
- /**
 
-  * Get entities based on their private data by multiple keys.
 
-  *
 
-  * @param string $name           The name of the setting
 
-  * @param mixed  $type           Entity type
 
-  * @param string $subtype        Entity subtype
 
-  * @param int    $owner_guid     The GUID of the owning user
 
-  * @param string $order_by       The field to order by; by default, time_created desc
 
-  * @param int    $limit          The number of entities to return; 10 by default
 
-  * @param int    $offset         The indexing offset, 0 by default
 
-  * @param bool   $count          Count entities
 
-  * @param int    $site_guid      Site GUID. 0 for current, -1 for any.
 
-  * @param mixed  $container_guid Container GUID
 
-  *
 
-  * @return array A list of entities.
 
-  * @deprecated 1.8 Use elgg_get_entities_from_private_settings()
 
-  */
 
- function get_entities_from_private_setting_multi(array $name, $type = "", $subtype = "",
 
- $owner_guid = 0, $order_by = "", $limit = 10, $offset = 0, $count = false,
 
- $site_guid = 0, $container_guid = null) {
 
- 	elgg_deprecated_notice('get_entities_from_private_setting_multi() was deprecated by elgg_get_entities_from_private_settings()!', 1.8);
 
- 	$options = array();
 
- 	$pairs = array();
 
- 	foreach ($name as $setting_name => $setting_value) {
 
- 		$pairs[] = array('name' => $setting_name, 'value' => $setting_value);
 
- 	}
 
- 	$options['private_setting_name_value_pairs'] = $pairs;
 
- 	// set container_guid to owner_guid to emulate old functionality
 
- 	if ($owner_guid != "") {
 
- 		if (is_null($container_guid)) {
 
- 			$container_guid = $owner_guid;
 
- 		}
 
- 	}
 
- 	if ($type) {
 
- 		$options['types'] = $type;
 
- 	}
 
- 	if ($subtype) {
 
- 		$options['subtypes'] = $subtype;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			$options['owner_guids'] = $owner_guid;
 
- 		} else {
 
- 			$options['owner_guid'] = $owner_guid;
 
- 		}
 
- 	}
 
- 	if ($container_guid) {
 
- 		if (is_array($container_guid)) {
 
- 			$options['container_guids'] = $container_guid;
 
- 		} else {
 
- 			$options['container_guid'] = $container_guid;
 
- 		}
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	if ($offset) {
 
- 		$options['offset'] = $offset;
 
- 	}
 
- 	if ($order_by) {
 
- 		$options['order_by'];
 
- 	}
 
- 	if ($site_guid) {
 
- 		$options['site_guid'];
 
- 	}
 
- 	if ($count) {
 
- 		$options['count'] = $count;
 
- 	}
 
- 	return elgg_get_entities_from_private_settings($options);
 
- }
 
- /**
 
-  * Returns a viewable list of entities by relationship
 
-  *
 
-  * @see elgg_view_entity_list
 
-  *
 
-  * @deprecated 1.8 Use elgg_list_entities_from_relationship()
 
-  *
 
-  * @param string $relationship The relationship eg "friends_of"
 
-  * @param int $relationship_guid The guid of the entity to use query
 
-  * @param bool $inverse_relationship Reverse the normal function of the query to instead say "give me all entities for whome $relationship_guid is a $relationship of"
 
-  * @param string $type The type of entity (eg 'object')
 
-  * @param string $subtype The entity subtype
 
-  * @param int $owner_guid The owner (default: all)
 
-  * @param int $limit The number of entities to display on a page
 
-  * @param true|false $fullview Whether or not to display the full view (default: true)
 
-  * @param true|false $viewtypetoggle Whether or not to allow gallery view
 
-  * @param true|false $pagination Whether to display pagination (default: true)
 
-  * @param bool $order_by SQL order by clause
 
-  * @return string The viewable list of entities
 
-  */
 
- function list_entities_from_relationship($relationship, $relationship_guid,
 
- $inverse_relationship = false, $type = ELGG_ENTITIES_ANY_VALUE,
 
- $subtype = ELGG_ENTITIES_ANY_VALUE, $owner_guid = 0, $limit = 10,
 
- $fullview = true, $listtypetoggle = false, $pagination = true, $order_by = '') {
 
- 	elgg_deprecated_notice("list_entities_from_relationship was deprecated by elgg_list_entities_from_relationship()!", 1.8);
 
- 	return elgg_list_entities_from_relationship(array(
 
- 		'relationship' => $relationship,
 
- 		'relationship_guid' => $relationship_guid,
 
- 		'inverse_relationship' => $inverse_relationship,
 
- 		'type' => $type,
 
- 		'subtype' => $subtype,
 
- 		'owner_guid' => $owner_guid,
 
- 		'order_by' => $order_by,
 
- 		'limit' => $limit,
 
- 		'full_view' => $fullview,
 
- 		'list_type_toggle' => $listtypetoggle,
 
- 		'pagination' => $pagination,
 
- 	));
 
- }
 
- /**
 
-  * Gets the number of entities by a the number of entities related to them in a particular way.
 
-  * This is a good way to get out the users with the most friends, or the groups with the
 
-  * most members.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_entities_from_relationship_count()
 
-  *
 
-  * @param string $relationship         The relationship eg "friends_of"
 
-  * @param bool   $inverse_relationship Inverse relationship owners
 
-  * @param string $type                 The type of entity (default: all)
 
-  * @param string $subtype              The entity subtype (default: all)
 
-  * @param int    $owner_guid           The owner of the entities (default: none)
 
-  * @param int    $limit                Limit
 
-  * @param int    $offset               Offset
 
-  * @param bool   $count                Return a count instead of entities
 
-  * @param int    $site_guid            Site GUID
 
-  *
 
-  * @return array|int|false An array of entities, or the number of entities, or false on failure
 
-  */
 
- function get_entities_by_relationship_count($relationship, $inverse_relationship = true, $type = "",
 
- $subtype = "", $owner_guid = 0, $limit = 10, $offset = 0, $count = false, $site_guid = 0) {
 
- 	elgg_deprecated_notice('get_entities_by_relationship_count() is deprecated by elgg_get_entities_from_relationship_count()', 1.8);
 
- 	$options = array();
 
- 	$options['relationship'] = $relationship;
 
- 	// this used to default to true, which is wrong.
 
- 	// flip it for the new function
 
- 	$options['inverse_relationship'] = !$inverse_relationship;
 
- 	if ($type) {
 
- 		$options['types'] = $type;
 
- 	}
 
- 	if ($subtype) {
 
- 		$options['subtypes'] = $subtype;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		$options['owner_guid'] = $owner_guid;
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	if ($offset) {
 
- 		$options['offset'] = $offset;
 
- 	}
 
- 	if ($site_guid) {
 
- 		$options['site_guid'];
 
- 	}
 
- 	if ($count) {
 
- 		$options['count'] = $count;
 
- 	}
 
- 	return elgg_get_entities_from_relationship_count($options);
 
- }
 
- /**
 
-  * Displays a human-readable list of entities
 
-  *
 
-  * @deprecated 1.8 Use elgg_list_entities_from_relationship_count()
 
-  *
 
-  * @param string $relationship         The relationship eg "friends_of"
 
-  * @param bool   $inverse_relationship Inverse relationship owners
 
-  * @param string $type                 The type of entity (eg 'object')
 
-  * @param string $subtype              The entity subtype
 
-  * @param int    $owner_guid           The owner (default: all)
 
-  * @param int    $limit                The number of entities to display on a page
 
-  * @param bool   $fullview             Whether or not to display the full view (default: true)
 
-  * @param bool   $listtypetoggle       Whether or not to allow gallery view
 
-  * @param bool   $pagination           Whether to display pagination (default: true)
 
-  *
 
-  * @return string The viewable list of entities
 
-  */
 
- function list_entities_by_relationship_count($relationship, $inverse_relationship = true,
 
- $type = "", $subtype = "", $owner_guid = 0, $limit = 10, $fullview = true,
 
- $listtypetoggle = false, $pagination = true) {
 
- 	elgg_deprecated_notice('list_entities_by_relationship_count() was deprecated by elgg_list_entities_from_relationship_count()', 1.8);
 
- 	$options = array();
 
- 	$options['relationship'] = $relationship;
 
- 	// this used to default to true, which is wrong.
 
- 	// flip it for the new function
 
- 	$options['inverse_relationship'] = !$inverse_relationship;
 
- 	if ($type) {
 
- 		$options['types'] = $type;
 
- 	}
 
- 	if ($subtype) {
 
- 		$options['subtypes'] = $subtype;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		$options['owner_guid'] = $owner_guid;
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	$options['full_view'] = $fullview;
 
- 	return elgg_list_entities_from_relationship_count($options);
 
- }
 
- /**
 
-  * Gets the number of entities by a the number of entities related to
 
-  * them in a particular way also constrained by metadata.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_entities_from_relationship()
 
-  *
 
-  * @param string $relationship         The relationship eg "friends_of"
 
-  * @param int    $relationship_guid    The guid of the entity to use query
 
-  * @param bool   $inverse_relationship Inverse relationship owner
 
-  * @param String $meta_name            The metadata name
 
-  * @param String $meta_value           The metadata value
 
-  * @param string $type                 The type of entity (default: all)
 
-  * @param string $subtype              The entity subtype (default: all)
 
-  * @param int    $owner_guid           The owner of the entities (default: none)
 
-  * @param int    $limit                Limit
 
-  * @param int    $offset               Offset
 
-  * @param bool   $count                Return a count instead of entities
 
-  * @param int    $site_guid            Site GUID
 
-  *
 
-  * @return array|int|false An array of entities, or the number of entities, or false on failure
 
-  */
 
- function get_entities_from_relationships_and_meta($relationship, $relationship_guid,
 
- $inverse_relationship = false, $meta_name = "", $meta_value = "", $type = "",
 
- $subtype = "", $owner_guid = 0, $limit = 10, $offset = 0, $count = false, $site_guid = 0) {
 
- 	elgg_deprecated_notice('get_entities_from_relationship_and_meta() was deprecated by elgg_get_entities_from_relationship()!', 1.7);
 
- 	$options = array();
 
- 	$options['relationship'] = $relationship;
 
- 	$options['relationship_guid'] = $relationship_guid;
 
- 	$options['inverse_relationship'] = $inverse_relationship;
 
- 	if ($meta_value) {
 
- 		$options['values'] = $meta_value;
 
- 	}
 
- 	if ($type) {
 
- 		$options['types'] = $type;
 
- 	}
 
- 	if ($subtype) {
 
- 		$options['subtypes'] = $subtype;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		$options['owner_guid'] = $owner_guid;
 
- 	}
 
- 	if ($limit) {
 
- 		$options['limit'] = $limit;
 
- 	}
 
- 	if ($offset) {
 
- 		$options['offset'] = $offset;
 
- 	}
 
- 	if ($site_guid) {
 
- 		$options['site_guid'] = $site_guid;
 
- 	}
 
- 	if ($count) {
 
- 		$options['count'] = $count;
 
- 	}
 
- 	return elgg_get_entities_from_relationship($options);
 
- }
 
- /**
 
-  * Retrieves items from the river. All parameters are optional.
 
-  *
 
-  * @param int|array $subject_guid         Acting entity to restrict to. Default: all
 
-  * @param int|array $object_guid          Entity being acted on to restrict to. Default: all
 
-  * @param string    $subject_relationship If set to a relationship type, this will use
 
-  * 	                                      $subject_guid as the starting point and set the
 
-  *                                        subjects to be all users this
 
-  *                                        entity has this relationship with (eg 'friend').
 
-  *                                        Default: blank
 
-  * @param string    $type                 The type of entity to restrict to. Default: all
 
-  * @param string    $subtype              The subtype of entity to restrict to. Default: all
 
-  * @param string    $action_type          The type of river action to restrict to. Default: all
 
-  * @param int       $limit                The number of items to retrieve. Default: 20
 
-  * @param int       $offset               The page offset. Default: 0
 
-  * @param int       $posted_min           The minimum time period to look at. Default: none
 
-  * @param int       $posted_max           The maximum time period to look at. Default: none
 
-  *
 
-  * @return array|false Depending on success
 
-  * @deprecated 1.8 Use elgg_get_river()
 
-  */
 
- function get_river_items($subject_guid = 0, $object_guid = 0, $subject_relationship = '',
 
- $type = '',	$subtype = '', $action_type = '', $limit = 20, $offset = 0, $posted_min = 0,
 
- $posted_max = 0) {
 
- 	elgg_deprecated_notice("get_river_items deprecated by elgg_get_river", 1.8);
 
- 	$options = array();
 
- 	if ($subject_guid) {
 
- 		$options['subject_guid'] = $subject_guid;
 
- 	}
 
- 	if ($object_guid) {
 
- 		$options['object_guid'] = $object_guid;
 
- 	}
 
- 	if ($subject_relationship) {
 
- 		$options['relationship'] = $subject_relationship;
 
- 		unset($options['subject_guid']);
 
- 		$options['relationship_guid'] = $subject_guid;
 
- 	}
 
- 	if ($type) {
 
- 		$options['type'] = $type;
 
- 	}
 
- 	if ($subtype) {
 
- 		$options['subtype'] = $subtype;
 
- 	}
 
- 	if ($action_type) {
 
- 		$options['action_type'] = $action_type;
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	$options['offset'] = $offset;
 
- 	if ($posted_min) {
 
- 		$options['posted_time_lower'] = $posted_min;
 
- 	}
 
- 	if ($posted_max) {
 
- 		$options['posted_time_upper'] = $posted_max;
 
- 	}
 
- 	return elgg_get_river($options);
 
- }
 
- /**
 
-  * Returns a human-readable version of the river.
 
-  *
 
-  * @param int|array $subject_guid         Acting entity to restrict to. Default: all
 
-  * @param int|array $object_guid          Entity being acted on to restrict to. Default: all
 
-  * @param string    $subject_relationship If set to a relationship type, this will use
 
-  * 	                                      $subject_guid as the starting point and set
 
-  *                                        the subjects to be all users this entity has this
 
-  *                                        relationship with (eg 'friend'). Default: blank
 
-  * @param string    $type                 The type of entity to restrict to. Default: all
 
-  * @param string    $subtype              The subtype of entity to restrict to. Default: all
 
-  * @param string    $action_type          The type of river action to restrict to. Default: all
 
-  * @param int       $limit                The number of items to retrieve. Default: 20
 
-  * @param int       $posted_min           The minimum time period to look at. Default: none
 
-  * @param int       $posted_max           The maximum time period to look at. Default: none
 
-  * @param bool      $pagination           Show pagination?
 
-  *
 
-  * @return string Human-readable river.
 
-  * @deprecated 1.8 Use elgg_list_river()
 
-  */
 
- function elgg_view_river_items($subject_guid = 0, $object_guid = 0, $subject_relationship = '',
 
- $type = '', $subtype = '', $action_type = '', $limit = 20, $posted_min = 0,
 
- $posted_max = 0, $pagination = true) {
 
- 	elgg_deprecated_notice("elgg_view_river_items deprecated for elgg_list_river", 1.8);
 
- 	$river_items = get_river_items($subject_guid, $object_guid, $subject_relationship,
 
- 			$type, $subtype, $action_type, $limit + 1, $posted_min, $posted_max);
 
- 	// Get input from outside world and sanitise it
 
- 	$offset = (int) get_input('offset', 0);
 
- 	// view them
 
- 	$params = array(
 
- 		'items' => $river_items,
 
- 		'count' => count($river_items),
 
- 		'offset' => $offset,
 
- 		'limit' => $limit,
 
- 		'pagination' => $pagination,
 
- 		'list-class' => 'elgg-list-river',
 
- 	);
 
- 	return elgg_view('page/components/list', $params);
 
- }
 
- /**
 
-  * Construct and execute the query required for the activity stream.
 
-  *
 
-  * @deprecated 1.8 This is outdated and uses the systemlog table instead of the river table.
 
-  *                 Don't use it.
 
-  */
 
- function get_activity_stream_data($limit = 10, $offset = 0, $type = "", $subtype = "",
 
- $owner_guid = "", $owner_relationship = "") {
 
- 	elgg_deprecated_notice("get_activity_stream_data was deprecated", 1.8);
 
- 	global $CONFIG;
 
- 	$limit = (int)$limit;
 
- 	$offset = (int)$offset;
 
- 	if ($type) {
 
- 		if (!is_array($type)) {
 
- 			$type = array(sanitise_string($type));
 
- 		} else {
 
- 			foreach ($type as $k => $v) {
 
- 				$type[$k] = sanitise_string($v);
 
- 			}
 
- 		}
 
- 	}
 
- 	if ($subtype) {
 
- 		if (!is_array($subtype)) {
 
- 			$subtype = array(sanitise_string($subtype));
 
- 		} else {
 
- 			foreach ($subtype as $k => $v) {
 
- 				$subtype[$k] = sanitise_string($v);
 
- 			}
 
- 		}
 
- 	}
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			foreach ($owner_guid as $k => $v) {
 
- 				$owner_guid[$k] = (int)$v;
 
- 			}
 
- 		} else {
 
- 			$owner_guid = array((int)$owner_guid);
 
- 		}
 
- 	}
 
- 	$owner_relationship = sanitise_string($owner_relationship);
 
- 	// Get a list of possible views
 
- 	$activity_events = array();
 
- 	$activity_views = array_merge(elgg_view_tree('activity', 'default'),
 
- 		elgg_view_tree('river', 'default'));
 
- 	$done = array();
 
- 	foreach ($activity_views as $view) {
 
- 		$fragments = explode('/', $view);
 
- 		$tmp = explode('/', $view, 2);
 
- 		$tmp = $tmp[1];
 
- 		if ((isset($fragments[0])) && (($fragments[0] == 'river') || ($fragments[0] == 'activity'))
 
- 			&& (!in_array($tmp, $done))) {
 
- 			if (isset($fragments[1])) {
 
- 				$f = array();
 
- 				for ($n = 1; $n < count($fragments); $n++) {
 
- 					$val = sanitise_string($fragments[$n]);
 
- 					switch($n) {
 
- 						case 1: $key = 'type'; break;
 
- 						case 2: $key = 'subtype'; break;
 
- 						case 3: $key = 'event'; break;
 
- 					}
 
- 					$f[$key] = $val;
 
- 				}
 
- 				// Filter result based on parameters
 
- 				$add = true;
 
- 				if ($type) {
 
- 					if (!in_array($f['type'], $type)) {
 
- 						$add = false;
 
- 					}
 
- 				}
 
- 				if (($add) && ($subtype)) {
 
- 					if (!in_array($f['subtype'], $subtype)) {
 
- 						$add = false;
 
- 					}
 
- 				}
 
- 				if ($add) {
 
- 					$activity_events[] = $f;
 
- 				}
 
- 			}
 
- 			$done[] = $tmp;
 
- 		}
 
- 	}
 
- 	$n = 0;
 
- 	foreach ($activity_events as $details) {
 
- 		// Get what we're talking about
 
- 		if ($details['subtype'] == 'default') {
 
- 			$details['subtype'] = '';
 
- 		}
 
- 		if (($details['type']) && ($details['event'])) {
 
- 			if ($n > 0) {
 
- 				$obj_query .= " or ";
 
- 			}
 
- 			$access = "";
 
- 			if ($details['type'] != 'relationship') {
 
- 				$access = " and " . _elgg_get_access_where_sql(array('table_alias' => 'sl'));
 
- 			}
 
- 			$obj_query .= "( sl.object_type='{$details['type']}'
 
- 				AND sl.object_subtype='{$details['subtype']}'
 
- 				AND sl.event='{$details['event']}' $access )";
 
- 			$n++;
 
- 		}
 
- 	}
 
- 	// User
 
- 	if ((count($owner_guid)) &&  ($owner_guid[0] != 0)) {
 
- 		$user = " and sl.performed_by_guid in (" . implode(',', $owner_guid) . ")";
 
- 		if ($owner_relationship) {
 
- 			$friendsarray = "";
 
- 			if ($friends = elgg_get_entities_from_relationship(array(
 
- 				'relationship' => $owner_relationship,
 
- 				'relationship_guid' => $owner_guid[0],
 
- 				'inverse_relationship' => FALSE,
 
- 				'type' => 'user',
 
- 				'subtype' => $subtype,
 
- 				'limit' => false))
 
- 			) {
 
- 				$friendsarray = array();
 
- 				foreach ($friends as $friend) {
 
- 					$friendsarray[] = $friend->getGUID();
 
- 				}
 
- 				$user = " and sl.performed_by_guid in (" . implode(',', $friendsarray) . ")";
 
- 			}
 
- 		}
 
- 	}
 
- 	$query = "SELECT sl.* FROM {$CONFIG->dbprefix}system_log sl
 
- 		WHERE 1 $user AND ($obj_query)
 
- 		ORDER BY sl.time_created desc limit $offset, $limit";
 
- 	return get_data($query);
 
- }
 
- /**
 
-  * Perform standard authentication with a given username and password.
 
-  * Returns an \ElggUser object for use with login.
 
-  *
 
-  * @see login
 
-  *
 
-  * @param string $username The username, optionally (for standard logins)
 
-  * @param string $password The password, optionally (for standard logins)
 
-  *
 
-  * @return \ElggUser|false The authenticated user object, or false on failure.
 
-  *
 
-  * @deprecated 1.8 Use elgg_authenticate
 
-  */
 
- function authenticate($username, $password) {
 
- 	elgg_deprecated_notice('authenticate() has been deprecated for elgg_authenticate()', 1.8);
 
- 	$pam = new \ElggPAM('user');
 
- 	$credentials = array('username' => $username, 'password' => $password);
 
- 	$result = $pam->authenticate($credentials);
 
- 	if ($result) {
 
- 		return get_user_by_username($username);
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Get the members of a site.
 
-  *
 
-  * @param int $site_guid Site GUID
 
-  * @param int $limit     User GUID
 
-  * @param int $offset    Offset
 
-  *
 
-  * @return mixed
 
-  * @deprecated 1.8 Use \ElggSite::getMembers()
 
-  */
 
- function get_site_members($site_guid, $limit = 10, $offset = 0) {
 
- 	elgg_deprecated_notice("get_site_members() deprecated.
 
- 		Use \ElggSite::getMembers()", 1.8);
 
- 	$site = get_entity($site_guid);
 
- 	if ($site) {
 
- 		return $site->getMembers($limit, $offset);
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Display a list of site members
 
-  *
 
-  * @param int  $site_guid The GUID of the site
 
-  * @param int  $limit     The number of members to display on a page
 
-  * @param bool $fullview  Whether or not to display the full view (default: true)
 
-  *
 
-  * @return string A displayable list of members
 
-  * @deprecated 1.8 Use \ElggSite::listMembers()
 
-  */
 
- function list_site_members($site_guid, $limit = 10, $fullview = true) {
 
- 	elgg_deprecated_notice("list_site_members() deprecated.
 
- 		Use \ElggSite::listMembers()", 1.8);
 
- 	$options = array(
 
- 		'limit' => $limit,
 
- 		'full_view' => $fullview,
 
- 	);
 
- 	$site = get_entity($site_guid);
 
- 	if ($site) {
 
- 		return $site->listMembers($options);
 
- 	}
 
- 	return '';
 
- }
 
- /**
 
-  * Add a collection to a site.
 
-  *
 
-  * @param int $site_guid       Site GUID
 
-  * @param int $collection_guid Collection GUID
 
-  *
 
-  * @return mixed
 
-  * @deprecated 1.8 Don't use this.
 
-  */
 
- function add_site_collection($site_guid, $collection_guid) {
 
- 	elgg_deprecated_notice("add_site_collection has been deprecated", 1.8);
 
- 	global $CONFIG;
 
- 	$site_guid = (int)$site_guid;
 
- 	$collection_guid = (int)$collection_guid;
 
- 	return add_entity_relationship($collection_guid, "member_of_site", $site_guid);
 
- }
 
- /**
 
-  * Remove a collection from a site.
 
-  *
 
-  * @param int $site_guid       Site GUID
 
-  * @param int $collection_guid Collection GUID
 
-  *
 
-  * @return mixed
 
-  * @deprecated 1.8 Don't use this.
 
-  */
 
- function remove_site_collection($site_guid, $collection_guid) {
 
- 	elgg_deprecated_notice("remove_site_collection has been deprecated", 1.8);
 
- 	$site_guid = (int)$site_guid;
 
- 	$collection_guid = (int)$collection_guid;
 
- 	return remove_entity_relationship($collection_guid, "member_of_site", $site_guid);
 
- }
 
- /**
 
-  * Get the collections belonging to a site.
 
-  *
 
-  * @param int    $site_guid Site GUID
 
-  * @param string $subtype   Subtype
 
-  * @param int    $limit     Limit
 
-  * @param int    $offset    Offset
 
-  *
 
-  * @return mixed
 
-  * @deprecated 1.8 Don't use this.
 
-  */
 
- function get_site_collections($site_guid, $subtype = "", $limit = 10, $offset = 0) {
 
- 	elgg_deprecated_notice("get_site_collections has been deprecated", 1.8);
 
- 	$site_guid = (int)$site_guid;
 
- 	$subtype = sanitise_string($subtype);
 
- 	$limit = (int)$limit;
 
- 	$offset = (int)$offset;
 
- 	// collection isn't a valid type.  This won't work.
 
- 	return elgg_get_entities_from_relationship(array(
 
- 		'relationship' => 'member_of_site',
 
- 		'relationship_guid' => $site_guid,
 
- 		'inverse_relationship' => TRUE,
 
- 		'type' => 'collection',
 
- 		'subtype' => $subtype,
 
- 		'limit' => $limit,
 
- 		'offset' => $offset
 
- 	));
 
- }
 
- /**
 
-  * Get an array of tags with weights for use with the output/tagcloud view.
 
-  *
 
-  * @deprecated 1.8  Use elgg_get_tags().
 
-  *
 
-  * @param int    $threshold      Get the threshold of minimum number of each tags to
 
-  *                               bother with (ie only show tags where there are more
 
-  *                               than $threshold occurances)
 
-  * @param int    $limit          Number of tags to return
 
-  * @param string $metadata_name  Optionally, the name of the field you want to grab for
 
-  * @param string $entity_type    Optionally, the entity type ('object' etc)
 
-  * @param string $entity_subtype The entity subtype, optionally
 
-  * @param int    $owner_guid     The GUID of the tags owner, optionally
 
-  * @param int    $site_guid      Optionally, the site to restrict to (default is the current site)
 
-  * @param int    $start_ts       Optionally specify a start timestamp for tags used to
 
-  *                               generate cloud.
 
-  * @param int    $end_ts         Optionally specify an end timestamp for tags used to generate cloud
 
-  *
 
-  * @return array|false Array of objects with ->tag and ->total values, or false on failure
 
-  */
 
- function get_tags($threshold = 1, $limit = 10, $metadata_name = "", $entity_type = "object",
 
- $entity_subtype = "", $owner_guid = "", $site_guid = -1, $start_ts = "", $end_ts = "") {
 
- 	elgg_deprecated_notice('get_tags() has been replaced by elgg_get_tags()', 1.8);
 
- 	if (is_array($metadata_name)) {
 
- 		return false;
 
- 	}
 
- 	$options = array();
 
- 	if ($metadata_name === '') {
 
- 		$options['tag_names'] = array();
 
- 	} else {
 
- 		$options['tag_names'] = array($metadata_name);
 
- 	}
 
- 	$options['threshold'] = $threshold;
 
- 	$options['limit'] = $limit;
 
- 	// rewrite owner_guid to container_guid to emulate old functionality
 
- 	$container_guid = $owner_guid;
 
- 	if ($container_guid) {
 
- 		$options['container_guids'] = $container_guid;
 
- 	}
 
- 	if ($entity_type) {
 
- 		$options['type'] = $entity_type;
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$options['subtype'] = $entity_subtype;
 
- 	}
 
- 	if ($site_guid != -1) {
 
- 		$options['site_guids'] = $site_guid;
 
- 	}
 
- 	if ($end_ts) {
 
- 		$options['created_time_upper'] = $end_ts;
 
- 	}
 
- 	if ($start_ts) {
 
- 		$options['created_time_lower'] = $start_ts;
 
- 	}
 
- 	$r = elgg_get_tags($options);
 
- 	return $r;
 
- }
 
- /**
 
-  * Loads and displays a tagcloud given particular criteria.
 
-  *
 
-  * @deprecated 1.8 use elgg_view_tagcloud()
 
-  *
 
-  * @param int    $threshold      Get the threshold of minimum number of each tags
 
-  *                               to bother with (ie only show tags where there are
 
-  *                               more than $threshold occurances)
 
-  * @param int    $limit          Number of tags to return
 
-  * @param string $metadata_name  Optionally, the name of the field you want to grab for
 
-  * @param string $entity_type    Optionally, the entity type ('object' etc)
 
-  * @param string $entity_subtype The entity subtype, optionally
 
-  * @param int    $owner_guid     The GUID of the tags owner, optionally
 
-  * @param int    $site_guid      Optionally, the site to restrict to (default is the current site)
 
-  * @param int    $start_ts       Optionally specify a start timestamp for tags used to
 
-  *                               generate cloud.
 
-  * @param int    $end_ts         Optionally specify an end timestamp for tags used to generate
 
-  *                               cloud.
 
-  *
 
-  * @return string The HTML (or other, depending on view type) of the tagcloud.
 
-  */
 
- function display_tagcloud($threshold = 1, $limit = 10, $metadata_name = "", $entity_type = "object",
 
- $entity_subtype = "", $owner_guid = "", $site_guid = -1, $start_ts = "", $end_ts = "") {
 
- 	elgg_deprecated_notice('display_tagcloud() was deprecated by elgg_view_tagcloud()!', 1.8);
 
- 	$tags = get_tags($threshold, $limit, $metadata_name, $entity_type,
 
- 		$entity_subtype, $owner_guid, $site_guid, $start_ts, $end_ts);
 
- 	return elgg_view('output/tagcloud', array(
 
- 		'value' => $tags,
 
- 		'type' => $entity_type,
 
- 		'subtype' => $entity_subtype,
 
- 	));
 
- }
 
- /**
 
-  * Obtains a list of objects owned by a user
 
-  *
 
-  * @param int    $user_guid The GUID of the owning user
 
-  * @param string $subtype   Optionally, the subtype of objects
 
-  * @param int    $limit     The number of results to return (default 10)
 
-  * @param int    $offset    Indexing offset, if any
 
-  * @param int    $timelower The earliest time the entity can have been created. Default: all
 
-  * @param int    $timeupper The latest time the entity can have been created. Default: all
 
-  *
 
-  * @return false|array An array of \ElggObjects or false, depending on success
 
-  * @deprecated 1.8 Use elgg_get_entities() instead
 
-  */
 
- function get_user_objects($user_guid, $subtype = ELGG_ENTITIES_ANY_VALUE, $limit = 10,
 
- $offset = 0, $timelower = 0, $timeupper = 0) {
 
- 	elgg_deprecated_notice("get_user_objects() was deprecated in favor of elgg_get_entities()", 1.8);
 
- 	$ntt = elgg_get_entities(array(
 
- 		'type' => 'object',
 
- 		'subtype' => $subtype,
 
- 		'owner_guid' => $user_guid,
 
- 		'limit' => $limit,
 
- 		'offset' => $offset,
 
- 		'container_guid' => $user_guid,
 
- 		'created_time_lower' => $timelower,
 
- 		'created_time_upper' => $timeupper
 
- 	));
 
- 	return $ntt;
 
- }
 
- /**
 
-  * Counts the objects (optionally of a particular subtype) owned by a user
 
-  *
 
-  * @param int    $user_guid The GUID of the owning user
 
-  * @param string $subtype   Optionally, the subtype of objects
 
-  * @param int    $timelower The earliest time the entity can have been created. Default: all
 
-  * @param int    $timeupper The latest time the entity can have been created. Default: all
 
-  *
 
-  * @return int The number of objects the user owns (of this subtype)
 
-  * @deprecated 1.8 Use elgg_get_entities() instead
 
-  */
 
- function count_user_objects($user_guid, $subtype = ELGG_ENTITIES_ANY_VALUE, $timelower = 0,
 
- $timeupper = 0) {
 
- 	elgg_deprecated_notice("count_user_objects() was deprecated in favor of elgg_get_entities()", 1.8);
 
- 	$total = elgg_get_entities(array(
 
- 		'type' => 'object',
 
- 		'subtype' => $subtype,
 
- 		'owner_guid' => $user_guid,
 
- 		'count' => TRUE,
 
- 		'container_guid' => $user_guid,
 
- 		'created_time_lower' => $timelower,
 
- 		'created_time_upper' => $timeupper
 
- 	));
 
- 	return $total;
 
- }
 
- /**
 
-  * Displays a list of user objects of a particular subtype, with navigation.
 
-  *
 
-  * @see elgg_view_entity_list
 
-  *
 
-  * @param int    $user_guid      The GUID of the user
 
-  * @param string $subtype        The object subtype
 
-  * @param int    $limit          The number of entities to display on a page
 
-  * @param bool   $fullview       Whether or not to display the full view (default: true)
 
-  * @param bool   $listtypetoggle Whether or not to allow gallery view (default: true)
 
-  * @param bool   $pagination     Whether to display pagination (default: true)
 
-  * @param int    $timelower      The earliest time the entity can have been created. Default: all
 
-  * @param int    $timeupper      The latest time the entity can have been created. Default: all
 
-  *
 
-  * @return string The list in a form suitable to display
 
-  * @deprecated 1.8 Use elgg_list_entities() instead
 
-  */
 
- function list_user_objects($user_guid, $subtype = ELGG_ENTITIES_ANY_VALUE, $limit = 10,
 
- $fullview = true, $listtypetoggle = true, $pagination = true, $timelower = 0, $timeupper = 0) {
 
- 	elgg_deprecated_notice("list_user_objects() was deprecated in favor of elgg_list_entities()", 1.8);
 
- 	$offset = (int) get_input('offset');
 
- 	$limit = (int) $limit;
 
- 	$count = (int) count_user_objects($user_guid, $subtype, $timelower, $timeupper);
 
- 	$entities = get_user_objects($user_guid, $subtype, $limit, $offset, $timelower, $timeupper);
 
- 	return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $listtypetoggle,
 
- 		$pagination);
 
- }
 
- /**
 
-  * Get user objects by an array of metadata
 
-  *
 
-  * @param int    $user_guid The GUID of the owning user
 
-  * @param string $subtype   Optionally, the subtype of objects
 
-  * @param array  $metadata  An array of metadata
 
-  * @param int    $limit     The number of results to return (default 10)
 
-  * @param int    $offset    Indexing offset, if any
 
-  *
 
-  * @return false|array An array of \ElggObjects or false, depending on success
 
-  * @deprecated 1.8 Use elgg_get_entities_from_metadata() instead
 
-  */
 
- function get_user_objects_by_metadata($user_guid, $subtype = "", $metadata = array(),
 
- $limit = 0, $offset = 0) {
 
- 	elgg_deprecated_notice("get_user_objects_by_metadata() was deprecated in favor of elgg_get_entities_from_metadata()", 1.8);
 
- 	return get_entities_from_metadata_multi($metadata, "object", $subtype, $user_guid,
 
- 		$limit, $offset);
 
- }
 
- /**
 
-  * Set the validation status for a user.
 
-  *
 
-  * @param bool   $status Validated (true) or false
 
-  * @param string $method Optional method to say how a user was validated
 
-  * @return bool
 
-  * @deprecated 1.8 Use elgg_set_user_validation_status()
 
-  */
 
- function set_user_validation_status($user_guid, $status, $method = '') {
 
- 	elgg_deprecated_notice("set_user_validation_status() is deprecated", 1.8);
 
- 	return elgg_set_user_validation_status($user_guid, $status, $method);
 
- }
 
- /**
 
-  * Trigger an event requesting that a user guid be validated somehow - either by email address or some other way.
 
-  *
 
-  * This function invalidates any existing validation value.
 
-  *
 
-  * @param int $user_guid User's GUID
 
-  * @deprecated 1.8 Hook into the register, user plugin hook and request validation.
 
-  */
 
- function request_user_validation($user_guid) {
 
- 	elgg_deprecated_notice("request_user_validation() is deprecated.
 
- 		Plugins should register for the 'register, user' plugin hook", 1.8);
 
- 	$user = get_entity($user_guid);
 
- 	if (($user) && ($user instanceof \ElggUser)) {
 
- 		// invalidate any existing validations
 
- 		set_user_validation_status($user_guid, false);
 
- 		// request validation
 
- 		trigger_elgg_event('validate', 'user', $user);
 
- 	}
 
- }
 
- /**
 
-  * Register a user settings page with the admin panel.
 
-  * This function extends the view "usersettings/main" with the provided view.
 
-  * This view should provide a description and either a control or a link to.
 
-  *
 
-  * Usage:
 
-  * 	- To add a control to the main admin panel then extend usersettings/main
 
-  *  - To add a control to a new page create a page which renders a view
 
-  *    usersettings/subpage (where subpage is your new page -
 
-  *    nb. some pages already exist that you can extend), extend the main view
 
-  *    to point to it, and add controls to your new view.
 
-  *
 
-  * At the moment this is essentially a wrapper around elgg_extend_view().
 
-  *
 
-  * @param string $new_settings_view The view associated with the control you're adding
 
-  * @param string $view              The view to extend, by default this is 'usersettings/main'.
 
-  * @param int    $priority          Optional priority to govern the appearance in the list.
 
-  *
 
-  * @return bool
 
-  * @deprecated 1.8 Extend one of the views in core/settings
 
-  */
 
- function extend_elgg_settings_page($new_settings_view, $view = 'usersettings/main',
 
- $priority = 500) {
 
- 	// see views: /core/settings
 
- 	elgg_deprecated_notice("extend_elgg_settings_page has been deprecated. Extend one of the settings views instead", 1.8);
 
- 	return elgg_extend_view($view, $new_settings_view, $priority);
 
- }
 
- /**
 
-  * Returns a representation of a full 'page' (which might be an HTML page,
 
-  * RSS file, etc, depending on the current viewtype)
 
-  *
 
-  * @param string $title
 
-  * @param string $body
 
-  * @return string
 
-  *
 
-  * @deprecated 1.8 Use elgg_view_page()
 
-  */
 
- function page_draw($title, $body, $sidebar = "") {
 
- 	elgg_deprecated_notice("page_draw() was deprecated in favor of elgg_view_page() in 1.8.", 1.8);
 
- 	$vars = array(
 
- 		'sidebar' => $sidebar
 
- 	);
 
- 	echo elgg_view_page($title, $body, 'default', $vars);
 
- }
 
- /**
 
-  * Wrapper function to display search listings.
 
-  *
 
-  * @param string $icon The icon for the listing
 
-  * @param string $info Any information that needs to be displayed.
 
-  *
 
-  * @return string The HTML (etc) representing the listing
 
-  * @deprecated 1.8 use elgg_view_image_block()
 
-  */
 
- function elgg_view_listing($icon, $info) {
 
- 	elgg_deprecated_notice('elgg_view_listing deprecated by elgg_view_image_block', 1.8);
 
- 	return elgg_view('page/components/image_block', array('image' => $icon, 'body' => $info));
 
- }
 
- /**
 
-  * Return the icon URL for an entity.
 
-  *
 
-  * @tip Can be overridden by registering a plugin hook for entity:icon:url, $entity_type.
 
-  *
 
-  * @internal This is passed an entity rather than a guid to handle non-created entities.
 
-  *
 
-  * @param \ElggEntity $entity The entity
 
-  * @param string     $size   Icon size
 
-  *
 
-  * @return string URL to the entity icon.
 
-  * @deprecated 1.8 Use $entity->getIconURL()
 
-  */
 
- function get_entity_icon_url(\ElggEntity $entity, $size = 'medium') {
 
- 	elgg_deprecated_notice("get_entity_icon_url() deprecated for getIconURL()", 1.8);
 
- 	global $CONFIG;
 
- 	$size = sanitise_string($size);
 
- 	switch (strtolower($size)) {
 
- 		case 'master':
 
- 			$size = 'master';
 
- 			break;
 
- 		case 'large' :
 
- 			$size = 'large';
 
- 			break;
 
- 		case 'topbar' :
 
- 			$size = 'topbar';
 
- 			break;
 
- 		case 'tiny' :
 
- 			$size = 'tiny';
 
- 			break;
 
- 		case 'small' :
 
- 			$size = 'small';
 
- 			break;
 
- 		case 'medium' :
 
- 		default:
 
- 			$size = 'medium';
 
- 	}
 
- 	$url = false;
 
- 	$viewtype = elgg_get_viewtype();
 
- 	// Step one, see if anyone knows how to render this in the current view
 
- 	$params = array('entity' => $entity, 'viewtype' => $viewtype, 'size' => $size);
 
- 	$url = elgg_trigger_plugin_hook('entity:icon:url', $entity->getType(), $params, $url);
 
- 	// Fail, so use default
 
- 	if (!$url) {
 
- 		$type = $entity->getType();
 
- 		$subtype = $entity->getSubtype();
 
- 		if (!empty($subtype)) {
 
- 			$overrideurl = elgg_view("icon/{$type}/{$subtype}/{$size}", array('entity' => $entity));
 
- 			if (!empty($overrideurl)) {
 
- 				return $overrideurl;
 
- 			}
 
- 		}
 
- 		$overrideurl = elgg_view("icon/{$type}/default/{$size}", array('entity' => $entity));
 
- 		if (!empty($overrideurl)) {
 
- 			return $overrideurl;
 
- 		}
 
- 		$url = "_graphics/icons/default/$size.png";
 
- 	}
 
- 	return elgg_normalize_url($url);
 
- }
 
- /**
 
-  * Return the current logged in user, or NULL if no user is logged in.
 
-  *
 
-  * If no user can be found in the current session, a plugin
 
-  * hook - 'session:get' 'user' to give plugin authors another
 
-  * way to provide user details to the ACL system without touching the session.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_logged_in_user_entity()
 
-  * @return \ElggUser|NULL
 
-  */
 
- function get_loggedin_user() {
 
- 	elgg_deprecated_notice('get_loggedin_user() is deprecated by elgg_get_logged_in_user_entity()', 1.8);
 
- 	return elgg_get_logged_in_user_entity();
 
- }
 
- /**
 
-  * Return the current logged in user by id.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_logged_in_user_guid()
 
-  * @see elgg_get_logged_in_user_entity()
 
-  * @return int
 
-  */
 
- function get_loggedin_userid() {
 
- 	elgg_deprecated_notice('get_loggedin_userid() is deprecated by elgg_get_logged_in_user_guid()', 1.8);
 
- 	return elgg_get_logged_in_user_guid();
 
- }
 
- /**
 
-  * Returns whether or not the user is currently logged in
 
-  *
 
-  * @deprecated 1.8 Use elgg_is_logged_in();
 
-  * @return bool
 
-  */
 
- function isloggedin() {
 
- 	elgg_deprecated_notice('isloggedin() is deprecated by elgg_is_logged_in()', 1.8);
 
- 	return elgg_is_logged_in();
 
- }
 
- /**
 
-  * Returns whether or not the user is currently logged in and that they are an admin user.
 
-  *
 
-  * @deprecated 1.8 Use elgg_is_admin_logged_in()
 
-  * @return bool
 
-  */
 
- function isadminloggedin() {
 
- 	elgg_deprecated_notice('isadminloggedin() is deprecated by elgg_is_admin_logged_in()', 1.8);
 
- 	return elgg_is_admin_logged_in();
 
- }
 
- /**
 
-  * Loads plugins
 
-  *
 
-  * @deprecated 1.8 Use elgg_load_plugins()
 
-  *
 
-  * @return bool
 
-  */
 
- function load_plugins() {
 
- 	elgg_deprecated_notice('load_plugins() is deprecated by elgg_load_plugins()', 1.8);
 
- 	return _elgg_load_plugins();
 
- }
 
- /**
 
-  * Find the plugin settings for a user.
 
-  *
 
-  * @param string $plugin_id Plugin name.
 
-  * @param int    $user_guid The guid who's settings to retrieve.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_all_plugin_user_settings() or \ElggPlugin->getAllUserSettings()
 
-  * @return StdClass Object with all user settings.
 
-  */
 
- function find_plugin_usersettings($plugin_id = null, $user_guid = 0) {
 
- 	elgg_deprecated_notice('find_plugin_usersettings() is deprecated by elgg_get_all_plugin_user_settings()', 1.8);
 
- 	return elgg_get_all_plugin_user_settings($user_guid, $plugin_id, true);
 
- }
 
- /**
 
-  * Set a user specific setting for a plugin.
 
-  *
 
-  * @param string $name      The name - note, can't be "title".
 
-  * @param mixed  $value     The value.
 
-  * @param int    $user_guid Optional user.
 
-  * @param string $plugin_id Optional plugin name, if not specified then it
 
-  *                          is detected from where you are calling from.
 
-  *
 
-  * @return bool
 
-  * @deprecated 1.8 Use elgg_set_plugin_user_setting() or \ElggPlugin->setUserSetting()
 
-  */
 
- function set_plugin_usersetting($name, $value, $user_guid = 0, $plugin_id = "") {
 
- 	elgg_deprecated_notice('find_plugin_usersettings() is deprecated by elgg_get_all_plugin_user_settings()', 1.8);
 
- 	return elgg_set_plugin_user_setting($name, $value, $user_guid, $plugin_id);
 
- }
 
- /**
 
-  * Clears a user-specific plugin setting
 
-  *
 
-  * @param string $name      Name of the plugin setting
 
-  * @param int    $user_guid Defaults to logged in user
 
-  * @param string $plugin_id Defaults to contextual plugin name
 
-  *
 
-  * @deprecated 1.8 Use elgg_unset_plugin_user_setting or \ElggPlugin->unsetUserSetting().
 
-  * @return bool Success
 
-  */
 
- function clear_plugin_usersetting($name, $user_guid = 0, $plugin_id = '') {
 
- 	elgg_deprecated_notice('clear_plugin_usersetting() is deprecated by elgg_unset_plugin_usersetting()', 1.8);
 
- 	return elgg_unset_plugin_user_setting($name, $user_guid, $plugin_id);
 
- }
 
- /**
 
-  * Get a user specific setting for a plugin.
 
-  *
 
-  * @param string $name      The name.
 
-  * @param int    $user_guid Guid of owning user
 
-  * @param string $plugin_id Optional plugin name, if not specified
 
-  *                          it is detected from where you are calling.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_plugin_user_setting() or \ElggPlugin->getUserSetting()
 
-  * @return mixed
 
-  */
 
- function get_plugin_usersetting($name, $user_guid = 0, $plugin_id = "") {
 
- 	elgg_deprecated_notice('get_plugin_usersetting() is deprecated by elgg_get_plugin_user_setting()', 1.8);
 
- 	return elgg_get_plugin_user_setting($name, $user_guid, $plugin_id);
 
- }
 
- /**
 
-  * Set a setting for a plugin.
 
-  *
 
-  * @param string $name      The name - note, can't be "title".
 
-  * @param mixed  $value     The value.
 
-  * @param string $plugin_id Optional plugin name, if not specified
 
-  *                          then it is detected from where you are calling from.
 
-  *
 
-  * @deprecated 1.8 Use elgg_set_plugin_setting() or \ElggPlugin->setSetting()
 
-  * @return int|false
 
-  */
 
- function set_plugin_setting($name, $value, $plugin_id = null) {
 
- 	elgg_deprecated_notice('set_plugin_setting() is deprecated by elgg_set_plugin_setting()', 1.8);
 
- 	return elgg_set_plugin_setting($name, $value, $plugin_id);
 
- }
 
- /**
 
-  * Get setting for a plugin.
 
-  *
 
-  * @param string $name      The name.
 
-  * @param string $plugin_id Optional plugin name, if not specified
 
-  *                          then it is detected from where you are calling from.
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_plugin_setting() or \ElggPlugin->getSetting()
 
-  * @return mixed
 
-  */
 
- function get_plugin_setting($name, $plugin_id = "") {
 
- 	elgg_deprecated_notice('get_plugin_setting() is deprecated by elgg_get_plugin_setting()', 1.8);
 
- 	return elgg_get_plugin_setting($name, $plugin_id);
 
- }
 
- /**
 
-  * Clear a plugin setting.
 
-  *
 
-  * @param string $name      The name.
 
-  * @param string $plugin_id Optional plugin name, if not specified
 
-  *                          then it is detected from where you are calling from.
 
-  *
 
-  * @deprecated 1.8 Use elgg_unset_plugin_setting() or \ElggPlugin->unsetSetting()
 
-  * @return bool
 
-  */
 
- function clear_plugin_setting($name, $plugin_id = "") {
 
- 	elgg_deprecated_notice('clear_plugin_setting() is deprecated by elgg_unset_plugin_setting()', 1.8);
 
- 	return elgg_unset_plugin_setting($name, $plugin_id);
 
- }
 
- /**
 
-  * Unsets all plugin settings for a plugin.
 
-  *
 
-  * @param string $plugin_id Optional plugin name, if not specified
 
-  *                          then it is detected from where you are calling from.
 
-  *
 
-  * @return bool
 
-  * @deprecated 1.8 Use elgg_unset_all_plugin_settings() or \ElggPlugin->unsetAllSettings()
 
-  * @since 1.7.0
 
-  */
 
- function clear_all_plugin_settings($plugin_id = "") {
 
- 	elgg_deprecated_notice('clear_all_plugin_settings() is deprecated by elgg_unset_all_plugin_setting()', 1.8);
 
- 	return elgg_unset_all_plugin_settings($plugin_id);
 
- }
 
- /**
 
-  * Get a list of annotations for a given object/user/annotation type.
 
-  *
 
-  * @param int|array $entity_guid       GUID to return annotations of (falsey for any)
 
-  * @param string    $entity_type       Type of entity
 
-  * @param string    $entity_subtype    Subtype of entity
 
-  * @param string    $name              Name of annotation
 
-  * @param mixed     $value             Value of annotation
 
-  * @param int|array $owner_guid        Owner(s) of annotation
 
-  * @param int       $limit             Limit
 
-  * @param int       $offset            Offset
 
-  * @param string    $order_by          Order annotations by SQL
 
-  * @param int       $timelower         Lower time limit
 
-  * @param int       $timeupper         Upper time limit
 
-  * @param int       $entity_owner_guid Owner guid for the entity
 
-  *
 
-  * @return array
 
-  * @deprecated 1.8 Use elgg_get_annotations()
 
-  */
 
- function get_annotations($entity_guid = 0, $entity_type = "", $entity_subtype = "", $name = "",
 
- $value = "", $owner_guid = 0, $limit = 10, $offset = 0, $order_by = "asc", $timelower = 0,
 
- $timeupper = 0, $entity_owner_guid = 0) {
 
- 	elgg_deprecated_notice('get_annotations() is deprecated by elgg_get_annotations()', 1.8);
 
- 	$options = array();
 
- 	if ($entity_guid) {
 
- 		$options['guid'] = $entity_guid;
 
- 	}
 
- 	if ($entity_type) {
 
- 		$options['type'] = $entity_type;
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$options['subtype'] = $entity_subtype;
 
- 	}
 
- 	if ($name) {
 
- 		$options['annotation_name'] = $name;
 
- 	}
 
- 	if ($value) {
 
- 		$options['annotation_value'] = $value;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		$options['annotation_owner_guid'] = $owner_guid;
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	$options['offset'] = $offset;
 
- 	if ($order_by == 'desc') {
 
- 		$options['order_by'] = 'n_table.time_created desc';
 
- 	}
 
- 	if ($timelower) {
 
- 		$options['annotation_time_lower'] = $timelower;
 
- 	}
 
- 	if ($timeupper) {
 
- 		$options['annotation_time_upper'] = $timeupper;
 
- 	}
 
- 	if ($entity_owner_guid) {
 
- 		$options['owner_guid'] = $entity_owner_guid;
 
- 	}
 
- 	return elgg_get_annotations($options);
 
- }
 
- /**
 
-  * Returns a human-readable list of annotations on a particular entity.
 
-  *
 
-  * @param int        $entity_guid The entity GUID
 
-  * @param string     $name        The name of the kind of annotation
 
-  * @param int        $limit       The number of annotations to display at once
 
-  * @param true|false $asc         Display annotations in ascending order. (Default: true)
 
-  *
 
-  * @return string HTML (etc) version of the annotation list
 
-  * @deprecated 1.8 Use elgg_list_annotations()
 
-  */
 
- function list_annotations($entity_guid, $name = "", $limit = 25, $asc = true) {
 
- 	elgg_deprecated_notice('list_annotations() is deprecated by elgg_list_annotations()', 1.8);
 
- 	if ($asc) {
 
- 		$asc = "asc";
 
- 	} else {
 
- 		$asc = "desc";
 
- 	}
 
- 	$options = array(
 
- 		'guid' => $entity_guid,
 
- 		'limit' => $limit,
 
- 		'order_by' => "n_table.time_created $asc"
 
- 	);
 
- 	return elgg_list_annotations($options);
 
- }
 
- /**
 
-  * Helper function to deprecate annotation calculation functions. Don't use.
 
-  *
 
-  * @param unknown_type $entity_guid
 
-  * @param unknown_type $entity_type
 
-  * @param unknown_type $entity_subtype
 
-  * @param unknown_type $name
 
-  * @param unknown_type $value
 
-  * @param unknown_type $value_type
 
-  * @param unknown_type $owner_guid
 
-  * @param unknown_type $timelower
 
-  * @param unknown_type $timeupper
 
-  * @param unknown_type $calculation
 
-  * @internal Don't use this at all.
 
-  * @deprecated 1.8 Use elgg_get_annotations()
 
-  */
 
- function elgg_deprecated_annotation_calculation($entity_guid = 0, $entity_type = "", $entity_subtype = "",
 
- $name = "", $value = "", $value_type = "", $owner_guid = 0, $timelower = 0,
 
- $timeupper = 0, $calculation = '') {
 
- 	$options = array('annotation_calculation' => $calculation);
 
- 	if ($entity_guid) {
 
- 		$options['guid'] = $entity_guid;
 
- 	}
 
- 	if ($entity_type) {
 
- 		$options['type'] = $entity_type;
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$options['subtype'] = $entity_subtype;
 
- 	}
 
- 	if ($name) {
 
- 		$options['annotation_name'] = $name;
 
- 	}
 
- 	if ($value) {
 
- 		$options['annotation_value'] = $value;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		$options['annotation_owner_guid'] = $owner_guid;
 
- 	}
 
- 	if ($timelower) {
 
- 		$options['annotation_time_lower'] = $timelower;
 
- 	}
 
- 	if ($timeupper) {
 
- 		$options['annotation_time_upper'] = $timeupper;
 
- 	}
 
- 	return elgg_get_annotations($options);
 
- }
 
- /**
 
-  * Count the number of annotations based on search parameters
 
-  *
 
-  * @param int    $entity_guid    Guid of Entity
 
-  * @param string $entity_type    Type of Entity
 
-  * @param string $entity_subtype Subtype of Entity
 
-  * @param string $name           Name of annotation
 
-  * @param string $value          Value of annotation
 
-  * @param string $value_type     Type of value
 
-  * @param int    $owner_guid     GUID of owner of annotation
 
-  * @param int    $timelower      Lower time limit
 
-  * @param int    $timeupper      Upper time limit
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_annotations() and pass 'count' => true
 
-  * @return int
 
-  */
 
- function count_annotations($entity_guid = 0, $entity_type = "", $entity_subtype = "",
 
- $name = "", $value = "", $value_type = "", $owner_guid = 0, $timelower = 0,
 
- $timeupper = 0) {
 
- 	elgg_deprecated_notice('count_annotations() is deprecated by elgg_get_annotations() and passing "count" => true', 1.8);
 
- 	return elgg_deprecated_annotation_calculation($entity_guid, $entity_type, $entity_subtype,
 
- 			$name, $value, $value_type, $owner_guid, $timelower, $timeupper, 'count');
 
- }
 
- /**
 
-  * Return the sum of a given integer annotation.
 
-  *
 
-  * @param int    $entity_guid    Guid of Entity
 
-  * @param string $entity_type    Type of Entity
 
-  * @param string $entity_subtype Subtype of Entity
 
-  * @param string $name           Name of annotation
 
-  * @param string $value          Value of annotation
 
-  * @param string $value_type     Type of value
 
-  * @param int    $owner_guid     GUID of owner of annotation
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_annotations() and pass 'annotation_calculation' => 'sum'
 
-  * @return int
 
-  */
 
- function get_annotations_sum($entity_guid, $entity_type = "", $entity_subtype = "", $name = "",
 
- $value = "", $value_type = "", $owner_guid = 0) {
 
- 	elgg_deprecated_notice('get_annotations_sum() is deprecated by elgg_get_annotations() and passing "annotation_calculation" => "sum"', 1.8);
 
- 	return elgg_deprecated_annotation_calculation($entity_guid, $entity_type, $entity_subtype,
 
- 			$name, $value, $value_type, $owner_guid, 0, 0, 'sum');
 
- }
 
- /**
 
-  * Return the max of a given integer annotation.
 
-  *
 
-  * @param int    $entity_guid    Guid of Entity
 
-  * @param string $entity_type    Type of Entity
 
-  * @param string $entity_subtype Subtype of Entity
 
-  * @param string $name           Name of annotation
 
-  * @param string $value          Value of annotation
 
-  * @param string $value_type     Type of value
 
-  * @param int    $owner_guid     GUID of owner of annotation
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_annotations() and pass 'annotation_calculation' => 'max'
 
-  * @return int
 
-  */
 
- function get_annotations_max($entity_guid, $entity_type = "", $entity_subtype = "", $name = "",
 
- $value = "", $value_type = "", $owner_guid = 0) {
 
- 	elgg_deprecated_notice('get_annotations_max() is deprecated by elgg_get_annotations() and passing "annotation_calculation" => "max"', 1.8);
 
- 	return elgg_deprecated_annotation_calculation($entity_guid, $entity_type, $entity_subtype,
 
- 			$name, $value, $value_type, $owner_guid, 0, 0, 'max');
 
- }
 
- /**
 
-  * Return the minumum of a given integer annotation.
 
-  *
 
-  * @param int    $entity_guid    Guid of Entity
 
-  * @param string $entity_type    Type of Entity
 
-  * @param string $entity_subtype Subtype of Entity
 
-  * @param string $name           Name of annotation
 
-  * @param string $value          Value of annotation
 
-  * @param string $value_type     Type of value
 
-  * @param int    $owner_guid     GUID of owner of annotation
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_annotations() and pass 'annotation_calculation' => 'min'
 
-  * @return int
 
-  */
 
- function get_annotations_min($entity_guid, $entity_type = "", $entity_subtype = "", $name = "",
 
- $value = "", $value_type = "", $owner_guid = 0) {
 
- 	elgg_deprecated_notice('get_annotations_min() is deprecated by elgg_get_annotations() and passing "annotation_calculation" => "min"', 1.8);
 
- 	return elgg_deprecated_annotation_calculation($entity_guid, $entity_type, $entity_subtype,
 
- 			$name, $value, $value_type, $owner_guid, 0, 0, 'min');
 
- }
 
- /**
 
-  * Return the average of a given integer annotation.
 
-  *
 
-  * @param int    $entity_guid    Guid of Entity
 
-  * @param string $entity_type    Type of Entity
 
-  * @param string $entity_subtype Subtype of Entity
 
-  * @param string $name           Name of annotation
 
-  * @param string $value          Value of annotation
 
-  * @param string $value_type     Type of value
 
-  * @param int    $owner_guid     GUID of owner of annotation
 
-  *
 
-  * @deprecated 1.8 Use elgg_get_annotations() and pass 'annotation_calculation' => 'min'
 
-  *
 
-  * @return int
 
-  */
 
- function get_annotations_avg($entity_guid, $entity_type = "", $entity_subtype = "", $name = "",
 
- $value = "", $value_type = "", $owner_guid = 0) {
 
- 	elgg_deprecated_notice('get_annotations_avg() is deprecated by elgg_get_annotations() and passing "annotation_calculation" => "avg"', 1.8);
 
- 	return elgg_deprecated_annotation_calculation($entity_guid, $entity_type, $entity_subtype,
 
- 			$name, $value, $value_type, $owner_guid, 0, 0, 'avg');
 
- }
 
- /**
 
-  * Perform a mathmatical calculation on integer annotations.
 
-  *
 
-  * @param string $sum            What sort of calculation to perform
 
-  * @param int    $entity_guid    Guid of Entity
 
-  * @param string $entity_type    Type of Entity
 
-  * @param string $entity_subtype Subtype of Entity
 
-  * @param string $name           Name of annotation
 
-  * @param string $value          Value of annotation
 
-  * @param string $value_type     Type of value
 
-  * @param int    $owner_guid     GUID of owner of annotation
 
-  * @param int    $timelower      Lower time limit
 
-  * @param int    $timeupper      Upper time limit
 
-  *
 
-  * @return int
 
-  * @deprecated 1.8 Use elgg_get_annotations() and pass anntoation_calculation => <calculation>
 
-  */
 
- function get_annotations_calculate_x($sum = "avg", $entity_guid, $entity_type = "",
 
- $entity_subtype = "", $name = "", $value = "", $value_type = "", $owner_guid = 0,
 
- $timelower = 0, $timeupper = 0) {
 
- 	elgg_deprecated_notice('get_annotations_calculate_x() is deprecated by elgg_get_annotations() and passing "annotation_calculation" => "calculation"', 1.8);
 
- 	return elgg_deprecated_annotation_calculation($entity_guid, $entity_type, $entity_subtype,
 
- 			$name, $value, $value_type, $owner_guid, $timelower, $timeupper, $sum);
 
- }
 
- /**
 
-  * Lists entities by the totals of a particular kind of annotation AND
 
-  * the value of a piece of metadata
 
-  *
 
-  * @param string  $entity_type    Type of entity.
 
-  * @param string  $entity_subtype Subtype of entity.
 
-  * @param string  $name           Name of annotation.
 
-  * @param string  $mdname         Metadata name
 
-  * @param string  $mdvalue        Metadata value
 
-  * @param int     $limit          Maximum number of results to return.
 
-  * @param int     $owner_guid     Owner.
 
-  * @param int     $group_guid     Group container. Currently only supported if entity_type is object
 
-  * @param boolean $asc            Whether to list in ascending or descending order (default: desc)
 
-  * @param boolean $fullview       Whether to display the entities in full
 
-  * @param boolean $listtypetoggle Can the 'gallery' view can be displayed (default: no)
 
-  * @param boolean $pagination     Display pagination
 
-  * @param string  $orderdir       'desc' or 'asc'
 
-  *
 
-  * @deprecated 1.8 Use elgg_list_entities_from_annotation_calculation().
 
-  *
 
-  * @return string Formatted entity list
 
-  */
 
- function list_entities_from_annotation_count_by_metadata($entity_type = "", $entity_subtype = "",
 
- $name = "", $mdname = '', $mdvalue = '', $limit = 10, $owner_guid = 0, $group_guid = 0,
 
- $asc = false, $fullview = true, $listtypetoggle = false, $pagination = true, $orderdir = 'desc') {
 
- 	$msg = 'list_entities_from_annotation_count_by_metadata() is deprecated by elgg_list_entities_from_annotation_calculation().';
 
- 	elgg_deprecated_notice($msg, 1.8);
 
- 	$options = array();
 
- 	$options['calculation'] = 'sum';
 
- 	if ($entity_type) {
 
- 		$options['types'] = $entity_type;
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$options['subtypes'] = $entity_subtype;
 
- 	}
 
- 	$options['annotation_names'] = $name;
 
- 	if ($mdname) {
 
- 		$options['metadata_name'] = $mdname;
 
- 	}
 
- 	if ($mdvalue) {
 
- 		$options['metadata_value'] = $mdvalue;
 
- 	}
 
- 	if ($owner_guid) {
 
- 		if (is_array($owner_guid)) {
 
- 			$options['owner_guids'] = $owner_guid;
 
- 		} else {
 
- 			$options['owner_guid'] = $owner_guid;
 
- 		}
 
- 	}
 
- 	$options['full_view'] = $fullview;
 
- 	$options['list_type_toggle'] = $listtypetoggle;
 
- 	$options['pagination'] = $pagination;
 
- 	$options['limit'] = $limit;
 
- 	$options['order_by'] = "annotation_calculation $orderdir";
 
- 	return elgg_get_entities_from_annotation_calculation($options);
 
- }
 
- /**
 
-  * Set an alternative base location for a view (as opposed to the default of $CONFIG->viewpath)
 
-  *
 
-  * @param string $view The name of the view
 
-  * @param string $location The base location path
 
-  *
 
-  * @deprecated 1.8 Use elgg_set_view_location()
 
-  */
 
- function set_view_location($view, $location, $viewtype = '') {
 
- 	elgg_deprecated_notice("set_view_location() was deprecated by elgg_set_view_location()", 1.8);
 
- 	return elgg_set_view_location($view, $location, $viewtype);
 
- }
 
- /**
 
-  * Sets the URL handler for a particular entity type and subtype
 
-  *
 
-  * @param string $function_name The function to register
 
-  * @param string $entity_type The entity type
 
-  * @param string $entity_subtype The entity subtype
 
-  * @return true|false Depending on success
 
-  *
 
-  * @deprecated 1.8 Use elgg_register_entity_url_handler()
 
-  */
 
- function register_entity_url_handler($function_name, $entity_type = "all", $entity_subtype = "all") {
 
- 	elgg_deprecated_notice("register_entity_url_handler() was deprecated by elgg_register_entity_url_handler()", 1.8);
 
- 	return elgg_register_entity_url_handler($entity_type, $entity_subtype, $function_name);
 
- }
 
- /**
 
-  * Get the metadata where the entities they are referring to match a given criteria.
 
-  *
 
-  * @param mixed  $meta_name      Metadata name
 
-  * @param mixed  $meta_value     Metadata value
 
-  * @param string $entity_type    The type of entity to look for, eg 'site' or 'object'
 
-  * @param string $entity_subtype The subtype of the entity.
 
-  * @param int    $limit          Limit
 
-  * @param int    $offset         Offset
 
-  * @param string $order_by       Optional ordering.
 
-  * @param int    $site_guid      Site GUID. 0 for current, -1 for any
 
-  *
 
-  * @return mixed
 
-  * @deprecated 1.8 Use elgg_get_metadata()
 
-  */
 
- function find_metadata($meta_name = "", $meta_value = "", $entity_type = "", $entity_subtype = "",
 
- 	$limit = 10, $offset = 0, $order_by = "", $site_guid = 0) {
 
- 	elgg_deprecated_notice('get_metadata() is deprecated by elgg_get_metadata()', 1.8);
 
- 	$options = array();
 
- 	if ($meta_name) {
 
- 		$options['annotation_name'] = $meta_name;
 
- 	}
 
- 	if ($meta_value) {
 
- 		$options['annotation_value'] = $meta_value;
 
- 	}
 
- 	if ($entity_type) {
 
- 		$options['type'] = $entity_type;
 
- 	}
 
- 	if ($entity_subtype) {
 
- 		$options['subtype'] = $entity_subtype;
 
- 	}
 
- 	$options['limit'] = $limit;
 
- 	$options['offset'] = $offset;
 
- 	if ($order_by == 'desc') {
 
- 		$options['order_by'] = 'n_table.time_created desc';
 
- 	}
 
- 	if ($site_guid) {
 
- 		$options['site_guid'] = $site_guid;
 
- 	}
 
- 	return elgg_get_metadata($options);
 
- }
 
- /**
 
-  * Get metadata objects by name.
 
-  *
 
-  * @param int    $entity_guid Entity GUID
 
-  * @param string $meta_name   Metadata name
 
-  *
 
-  * @return ElggMetadata|ElggMetadata[]|false object, an array of \ElggMetadata or false.
 
-  * @deprecated 1.8 Use elgg_get_metadata()
 
-  */
 
- function get_metadata_byname($entity_guid, $meta_name) {
 
- 	elgg_deprecated_notice('get_metadata_byname() is deprecated by elgg_get_metadata()', 1.8);
 
- 	if (!$entity_guid || !$meta_name) {
 
- 		return false;
 
- 	}
 
- 	$options = array(
 
- 		'guid' => $entity_guid,
 
- 		'metadata_name' => $meta_name,
 
- 		'limit' => 0
 
- 	);
 
- 	$md = elgg_get_metadata($options);
 
- 	if ($md && count($md) == 1) {
 
- 		return $md[0];
 
- 	}
 
- 	return $md;
 
- }
 
- /**
 
-  * Return all the metadata for a given GUID.
 
-  *
 
-  * @param int $entity_guid Entity GUID
 
-  *
 
-  * @return mixed
 
-  * @deprecated 1.8 Use elgg_get_metadata()
 
-  */
 
- function get_metadata_for_entity($entity_guid) {
 
- 	elgg_deprecated_notice('get_metadata_for_entity() is deprecated by elgg_get_metadata()', 1.8);
 
- 	if (!$entity_guid) {
 
- 		return false;
 
- 	}
 
- 	$options = array(
 
- 		'guid' => $entity_guid,
 
- 		'limit' => 0
 
- 	);
 
- 	return elgg_get_metadata($options);
 
- }
 
- /**
 
-  * Get a specific metadata object.
 
-  *
 
-  * @param int $id The id of the metadata being retrieved.
 
-  *
 
-  * @return mixed False on failure or \ElggMetadata
 
-  * @deprecated 1.8 Use elgg_get_metadata_from_id()
 
-  */
 
- function get_metadata($id) {
 
- 	elgg_deprecated_notice('get_metadata() is deprecated by elgg_get_metadata_from_id()', 1.8);
 
- 	return elgg_get_metadata_from_id($id);
 
- }
 
- /**
 
-  * Clear all the metadata for a given entity, assuming you have access to that entity.
 
-  *
 
-  * @param int $guid Entity GUID
 
-  *
 
-  * @return bool
 
-  * @deprecated 1.8 Use elgg_delete_metadata()
 
-  */
 
- function clear_metadata($guid) {
 
- 	elgg_deprecated_notice('clear_metadata() is deprecated by elgg_delete_metadata()', 1.8);
 
- 	if (!$guid) {
 
- 		return false;
 
- 	}
 
- 	return elgg_delete_metadata(array('guid' => $guid, 'limit' => 0));
 
- }
 
- /**
 
-  * Clear all metadata belonging to a given owner_guid
 
-  *
 
-  * @param int $owner_guid The owner
 
-  *
 
-  * @return bool
 
-  * @deprecated 1.8 Use elgg_delete_metadata()
 
-  */
 
- function clear_metadata_by_owner($owner_guid) {
 
- 	elgg_deprecated_notice('clear_metadata() is deprecated by elgg_delete_metadata()', 1.8);
 
- 	if (!$owner_guid) {
 
- 		return false;
 
- 	}
 
- 	return elgg_delete_metadata(array('metadata_owner_guid' => $owner_guid, 'limit' => 0));
 
- }
 
- /**
 
-  * Delete a piece of metadata, where the current user has access.
 
-  *
 
-  * @param int $id The id of metadata to delete.
 
-  *
 
-  * @return bool
 
-  * @deprecated 1.8 Use elgg_delete_metadata()
 
-  */
 
- function delete_metadata($id) {
 
- 	elgg_deprecated_notice('delete_metadata() is deprecated by elgg_delete_metadata()', 1.8);
 
- 	if (!$id) {
 
- 		return false;
 
- 	}
 
- 	return elgg_delete_metadata(array('metadata_id' => $id));
 
- }
 
- /**
 
-  * Removes metadata on an entity with a particular name, optionally with a given value.
 
-  *
 
-  * @param int    $guid  The entity GUID
 
-  * @param string $name  The name of the metadata
 
-  * @param string $value The value of the metadata (useful to remove a single item of a set)
 
-  *
 
-  * @return bool Depending on success
 
-  * @deprecated 1.8 Use elgg_delete_metadata()
 
-  */
 
- function remove_metadata($guid, $name, $value = "") {
 
- 	elgg_deprecated_notice('delete_metadata() is deprecated by elgg_delete_metadata()', 1.8);
 
- 	// prevent them from deleting everything
 
- 	if (!$guid) {
 
- 		return false;
 
- 	}
 
- 	$options = array(
 
- 		'guid' => $guid,
 
- 		'metadata_name' => $name,
 
- 		'limit' => 0
 
- 	);
 
- 	if ($value) {
 
- 		$options['metadata_value'] = $value;
 
- 	}
 
- 	return elgg_delete_metadata($options);
 
- }
 
- /**
 
-  * Get a specific annotation.
 
-  *
 
-  * @param int $annotation_id Annotation ID
 
-  *
 
-  * @return \ElggAnnotation
 
-  * @deprecated 1.8 Use elgg_get_annotation_from_id()
 
-  */
 
- function get_annotation($annotation_id) {
 
- 	elgg_deprecated_notice('get_annotation() is deprecated by elgg_get_annotation_from_id()', 1.8);
 
- 	return elgg_get_annotation_from_id($annotation_id);
 
- }
 
- /**
 
-  * Delete a given annotation.
 
-  *
 
-  * @param int $id The annotation id
 
-  *
 
-  * @return bool
 
-  * @deprecated 1.8 Use elgg_delete_annotations()
 
-  */
 
- function delete_annotation($id) {
 
- 	elgg_deprecated_notice('delete_annotation() is deprecated by elgg_delete_annotations()', 1.8);
 
- 	if (!$id) {
 
- 		return false;
 
- 	}
 
- 	return elgg_delete_annotations(array('annotation_id' => $id));
 
- }
 
- /**
 
-  * Clear all the annotations for a given entity, assuming you have access to that metadata.
 
-  *
 
-  * @param int    $guid The entity guid
 
-  * @param string $name The name of the annotation to delete.
 
-  *
 
-  * @return int Number of annotations deleted or false if an error
 
-  * @deprecated 1.8 Use elgg_delete_annotations()
 
-  */
 
- function clear_annotations($guid, $name = "") {
 
- 	elgg_deprecated_notice('clear_annotations() is deprecated by elgg_delete_annotations()', 1.8);
 
- 	if (!$guid) {
 
- 		return false;
 
- 	}
 
- 	$options = array(
 
- 		'guid' => $guid,
 
- 		'limit' => 0
 
- 	);
 
- 	if ($name) {
 
- 		$options['annotation_name'] = $name;
 
- 	}
 
- 	return elgg_delete_annotations($options);
 
- }
 
- /**
 
-  * Clear all annotations belonging to a given owner_guid
 
-  *
 
-  * @param int $owner_guid The owner
 
-  *
 
-  * @return int Number of annotations deleted
 
-  * @deprecated 1.8 Use elgg_delete_annotations()
 
-  */
 
- function clear_annotations_by_owner($owner_guid) {
 
- 	elgg_deprecated_notice('clear_annotations_by_owner() is deprecated by elgg_delete_annotations()', 1.8);
 
- 	if (!$owner_guid) {
 
- 		return false;
 
- 	}
 
- 	$options = array(
 
- 		'annotation_owner_guid' => $owner_guid,
 
- 		'limit' => 0
 
- 	);
 
- 	return elgg_delete_annotations($options);
 
- }
 
- /**
 
-  * Registers a page handler for a particular identifier
 
-  *
 
-  * For example, you can register a function called 'blog_page_handler' for handler type 'blog'
 
-  * Now for all URLs of type http://yoururl/pg/blog/*, the blog_page_handler() function will be called.
 
-  * The part of the URL marked with * above will be exploded on '/' characters and passed as an
 
-  * array to that function.
 
-  * For example, the URL http://yoururl/blog/username/friends/ would result in the call:
 
-  * blog_page_handler(array('username','friends'), blog);
 
-  *
 
-  * Page handler functions should return true or the default page handler will be called.
 
-  *
 
-  * A request to register a page handler with the same identifier as previously registered
 
-  * handler will replace the previous one.
 
-  *
 
-  * The context is set to the page handler identifier before the registered
 
-  * page handler function is called. For the above example, the context is set to 'blog'.
 
-  *
 
-  * @param string $handler The page type to handle
 
-  * @param string $function Your function name
 
-  * @return true|false Depending on success
 
-  *
 
-  * @deprecated 1.8 Use {@link elgg_register_page_handler()}
 
-  */
 
- function register_page_handler($handler, $function){
 
- 	elgg_deprecated_notice("register_page_handler() was deprecated by elgg_register_page_handler()", 1.8);
 
- 	return elgg_register_page_handler($handler, $function);
 
- }
 
- /**
 
-  * Unregister a page handler for an identifier
 
-  *
 
-  * Note: to replace a page handler, call register_page_handler()
 
-  *
 
-  * @param string $handler The page type identifier
 
-  * @since 1.7.2
 
-  * 
 
-  * @deprecated 1.8 Use {@link elgg_unregister_page_handler()}
 
-  */
 
- function unregister_page_handler($handler) {
 
- 	elgg_deprecated_notice("unregister_page_handler() was deprecated by elgg_unregister_page_handler()", 1.8);
 
- 	return elgg_unregister_page_handler($handler);
 
- }
 
- /**
 
-  * Register an annotation url handler.
 
-  *
 
-  * @param string $function_name The function.
 
-  * @param string $extender_name The name, default 'all'.
 
-  *
 
-  * @deprecated 1.8 Use {@link elgg_register_annotation_url_handler()}
 
-  */
 
- function register_annotation_url_handler($function, $extender_name) {
 
- 	elgg_deprecated_notice("register_annotation_url_handler() was deprecated by elgg_register_annotation_url_handler()", 1.8);
 
- 	return elgg_register_annotation_url_handler($extender_name, $function);
 
- }
 
- /**
 
-  * Sets the URL handler for a particular extender type and name.
 
-  * It is recommended that you do not call this directly, instead use one of the wrapper functions in the
 
-  * subtype files.
 
-  *
 
-  * @param string $function_name The function to register
 
-  * @param string $extender_type Extender type
 
-  * @param string $extender_name The name of the extender
 
-  * @return true|false Depending on success
 
-  *
 
-  * @deprecated 1.8 Use {@link elgg_register_extender_url_handler()}
 
-  */
 
- function register_extender_url_handler($function, $type = "all", $name = "all") {
 
- 	elgg_deprecated_notice("register_extender_url_handler() was deprecated by elgg_register_extender_url_handler()", 1.8);
 
- 	return elgg_register_extender_url_handler($type, $name, $function);
 
- }
 
- /**
 
-  * Registers and entity type and subtype to return in search and other places.
 
-  * A description in the elgg_echo languages file of the form item:type:subtype
 
-  * is also expected.
 
-  *
 
-  * @param string $type The type of entity (object, site, user, group)
 
-  * @param string $subtype The subtype to register (may be blank)
 
-  * @return true|false Depending on success
 
-  * 
 
-  * @deprecated 1.8 Use {@link elgg_register_entity_type()}
 
-  */
 
- function register_entity_type($type, $subtype = null) {
 
- 	elgg_deprecated_notice("register_entity_type() was deprecated by elgg_register_entity_type()", 1.8);
 
- 	return elgg_register_entity_type($type, $subtype);
 
- }
 
- /**
 
-  * Register a metadata url handler.
 
-  *
 
-  * @param string $function_name The function.
 
-  * @param string $extender_name The name, default 'all'.
 
-  * 
 
-  * @deprecated 1.8 Use {@link elgg_register_metadata_url_handler()}
 
-  */
 
- function register_metadata_url_handler($function, $extender_name = "all") {
 
- 	return elgg_register_metadata_url_handler($extender_name, $function);
 
- }
 
- /**
 
-  * Sets the URL handler for a particular relationship type
 
-  *
 
-  * @param string $function_name The function to register
 
-  * @param string $relationship_type The relationship type.
 
-  * @return true|false Depending on success
 
-  * 
 
-  * @deprecated 1.8 Use {@link elgg_register_relationship_url_handler()}
 
-  */
 
- function register_relationship_url_handler($function_name, $relationship_type = "all") {
 
- 	elgg_deprecated_notice("register_relationship_url_handler() was deprecated by elgg_register_relationship_url_handler()", 1.8);
 
- 	return elgg_register_relationship_url_handler($relationship_type, $function_name);
 
- }
 
- /**
 
-  * Registers a view to be simply cached
 
-  *
 
-  * Views cached in this manner must take no parameters and be login agnostic -
 
-  * that is to say, they look the same no matter who is logged in (or logged out).
 
-  *
 
-  * CSS and the basic jS views are automatically cached like this.
 
-  *
 
-  * @param string $viewname View name
 
-  *
 
-  * @deprecated 1.8 Use {@link elgg_register_simplecache_view()}
 
-  */
 
- function elgg_view_register_simplecache($viewname) {
 
- 	elgg_deprecated_notice("elgg_view_register_simplecache() was deprecated by elgg_register_simplecache_view()", 1.8);
 
- 	return elgg_register_simplecache_view($viewname);
 
- }
 
- /**
 
-  * Regenerates the simple cache.
 
-  *
 
-  * @param string $viewtype Optional viewtype to regenerate
 
-  * @see elgg_view_register_simplecache()
 
-  *
 
-  * @deprecated 1.8 Use {@link elgg_regenerate_simplecache()}
 
-  */
 
- function elgg_view_regenerate_simplecache($viewtype = NULL) {
 
- 	elgg_deprecated_notice("elgg_view_regenerate_simplecache() was deprecated by elgg_regenerate_simplecache()", 1.8);
 
- 	return elgg_regenerate_simplecache($viewtype);
 
- }
 
- /**
 
-  * Enables the simple cache.
 
-  *
 
-  * @see elgg_view_register_simplecache()
 
-  * 
 
-  * @deprecated 1.8 Use {@link elgg_enable_simplecache()}
 
-  */
 
- function elgg_view_enable_simplecache() {
 
- 	elgg_deprecated_notice("elgg_view_enable_simplecache() was deprecated by elgg_enable_simplecache()", 1.8);
 
- 	return elgg_enable_simplecache();
 
- }
 
- /**
 
-  * Disables the simple cache.
 
-  *
 
-  * @see elgg_view_register_simplecache()
 
-  * 
 
-  * @deprecated 1.8 Use {@link elgg_disable_simplecache()}
 
-  */
 
- function elgg_view_disable_simplecache() {
 
- 	elgg_deprecated_notice("elgg_view_disable_simplecache() was deprecated by elgg_disable_simplecache()", 1.8);
 
- 	return elgg_disable_simplecache();
 
- }
 
- // these were internal functions that perhaps can be removed rather than deprecated
 
- /**
 
-  * @deprecated 1.8
 
-  */
 
- function is_db_installed() {
 
- 	elgg_deprecated_notice('is_db_installed() has been deprecated', 1.8);
 
- 	return true;
 
- }
 
- /**
 
-  * @deprecated 1.8
 
-  */
 
- function is_installed() {
 
- 	elgg_deprecated_notice('is_installed() has been deprecated', 1.8);
 
- 	return true;
 
- }
 
- /**
 
-  * Attempt to authenticate.
 
-  * This function will process all registered PAM handlers or stop when the first
 
-  * handler fails. A handler fails by either returning false or throwing an
 
-  * exception. The advantage of throwing an exception is that it returns a message
 
-  * through the global $_PAM_HANDLERS_MSG which can be used in communication with
 
-  * a user. The order that handlers are processed is determined by the order that
 
-  * they were registered.
 
-  *
 
-  * If $credentials are provided the PAM handler should authenticate using the
 
-  * provided credentials, if not then credentials should be prompted for or
 
-  * otherwise retrieved (eg from the HTTP header or $_SESSION).
 
-  *
 
-  * @param mixed $credentials Mixed PAM handler specific credentials (e.g. username, password)
 
-  * @param string $policy - the policy type, default is "user"
 
-  * @return bool true if authenticated, false if not.
 
-  *
 
-  * @deprecated 1.8 See {@link \ElggPAM}
 
-  */
 
- function pam_authenticate($credentials = NULL, $policy = "user") {
 
- 	elgg_deprecated_notice('pam_authenticate has been deprecated for \ElggPAM', 1.8);
 
- 	global $_PAM_HANDLERS, $_PAM_HANDLERS_MSG;
 
- 	$_PAM_HANDLERS_MSG = array();
 
- 	$authenticated = false;
 
- 	foreach ($_PAM_HANDLERS[$policy] as $k => $v) {
 
- 		$handler = $v->handler;
 
- 		$importance = $v->importance;
 
- 		try {
 
- 			// Execute the handler
 
- 			if ($handler($credentials)) {
 
- 				// Explicitly returned true
 
- 				$_PAM_HANDLERS_MSG[$k] = "Authenticated!";
 
- 				$authenticated = true;
 
- 			} else {
 
- 				$_PAM_HANDLERS_MSG[$k] = "Not Authenticated.";
 
- 				// If this is required then abort.
 
- 				if ($importance == 'required') {
 
- 					return false;
 
- 				}
 
- 			}
 
- 		} catch (Exception $e) {
 
- 			$_PAM_HANDLERS_MSG[$k] = "$e";
 
- 			// If this is required then abort.
 
- 			if ($importance == 'required') {
 
- 				return false;
 
- 			}
 
- 		}
 
- 	}
 
- 	return $authenticated;
 
- }
 
- /**
 
-  * When given a widget entity and a new requested location, saves the new location
 
-  * and also provides a sensible ordering for all widgets in that column
 
-  *
 
-  * @param \ElggObject $widget The widget entity
 
-  * @param int        $order  The order within the column
 
-  * @param int        $column The column (1, 2 or 3)
 
-  *
 
-  * @return bool Depending on success
 
-  * @deprecated 1.8 use \ElggWidget::move()
 
-  */
 
- function save_widget_location(\ElggObject $widget, $order, $column) {
 
- 	elgg_deprecated_notice('save_widget_location() is deprecated', 1.8);
 
- 	if ($widget instanceof \ElggObject) {
 
- 		if ($widget->getSubtype() == "widget") {
 
- 			// If you can't move the widget, don't save a new location
 
- 			if (!$widget->draggable) {
 
- 				return false;
 
- 			}
 
- 			// Sanitise the column value
 
- 			if ($column != 1 || $column != 2 || $column != 3) {
 
- 				$column = 1;
 
- 			}
 
- 			$widget->column = (int) $column;
 
- 			$ordertmp = array();
 
- 			$params = array(
 
- 				'context' => $widget->context,
 
- 				'column' => $column,
 
- 			);
 
- 			if ($entities = get_entities_from_metadata_multi($params, 'object', 'widget')) {
 
- 				foreach ($entities as $entity) {
 
- 					$entityorder = $entity->order;
 
- 					if ($entityorder < $order) {
 
- 						$ordertmp[$entityorder] = $entity;
 
- 					}
 
- 					if ($entityorder >= $order) {
 
- 						$ordertmp[$entityorder + 10000] = $entity;
 
- 					}
 
- 				}
 
- 			}
 
- 			$ordertmp[$order] = $widget;
 
- 			ksort($ordertmp);
 
- 			$orderticker = 10;
 
- 			foreach ($ordertmp as $orderval => $entity) {
 
- 				$entity->order = $orderticker;
 
- 				$orderticker += 10;
 
- 			}
 
- 			return true;
 
- 		} else {
 
- 			register_error($widget->getSubtype());
 
- 		}
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Get widgets for a particular context and column, in order of display
 
-  *
 
-  * @param int    $user_guid The owner user GUID
 
-  * @param string $context   The context (profile, dashboard etc)
 
-  * @param int    $column    The column (1 or 2)
 
-  *
 
-  * @return array|false An array of widget \ElggObjects, or false
 
-  * @deprecated 1.8 Use elgg_get_widgets()
 
-  */
 
- function get_widgets($user_guid, $context, $column) {
 
- 	elgg_deprecated_notice('get_widgets is depecated for elgg_get_widgets', 1.8);
 
- 	$params = array(
 
- 		'column' => $column,
 
- 		'context' => $context
 
- 	);
 
- 	$widgets = get_entities_from_private_setting_multi($params, "object",
 
- 		"widget", $user_guid, "", 10000);
 
- 	if ($widgets) {
 
- 		$widgetorder = array();
 
- 		foreach ($widgets as $widget) {
 
- 			$order = $widget->order;
 
- 			while (isset($widgetorder[$order])) {
 
- 				$order++;
 
- 			}
 
- 			$widgetorder[$order] = $widget;
 
- 		}
 
- 		ksort($widgetorder);
 
- 		return $widgetorder;
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Add a new widget instance
 
-  *
 
-  * @param int    $entity_guid GUID of entity that owns this widget
 
-  * @param string $handler     The handler for this widget
 
-  * @param string $context     The page context for this widget
 
-  * @param int    $order       The order to display this widget in
 
-  * @param int    $column      The column to display this widget in (1, 2 or 3)
 
-  * @param int    $access_id   If not specified, it is set to the default access level
 
-  *
 
-  * @return int|false Widget GUID or false on failure
 
-  * @deprecated 1.8 use elgg_create_widget()
 
-  */
 
- function add_widget($entity_guid, $handler, $context, $order = 0, $column = 1, $access_id = null) {
 
- 	elgg_deprecated_notice('add_widget has been deprecated for elgg_create_widget', 1.8);
 
- 	if (empty($entity_guid) || empty($context) || empty($handler) || !widget_type_exists($handler)) {
 
- 		return false;
 
- 	}
 
- 	if ($entity = get_entity($entity_guid)) {
 
- 		$widget = new \ElggWidget;
 
- 		$widget->owner_guid = $entity_guid;
 
- 		$widget->container_guid = $entity_guid;
 
- 		if (isset($access_id)) {
 
- 			$widget->access_id = $access_id;
 
- 		} else {
 
- 			$widget->access_id = get_default_access();
 
- 		}
 
- 		$guid = $widget->save();
 
- 		// private settings cannot be set until \ElggWidget saved
 
- 		$widget->handler = $handler;
 
- 		$widget->context = $context;
 
- 		$widget->column = $column;
 
- 		$widget->order = $order;
 
- 		return $guid;
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Define a new widget type
 
-  *
 
-  * @param string $handler     The identifier for the widget handler
 
-  * @param string $name        The name of the widget type
 
-  * @param string $description A description for the widget type
 
-  * @param string $context     A comma-separated list of contexts where this
 
-  *                            widget is allowed (default: 'all')
 
-  * @param bool   $multiple    Whether or not multiple instances of this widget
 
-  *                            are allowed on a single dashboard (default: false)
 
-  * @param string $positions   A comma-separated list of positions on the page
 
-  *                            (side or main) where this widget is allowed (default: "side,main")
 
-  *
 
-  * @return bool Depending on success
 
-  * @deprecated 1.8 Use elgg_register_widget_type
 
-  */
 
- function add_widget_type($handler, $name, $description, $context = "all",
 
- $multiple = false, $positions = "side,main") {
 
- 	elgg_deprecated_notice("add_widget_type deprecated for elgg_register_widget_type", 1.8);
 
- 	return elgg_register_widget_type($handler, $name, $description, $context, $multiple);
 
- }
 
- /**
 
-  * Remove a widget type
 
-  *
 
-  * @param string $handler The identifier for the widget handler
 
-  *
 
-  * @return void
 
-  * @since 1.7.1
 
-  * @deprecated 1.8 Use elgg_unregister_widget_type
 
-  */
 
- function remove_widget_type($handler) {
 
- 	elgg_deprecated_notice("remove_widget_type deprecated for elgg_unregister_widget_type", 1.8);
 
- 	return elgg_unregister_widget_type($handler);
 
- }
 
- /**
 
-  * Determines whether or not widgets with the specified handler have been defined
 
-  *
 
-  * @param string $handler The widget handler identifying string
 
-  *
 
-  * @return bool Whether or not those widgets exist
 
-  * @deprecated 1.8 Use elgg_is_widget_type
 
-  */
 
- function widget_type_exists($handler) {
 
- 	elgg_deprecated_notice("widget_type_exists deprecated for elgg_is_widget_type", 1.8);
 
- 	return elgg_is_widget_type($handler);
 
- }
 
- /**
 
-  * Returns an array of \stdClass objects representing the defined widget types
 
-  *
 
-  * @return array A list of types defined (if any)
 
-  * @deprecated 1.8 Use elgg_get_widget_types
 
-  */
 
- function get_widget_types() {
 
- 	elgg_deprecated_notice("get_widget_types deprecrated for elgg_get_widget_types", 1.8);
 
- 	return elgg_get_widget_types();
 
- }
 
- /**
 
-  * Saves a widget's settings (by passing an array of
 
-  * (name => value) pairs to save_{$handler}_widget)
 
-  *
 
-  * @param int   $widget_guid The GUID of the widget we're saving to
 
-  * @param array $params      An array of name => value parameters
 
-  *
 
-  * @return bool
 
-  * @deprecated 1.8 Use elgg_save_widget_settings
 
-  */
 
- function save_widget_info($widget_guid, $params) {
 
- 	elgg_deprecated_notice("save_widget_info() is deprecated for elgg_save_widget_settings", 1.8);
 
- 	if ($widget = get_entity($widget_guid)) {
 
- 		$subtype = $widget->getSubtype();
 
- 		if ($subtype != "widget") {
 
- 			return false;
 
- 		}
 
- 		$handler = $widget->handler;
 
- 		if (empty($handler) || !widget_type_exists($handler)) {
 
- 			return false;
 
- 		}
 
- 		if (!$widget->canEdit()) {
 
- 			return false;
 
- 		}
 
- 		// Save the params to the widget
 
- 		if (is_array($params) && sizeof($params) > 0) {
 
- 			foreach ($params as $name => $value) {
 
- 				if (!empty($name) && !in_array($name, array(
 
- 					'guid', 'owner_guid', 'site_guid'
 
- 				))) {
 
- 					if (is_array($value)) {
 
- 						// @todo Handle arrays securely
 
- 						$widget->setMetadata($name, $value, "", true);
 
- 					} else {
 
- 						$widget->$name = $value;
 
- 					}
 
- 				}
 
- 			}
 
- 			$widget->save();
 
- 		}
 
- 		$function = "save_{$handler}_widget";
 
- 		if (is_callable($function)) {
 
- 			return $function($params);
 
- 		}
 
- 		return true;
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Reorders the widgets from a widget panel
 
-  *
 
-  * @param string $panelstring1 String of guids of \ElggWidget objects separated by ::
 
-  * @param string $panelstring2 String of guids of \ElggWidget objects separated by ::
 
-  * @param string $panelstring3 String of guids of \ElggWidget objects separated by ::
 
-  * @param string $context      Profile or dashboard
 
-  * @param int    $owner        Owner guid
 
-  *
 
-  * @return void
 
-  * @deprecated 1.8 Don't use.
 
-  */
 
- function reorder_widgets_from_panel($panelstring1, $panelstring2, $panelstring3, $context, $owner) {
 
- 	elgg_deprecated_notice("reorder_widgets_from_panel() is deprecated", 1.8);
 
- 	$return = true;
 
- 	$mainwidgets = explode('::', $panelstring1);
 
- 	$sidewidgets = explode('::', $panelstring2);
 
- 	$rightwidgets = explode('::', $panelstring3);
 
- 	$handlers = array();
 
- 	$guids = array();
 
- 	if (is_array($mainwidgets) && sizeof($mainwidgets) > 0) {
 
- 		foreach ($mainwidgets as $widget) {
 
- 			$guid = (int) $widget;
 
- 			if ("{$guid}" == "{$widget}") {
 
- 				$guids[1][] = $widget;
 
- 			} else {
 
- 				$handlers[1][] = $widget;
 
- 			}
 
- 		}
 
- 	}
 
- 	if (is_array($sidewidgets) && sizeof($sidewidgets) > 0) {
 
- 		foreach ($sidewidgets as $widget) {
 
- 			$guid = (int) $widget;
 
- 			if ("{$guid}" == "{$widget}") {
 
- 				$guids[2][] = $widget;
 
- 			} else {
 
- 				$handlers[2][] = $widget;
 
- 			}
 
- 		}
 
- 	}
 
- 	if (is_array($rightwidgets) && sizeof($rightwidgets) > 0) {
 
- 		foreach ($rightwidgets as $widget) {
 
- 			$guid = (int) $widget;
 
- 			if ("{$guid}" == "{$widget}") {
 
- 				$guids[3][] = $widget;
 
- 			} else {
 
- 				$handlers[3][] = $widget;
 
- 			}
 
- 		}
 
- 	}
 
- 	// Reorder existing widgets or delete ones that have vanished
 
- 	foreach (array(1, 2, 3) as $column) {
 
- 		if ($dbwidgets = get_widgets($owner, $context, $column)) {
 
- 			foreach ($dbwidgets as $dbwidget) {
 
- 				if (in_array($dbwidget->getGUID(), $guids[1])
 
- 				|| in_array($dbwidget->getGUID(), $guids[2]) || in_array($dbwidget->getGUID(), $guids[3])) {
 
- 					if (in_array($dbwidget->getGUID(), $guids[1])) {
 
- 						$pos = array_search($dbwidget->getGUID(), $guids[1]);
 
- 						$col = 1;
 
- 					} else if (in_array($dbwidget->getGUID(), $guids[2])) {
 
- 						$pos = array_search($dbwidget->getGUID(), $guids[2]);
 
- 						$col = 2;
 
- 					} else {
 
- 						$pos = array_search($dbwidget->getGUID(), $guids[3]);
 
- 						$col = 3;
 
- 					}
 
- 					$pos = ($pos + 1) * 10;
 
- 					$dbwidget->column = $col;
 
- 					$dbwidget->order = $pos;
 
- 				} else {
 
- 					$dbguid = $dbwidget->getGUID();
 
- 					if (!$dbwidget->delete()) {
 
- 						$return = false;
 
- 					} else {
 
- 						// Remove state cookie
 
- 						$cookie = new \ElggCookie("widget$dbguid");
 
- 						$cookie->value = NULL;
 
- 						elgg_set_cookie($cookie);
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 		// Add new ones
 
- 		if (sizeof($guids[$column]) > 0) {
 
- 			foreach ($guids[$column] as $key => $guid) {
 
- 				if ($guid == 0) {
 
- 					$pos = ($key + 1) * 10;
 
- 					$handler = $handlers[$column][$key];
 
- 					if (!add_widget($owner, $handler, $context, $pos, $column)) {
 
- 						$return = false;
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	return $return;
 
- }
 
- /**
 
-  * Register a particular context for use with widgets.
 
-  *
 
-  * @param string $context The context we wish to enable context for
 
-  *
 
-  * @return void
 
-  * @deprecated 1.8 Don't use.
 
-  */
 
- function use_widgets($context) {
 
- 	elgg_deprecated_notice("use_widgets is deprecated", 1.8);
 
- 	global $CONFIG;
 
- 	if (!isset($CONFIG->widgets)) {
 
- 		$CONFIG->widgets = new \stdClass;
 
- 	}
 
- 	if (!isset($CONFIG->widgets->contexts)) {
 
- 		$CONFIG->widgets->contexts = array();
 
- 	}
 
- 	if (!empty($context)) {
 
- 		$CONFIG->widgets->contexts[] = $context;
 
- 	}
 
- }
 
- /**
 
-  * Determines whether or not the current context is using widgets
 
-  *
 
-  * @return bool Depending on widget status
 
-  * @deprecated 1.8 Don't use.
 
-  */
 
- function using_widgets() {
 
- 	elgg_deprecated_notice("using_widgets is deprecated", 1.8);
 
- 	global $CONFIG;
 
- 	$context = elgg_get_context();
 
- 	if (isset($CONFIG->widgets->contexts) && is_array($CONFIG->widgets->contexts)) {
 
- 		if (in_array($context, $CONFIG->widgets->contexts)) {
 
- 			return true;
 
- 		}
 
- 	}
 
- 	return false;
 
- }
 
- /**
 
-  * Displays a particular widget
 
-  *
 
-  * @param \ElggObject $widget The widget to display
 
-  * @return string The HTML for the widget, including JavaScript wrapper
 
-  * 
 
-  * @deprecated 1.8 Use elgg_view_entity()
 
-  */
 
- function display_widget(\ElggObject $widget) {
 
- 	elgg_deprecated_notice("display_widget() was been deprecated. Use elgg_view_entity().", 1.8);
 
- 	return elgg_view_entity($widget);
 
- }
 
- /**
 
-  * Count the number of comments attached to an entity
 
-  *
 
-  * @param \ElggEntity $entity
 
-  * @return int Number of comments
 
-  * @deprecated 1.8 Use \ElggEntity->countComments()
 
-  */
 
- function elgg_count_comments($entity) {
 
- 	elgg_deprecated_notice('elgg_count_comments() is deprecated by \ElggEntity->countComments()', 1.8);
 
- 	if ($entity instanceof \ElggEntity) {
 
- 		return $entity->countComments();
 
- 	}
 
- 	return 0;
 
- }
 
- /**
 
-  * Removes all items relating to a particular acting entity from the river
 
-  *
 
-  * @param int $subject_guid The GUID of the entity
 
-  *
 
-  * @return bool Depending on success
 
-  * @deprecated 1.8 Use elgg_delete_river()
 
-  */
 
- function remove_from_river_by_subject($subject_guid) {
 
- 	elgg_deprecated_notice("remove_from_river_by_subject() deprecated by elgg_delete_river()", 1.8);
 
- 	return elgg_delete_river(array('subject_guid' => $subject_guid));
 
- }
 
- /**
 
-  * Removes all items relating to a particular entity being acted upon from the river
 
-  *
 
-  * @param int $object_guid The GUID of the entity
 
-  *
 
-  * @return bool Depending on success
 
-  * @deprecated 1.8 Use elgg_delete_river()
 
-  */
 
- function remove_from_river_by_object($object_guid) {
 
- 	elgg_deprecated_notice("remove_from_river_by_object() deprecated by elgg_delete_river()", 1.8);
 
- 	return elgg_delete_river(array('object_guid' => $object_guid));
 
- }
 
- /**
 
-  * Removes all items relating to a particular annotation being acted upon from the river
 
-  *
 
-  * @param int $annotation_id The ID of the annotation
 
-  *
 
-  * @return bool Depending on success
 
-  * @since 1.7.0
 
-  * @deprecated 1.8 Use elgg_delete_river()
 
-  */
 
- function remove_from_river_by_annotation($annotation_id) {
 
- 	elgg_deprecated_notice("remove_from_river_by_annotation() deprecated by elgg_delete_river()", 1.8);
 
- 	return elgg_delete_river(array('annotation_id' => $annotation_id));
 
- }
 
- /**
 
-  * Removes a single river entry
 
-  *
 
-  * @param int $id The ID of the river entry
 
-  *
 
-  * @return bool Depending on success
 
-  * @since 1.7.2
 
-  * @deprecated 1.8 Use elgg_delete_river()
 
-  */
 
- function remove_from_river_by_id($id) {
 
- 	elgg_deprecated_notice("remove_from_river_by_id() deprecated by elgg_delete_river()", 1.8);
 
- 	return elgg_delete_river(array('id' => $id));
 
- }
 
- /**
 
-  * A default page handler
 
-  * Tries to locate a suitable file to include. Only works for core pages, not plugins.
 
-  *
 
-  * @param array  $page    The page URL elements
 
-  * @param string $handler The base handler
 
-  *
 
-  * @return true|false Depending on success
 
-  * @deprecated 1.8
 
-  */
 
- function default_page_handler($page, $handler) {
 
- 	global $CONFIG;
 
- 	elgg_deprecated_notice("default_page_handler is deprecated", "1.8");
 
- 	$page = implode('/', $page);
 
- 	// protect against including arbitary files
 
- 	$page = str_replace("..", "", $page);
 
- 	$callpath = $CONFIG->path . $handler . "/" . $page;
 
- 	if (is_dir($callpath)) {
 
- 		$callpath = sanitise_filepath($callpath);
 
- 		$callpath .= "index.php";
 
- 		if (file_exists($callpath)) {
 
- 			if (include($callpath)) {
 
- 				return TRUE;
 
- 			}
 
- 		}
 
- 	} else if (file_exists($callpath)) {
 
- 		include($callpath);
 
- 		return TRUE;
 
- 	}
 
- 	return FALSE;
 
- }
 
- /**
 
-  * Invalidate this class's entry in the cache.
 
-  *
 
-  * @param int $guid The entity guid
 
-  *
 
-  * @return void
 
-  * @access private
 
-  * @deprecated 1.8
 
-  */
 
- function invalidate_cache_for_entity($guid) {
 
- 	elgg_deprecated_notice('invalidate_cache_for_entity() is a private function and should not be used.', 1.8);
 
- 	_elgg_invalidate_cache_for_entity($guid);
 
- }
 
- /**
 
-  * Cache an entity.
 
-  *
 
-  * Stores an entity in $ENTITY_CACHE;
 
-  *
 
-  * @param \ElggEntity $entity Entity to cache
 
-  *
 
-  * @return void
 
-  * @access private
 
-  * @deprecated 1.8
 
-  */
 
- function cache_entity(\ElggEntity $entity) {
 
- 	elgg_deprecated_notice('cache_entity() is a private function and should not be used.', 1.8);
 
- 	_elgg_cache_entity($entity);
 
- }
 
- /**
 
-  * Retrieve a entity from the cache.
 
-  *
 
-  * @param int $guid The guid
 
-  *
 
-  * @return \ElggEntity|bool false if entity not cached, or not fully loaded
 
-  * @access private
 
-  * @deprecated 1.8
 
-  */
 
- function retrieve_cached_entity($guid) {
 
- 	elgg_deprecated_notice('retrieve_cached_entity() is a private function and should not be used.', 1.8);
 
- 	return _elgg_retrieve_cached_entity($guid);
 
- }
 
- /**
 
-  * Returns the category of a file from its MIME type
 
-  *
 
-  * @param string $mime_type The MIME type
 
-  *
 
-  * @return string 'document', 'audio', 'video', or 'general' if the MIME type was unrecognized
 
-  * @deprecated 1.8 Use elgg_get_file_simple_type()
 
-  */
 
- function get_general_file_type($mime_type) {
 
- 	elgg_deprecated_notice(__FUNCTION__ . ' is deprecated. Use elgg_get_file_simple_type()', 1.8);
 
- 	return elgg_get_file_simple_type($mime_type);
 
- }
 
 
  |