cmdbabstract.class.inc.php 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528
  1. <?php
  2. // Copyright (C) 2010-2012 Combodo SARL
  3. //
  4. // This file is part of iTop.
  5. //
  6. // iTop is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // iTop is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with iTop. If not, see <http://www.gnu.org/licenses/>
  18. /**
  19. * Abstract class that implements some common and useful methods for displaying
  20. * the objects
  21. *
  22. * @copyright Copyright (C) 2010-2012 Combodo SARL
  23. * @license http://opensource.org/licenses/AGPL-3.0
  24. */
  25. define('OBJECT_PROPERTIES_TAB', 'ObjectProperties');
  26. define('HILIGHT_CLASS_CRITICAL', 'red');
  27. define('HILIGHT_CLASS_WARNING', 'orange');
  28. define('HILIGHT_CLASS_OK', 'green');
  29. define('HILIGHT_CLASS_NONE', '');
  30. require_once(APPROOT.'/core/cmdbobject.class.inc.php');
  31. require_once(APPROOT.'/application/applicationextension.inc.php');
  32. require_once(APPROOT.'/application/utils.inc.php');
  33. require_once(APPROOT.'/application/applicationcontext.class.inc.php');
  34. require_once(APPROOT.'/application/ui.linkswidget.class.inc.php');
  35. require_once(APPROOT.'/application/ui.linksdirectwidget.class.inc.php');
  36. require_once(APPROOT.'/application/ui.passwordwidget.class.inc.php');
  37. require_once(APPROOT.'/application/ui.extkeywidget.class.inc.php');
  38. require_once(APPROOT.'/application/ui.htmleditorwidget.class.inc.php');
  39. require_once(APPROOT.'/application/datatable.class.inc.php');
  40. /**
  41. * All objects to be displayed in the application (either as a list or as details)
  42. * must implement this interface.
  43. */
  44. interface iDisplay
  45. {
  46. /**
  47. * Maps the given context parameter name to the appropriate filter/search code for this class
  48. * @param string $sContextParam Name of the context parameter, i.e. 'org_id'
  49. * @return string Filter code, i.e. 'customer_id'
  50. */
  51. public static function MapContextParam($sContextParam);
  52. /**
  53. * This function returns a 'hilight' CSS class, used to hilight a given row in a table
  54. * There are currently (i.e defined in the CSS) 4 possible values HILIGHT_CLASS_CRITICAL,
  55. * HILIGHT_CLASS_WARNING, HILIGHT_CLASS_OK, HILIGHT_CLASS_NONE
  56. * To Be overridden by derived classes
  57. * @param void
  58. * @return String The desired higlight class for the object/row
  59. */
  60. public function GetHilightClass();
  61. /**
  62. * Returns the relative path to the page that handles the display of the object
  63. * @return string
  64. */
  65. public static function GetUIPage();
  66. /**
  67. * Displays the details of the object
  68. */
  69. public function DisplayDetails(WebPage $oPage, $bEditMode = false);
  70. }
  71. abstract class cmdbAbstractObject extends CMDBObject implements iDisplay
  72. {
  73. protected $m_iFormId; // The ID of the form used to edit the object (when in edition mode !)
  74. static $iGlobalFormId = 1;
  75. protected $aFieldsMap;
  76. /**
  77. * returns what will be the next ID for the forms
  78. */
  79. public static function GetNextFormId()
  80. {
  81. return 1 + self::$iGlobalFormId;
  82. }
  83. public static function GetUIPage()
  84. {
  85. return 'UI.php';
  86. }
  87. /**
  88. * Set a message diplayed to the end-user next time this object will be displayed
  89. * Messages are uniquely identified so that plugins can override standard messages (the final work is given to the last plugin to set the message for a given message id)
  90. * In practice, standard messages are recorded at the end but they will not overwrite existing messages
  91. *
  92. * @param string $sClass The class of the object (must be the final class)
  93. * @param int $iKey The identifier of the object
  94. * @param string $sMessageId Your id or one of the well-known ids: 'create', 'update' and 'apply_stimulus'
  95. * @param string $sMessage The HTML message (must be correctly escaped)
  96. * @param string $sSeverity Any of the following: ok, info, error.
  97. * @param float $fRank Ordering of the message: smallest displayed first (can be negative)
  98. * @param bool $bMustNotExist Do not alter any existing message (considering the id)
  99. *
  100. */
  101. public static function SetSessionMessage($sClass, $iKey, $sMessageId, $sMessage, $sSeverity, $fRank, $bMustNotExist = false)
  102. {
  103. $sMessageKey = $sClass.'::'.$iKey;
  104. if (!isset($_SESSION['obj_messages'][$sMessageKey]))
  105. {
  106. $_SESSION['obj_messages'][$sMessageKey] = array();
  107. }
  108. if (!$bMustNotExist || !array_key_exists($sMessageId, $_SESSION['obj_messages'][$sMessageKey]))
  109. {
  110. $_SESSION['obj_messages'][$sMessageKey][$sMessageId] = array(
  111. 'rank' => $fRank,
  112. 'severity' => $sSeverity,
  113. 'message' => $sMessage
  114. );
  115. }
  116. }
  117. function DisplayBareHeader(WebPage $oPage, $bEditMode = false)
  118. {
  119. // Standard Header with name, actions menu and history block
  120. //
  121. // Is there a message for this object ??
  122. $sMessageKey = get_class($this).'::'.$this->GetKey();
  123. if (array_key_exists('obj_messages', $_SESSION) && array_key_exists($sMessageKey, $_SESSION['obj_messages']))
  124. {
  125. $aMessages = array();
  126. $aRanks = array();
  127. foreach ($_SESSION['obj_messages'][$sMessageKey] as $sMessageId => $aMessageData)
  128. {
  129. $sMsgClass = 'message_'.$aMessageData['severity'];
  130. $aMessages[] = "<div class=\"header_message $sMsgClass\">".$aMessageData['message']."</div>";
  131. $aRanks[] = $aMessageData['rank'];
  132. }
  133. array_multisort($aRanks, $aMessages);
  134. foreach ($aMessages as $sMessage)
  135. {
  136. $oPage->add($sMessage);
  137. }
  138. unset($_SESSION['obj_messages'][$sMessageKey]);
  139. }
  140. // action menu
  141. $oSingletonFilter = new DBObjectSearch(get_class($this));
  142. $oSingletonFilter->AddCondition('id', $this->GetKey(), '=');
  143. $oBlock = new MenuBlock($oSingletonFilter, 'details', false);
  144. $oBlock->Display($oPage, -1);
  145. // Master data sources
  146. $sSynchroIcon = '';
  147. $oReplicaSet = $this->GetMasterReplica();
  148. $bSynchronized = false;
  149. $oCreatorTask = null;
  150. $bCanBeDeletedByTask = false;
  151. $bCanBeDeletedByUser = true;
  152. $aMasterSources = array();
  153. if ($oReplicaSet->Count() > 0)
  154. {
  155. $bSynchronized = true;
  156. while($aData = $oReplicaSet->FetchAssoc())
  157. {
  158. // Assumption: $aData['datasource'] will not be null because the data source id is always set...
  159. $sApplicationURL = $aData['datasource']->GetApplicationUrl($this, $aData['replica']);
  160. $sLink = $aData['datasource']->GetName();
  161. if (!empty($sApplicationURL))
  162. {
  163. $sLink = "<a href=\"$sApplicationURL\" target=\"_blank\">".$aData['datasource']->GetName()."</a>";
  164. }
  165. if ($aData['replica']->Get('status_dest_creator') == 1)
  166. {
  167. $oCreatorTask = $aData['datasource'];
  168. $bCreatedByTask = true;
  169. }
  170. else
  171. {
  172. $bCreatedByTask = false;
  173. }
  174. if ($bCreatedByTask)
  175. {
  176. $sDeletePolicy = $aData['datasource']->Get('delete_policy');
  177. if (($sDeletePolicy == 'delete') || ($sDeletePolicy == 'update_then_delete'))
  178. {
  179. $bCanBeDeletedByTask = true;
  180. }
  181. $sUserDeletePolicy = $aData['datasource']->Get('user_delete_policy');
  182. if ($sUserDeletePolicy == 'nobody')
  183. {
  184. $bCanBeDeletedByUser = false;
  185. }
  186. elseif (($sUserDeletePolicy == 'administrators') && !UserRights::IsAdministrator())
  187. {
  188. $bCanBeDeletedByUser = false;
  189. }
  190. else // everybody...
  191. {
  192. }
  193. }
  194. $aMasterSources[$aData['datasource']->GetKey()]['datasource'] = $aData['datasource'];
  195. $aMasterSources[$aData['datasource']->GetKey()]['url'] = $sLink;
  196. $aMasterSources[$aData['datasource']->GetKey()]['last_synchro'] = $aData['replica']->Get('status_last_seen');
  197. }
  198. if (is_object($oCreatorTask))
  199. {
  200. $sTaskUrl = $aMasterSources[$oCreatorTask->GetKey()]['url'];
  201. if (!$bCanBeDeletedByUser)
  202. {
  203. $sTip = "<p>".Dict::Format('Core:Synchro:TheObjectCannotBeDeletedByUser_Source', $sTaskUrl)."</p>";
  204. }
  205. else
  206. {
  207. $sTip = "<p>".Dict::Format('Core:Synchro:TheObjectWasCreatedBy_Source', $sTaskUrl)."</p>";
  208. }
  209. if ($bCanBeDeletedByTask)
  210. {
  211. $sTip .= "<p>".Dict::Format('Core:Synchro:TheObjectCanBeDeletedBy_Source', $sTaskUrl)."</p>";
  212. }
  213. }
  214. else
  215. {
  216. $sTip = "<p>".Dict::S('Core:Synchro:ThisObjectIsSynchronized')."</p>";
  217. }
  218. $sTip .= "<p><b>".Dict::S('Core:Synchro:ListOfDataSources')."</b></p>";
  219. foreach($aMasterSources as $aStruct)
  220. {
  221. $oDataSource = $aStruct['datasource'];
  222. $sLink = $aStruct['url'];
  223. $sTip .= "<p style=\"white-space:nowrap\">".$oDataSource->GetIcon(true, 'style="vertical-align:middle"')."&nbsp;$sLink<br/>";
  224. $sTip .= Dict::S('Core:Synchro:LastSynchro').'<br/>'.$aStruct['last_synchro']."</p>";
  225. }
  226. $sSynchroIcon = '&nbsp;<img style="vertical-align:middle;" id="synchro_icon" src="../images/locked.png"/>';
  227. $sTip = addslashes($sTip);
  228. $oPage->add_ready_script("$('#synchro_icon').qtip( { content: '$sTip', show: 'mouseover', hide: { fixed: true }, style: { name: 'dark', tip: 'leftTop' }, position: { corner: { target: 'rightMiddle', tooltip: 'leftTop' }} } );");
  229. }
  230. $oPage->add("<div class=\"page_header\"><h1>".$this->GetIcon()."&nbsp;\n");
  231. $sRefreshIcon = '';
  232. if ($_SERVER['REQUEST_METHOD'] == 'GET')
  233. {
  234. $sRefreshIcon = '<img src="../images/reload.png" style="cursor:pointer;vertical-align:middle;margin-left:1em;" onclick="window.location.reload();" title="'.htmlentities(Dict::S('UI:Button:Refresh'), ENT_QUOTES, 'UTF-8').'"/>';
  235. }
  236. $oPage->add(MetaModel::GetName(get_class($this)).": <span class=\"hilite\">".$this->GetName()."</span>$sRefreshIcon $sSynchroIcon</h1>\n");
  237. $oPage->add("</div>\n");
  238. }
  239. function DisplayBareHistory(WebPage $oPage, $bEditMode = false)
  240. {
  241. // history block (with as a tab)
  242. $oHistoryFilter = new DBObjectSearch('CMDBChangeOp');
  243. $oHistoryFilter->AddCondition('objkey', $this->GetKey(), '=');
  244. $oHistoryFilter->AddCondition('objclass', get_class($this), '=');
  245. $oBlock = new HistoryBlock($oHistoryFilter, 'table', false);
  246. $oBlock->Display($oPage, -1);
  247. }
  248. function DisplayBareProperties(WebPage $oPage, $bEditMode = false, $sPrefix = '', $aExtraParams = array())
  249. {
  250. $aFieldsMap = $this->GetBareProperties($oPage, $bEditMode, $sPrefix, $aExtraParams);
  251. if (!isset($aExtraParams['disable_plugins']) || !$aExtraParams['disable_plugins'])
  252. {
  253. foreach (MetaModel::EnumPlugins('iApplicationUIExtension') as $oExtensionInstance)
  254. {
  255. $oExtensionInstance->OnDisplayProperties($this, $oPage, $bEditMode);
  256. }
  257. }
  258. // Special case to display the case log, if any...
  259. // WARNING: if you modify the loop below, also check the corresponding code in UpdateObject and DisplayModifyForm
  260. foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode => $oAttDef)
  261. {
  262. if ($oAttDef instanceof AttributeCaseLog)
  263. {
  264. $sComment = (isset($aExtraParams['fieldsComments'][$sAttCode])) ? $aExtraParams['fieldsComments'][$sAttCode] : '';
  265. $this->DisplayCaseLog($oPage, $sAttCode, $sComment, $sPrefix, $bEditMode);
  266. }
  267. }
  268. return $aFieldsMap;
  269. }
  270. /**
  271. * Add a field to the map: attcode => id used when building a form
  272. * @param string $sAttCode The attribute code of the field being edited
  273. * @param string $sInputId The unique ID of the control/widget in the page
  274. */
  275. protected function AddToFieldsMap($sAttCode, $sInputId)
  276. {
  277. $this->aFieldsMap[$sAttCode] = $sInputId;
  278. }
  279. function DisplayBareRelations(WebPage $oPage, $bEditMode = false)
  280. {
  281. // Related objects: display all the linkset attributes, each as a separate tab
  282. // In the order described by the 'display' ZList
  283. $aList = $this->FlattenZList(MetaModel::GetZListItems(get_class($this), 'details'));
  284. if (count($aList) == 0)
  285. {
  286. // Empty ZList defined, display all the linkedset attributes defined
  287. $aList = array_keys(MetaModel::ListAttributeDefs(get_class($this)));
  288. }
  289. $sClass = get_class($this);
  290. foreach($aList as $sAttCode)
  291. {
  292. $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
  293. // Display mode
  294. if (!$oAttDef->IsLinkset()) continue; // Process only linkset attributes...
  295. // $oSet = new DBObjectSet($this->Get($sAttCode)->GetFilter()); // Why do something so useless ?
  296. $oSet = $this->Get($sAttCode);
  297. $iCount = $oSet->Count();
  298. $sCount = '';
  299. if ($iCount != 0)
  300. {
  301. $sCount = " ($iCount)";
  302. }
  303. $oPage->SetCurrentTab($oAttDef->GetLabel().$sCount);
  304. if ($this->IsNew())
  305. {
  306. $iFlags = $this->GetInitialStateAttributeFlags($sAttCode);
  307. }
  308. else
  309. {
  310. $iFlags = $this->GetAttributeFlags($sAttCode);
  311. }
  312. $bReadOnly = ($iFlags & (OPT_ATT_READONLY|OPT_ATT_SLAVE));
  313. if ($bEditMode && (!$bReadOnly))
  314. {
  315. $sInputId = $this->m_iFormId.'_'.$sAttCode;
  316. $sLinkedClass = $oAttDef->GetLinkedClass();
  317. if ($oAttDef->IsIndirect())
  318. {
  319. $oLinkingAttDef = MetaModel::GetAttributeDef($sLinkedClass, $oAttDef->GetExtKeyToRemote());
  320. $sTargetClass = $oLinkingAttDef->GetTargetClass();
  321. }
  322. else
  323. {
  324. $sTargetClass = $sLinkedClass;
  325. }
  326. $oPage->p(MetaModel::GetClassIcon($sTargetClass)."&nbsp;".$oAttDef->GetDescription().'<span id="busy_'.$sInputId.'"></span>');
  327. $oValue = $this->Get($sAttCode);
  328. $sDisplayValue = ''; // not used
  329. $aArgs = array('this' => $this);
  330. $sHTMLValue = "<span id=\"field_{$sInputId}\">".self::GetFormElementForField($oPage, $sClass, $sAttCode, $oAttDef, $oValue, $sDisplayValue, $sInputId, '', $iFlags, $aArgs).'</span>';
  331. $this->AddToFieldsMap($sAttCode, $sInputId);
  332. $oPage->add($sHTMLValue);
  333. }
  334. else
  335. {
  336. // Display mode
  337. if (!$oAttDef->IsIndirect())
  338. {
  339. // 1:n links
  340. $sTargetClass = $oAttDef->GetLinkedClass();
  341. $aDefaults = array($oAttDef->GetExtKeyToMe() => $this->GetKey());
  342. $oAppContext = new ApplicationContext();
  343. foreach($oAppContext->GetNames() as $sKey)
  344. {
  345. // The linked object inherits the parent's value for the context
  346. if (MetaModel::IsValidAttCode($sClass, $sKey))
  347. {
  348. $aDefaults[$sKey] = $this->Get($sKey);
  349. }
  350. }
  351. $aParams = array(
  352. 'target_attr' => $oAttDef->GetExtKeyToMe(),
  353. 'object_id' => $this->GetKey(),
  354. 'menu' => false,
  355. 'default' => $aDefaults,
  356. 'table_id' => $sClass.'_'.$sAttCode,
  357. );
  358. }
  359. else
  360. {
  361. // n:n links
  362. $sLinkedClass = $oAttDef->GetLinkedClass();
  363. $oLinkingAttDef = MetaModel::GetAttributeDef($sLinkedClass, $oAttDef->GetExtKeyToRemote());
  364. $sTargetClass = $oLinkingAttDef->GetTargetClass();
  365. $bMenu = ($this->Get($sAttCode)->Count() > 0); // The menu is enabled only if there are already some elements...
  366. $aParams = array(
  367. 'link_attr' => $oAttDef->GetExtKeyToMe(),
  368. 'object_id' => $this->GetKey(),
  369. 'target_attr' => $oAttDef->GetExtKeyToRemote(),
  370. 'view_link' => false,
  371. 'menu' => false,
  372. 'display_limit' => true, // By default limit the list to speed up the initial load & display
  373. 'table_id' => $sClass.'_'.$sAttCode,
  374. );
  375. }
  376. $oPage->p(MetaModel::GetClassIcon($sTargetClass)."&nbsp;".$oAttDef->GetDescription());
  377. $oBlock = new DisplayBlock($this->Get($sAttCode)->GetFilter(), 'list', false);
  378. $oBlock->Display($oPage, 'rel_'.$sAttCode, $aParams);
  379. }
  380. }
  381. $oPage->SetCurrentTab('');
  382. foreach (MetaModel::EnumPlugins('iApplicationUIExtension') as $oExtensionInstance)
  383. {
  384. $oExtensionInstance->OnDisplayRelations($this, $oPage, $bEditMode);
  385. }
  386. // Display Notifications after the other tabs since this tab disappears in edition
  387. if (!$bEditMode)
  388. {
  389. // Look for any trigger that considers this object as "In Scope"
  390. // If any trigger has been found then display a tab with notifications
  391. //
  392. $oTriggerSet = new CMDBObjectSet(new DBObjectSearch('Trigger'));
  393. $aTriggers = array();
  394. while($oTrigger = $oTriggerSet->Fetch())
  395. {
  396. if($oTrigger->IsInScope($this))
  397. {
  398. $aTriggers[] = $oTrigger->GetKey();
  399. }
  400. }
  401. if (count($aTriggers) > 0)
  402. {
  403. $iId = $this->GetKey();
  404. $sTriggersList = implode(',', $aTriggers);
  405. $aNotifSearches = array();
  406. $iNotifsCount = 0;
  407. $aNotificationClasses = MetaModel::EnumChildClasses('EventNotification', ENUM_CHILD_CLASSES_EXCLUDETOP);
  408. foreach($aNotificationClasses as $sNotifClass)
  409. {
  410. $aNotifSearches[$sNotifClass] = DBObjectSearch::FromOQL("SELECT $sNotifClass AS Ev JOIN Trigger AS T ON Ev.trigger_id = T.id WHERE T.id IN ($sTriggersList) AND Ev.object_id = $iId");
  411. $oNotifSet = new DBObjectSet($aNotifSearches[$sNotifClass]);
  412. $iNotifsCount += $oNotifSet->Count();
  413. }
  414. // Display notifications regarding the object: on block per subclass to have the intersting columns
  415. $sCount = ($iNotifsCount > 0) ? ' ('.$iNotifsCount.')' : '';
  416. $oPage->SetCurrentTab(Dict::S('UI:NotificationsTab').$sCount);
  417. foreach($aNotificationClasses as $sNotifClass)
  418. {
  419. $oPage->p(MetaModel::GetClassIcon($sNotifClass, true).'&nbsp;'.MetaModel::GetName($sNotifClass));
  420. $oBlock = new DisplayBlock($aNotifSearches[$sNotifClass], 'list', false);
  421. $oBlock->Display($oPage, 'notifications_'.$sNotifClass, array('menu' => false));
  422. }
  423. }
  424. }
  425. }
  426. function GetBareProperties(WebPage $oPage, $bEditMode = false, $sPrefix, $aExtraParams = array())
  427. {
  428. $sHtml = '';
  429. $oAppContext = new ApplicationContext();
  430. $sStateAttCode = MetaModel::GetStateAttributeCode(get_class($this));
  431. $aDetails = array();
  432. $sClass = get_class($this);
  433. $aDetailsList = MetaModel::GetZListItems($sClass, 'details');
  434. $aDetailsStruct = self::ProcessZlist($aDetailsList, array('UI:PropertiesTab' => array()), 'UI:PropertiesTab', 'col1', '');
  435. // Compute the list of properties to display, first the attributes in the 'details' list, then
  436. // all the remaining attributes that are not external fields
  437. $sHtml = '';
  438. $aDetails = array();
  439. $iInputId = 0;
  440. $aFieldsMap = array();
  441. $aFieldsComments = (isset($aExtraParams['fieldsComments'])) ? $aExtraParams['fieldsComments'] : array();
  442. $aExtraFlags = (isset($aExtraParams['fieldsFlags'])) ? $aExtraParams['fieldsFlags'] : array();
  443. $bFieldComments = (count($aFieldsComments) > 0);
  444. foreach($aDetailsStruct as $sTab => $aCols )
  445. {
  446. $aDetails[$sTab] = array();
  447. ksort($aCols);
  448. $oPage->SetCurrentTab(Dict::S($sTab));
  449. $oPage->add('<table style="vertical-align:top"><tr>');
  450. foreach($aCols as $sColIndex => $aFieldsets)
  451. {
  452. $oPage->add('<td style="vertical-align:top">');
  453. //$aDetails[$sTab][$sColIndex] = array();
  454. $sLabel = '';
  455. $sPreviousLabel = '';
  456. $aDetails[$sTab][$sColIndex] = array();
  457. foreach($aFieldsets as $sFieldsetName => $aFields)
  458. {
  459. if (!empty($sFieldsetName) && ($sFieldsetName[0] != '_'))
  460. {
  461. $sLabel = $sFieldsetName;
  462. }
  463. else
  464. {
  465. $sLabel = '';
  466. }
  467. if ($sLabel != $sPreviousLabel)
  468. {
  469. if (!empty($sPreviousLabel))
  470. {
  471. $oPage->add('<fieldset>');
  472. $oPage->add('<legend>'.Dict::S($sPreviousLabel).'</legend>');
  473. }
  474. $oPage->Details($aDetails[$sTab][$sColIndex]);
  475. if (!empty($sPreviousLabel))
  476. {
  477. $oPage->add('</fieldset>');
  478. }
  479. $aDetails[$sTab][$sColIndex] = array();
  480. $sPreviousLabel = $sLabel;
  481. }
  482. foreach($aFields as $sAttCode)
  483. {
  484. if ($bEditMode)
  485. {
  486. $sComments = isset($aFieldsComments[$sAttCode]) ? $aFieldsComments[$sAttCode] : '&nbsp;';
  487. $sInfos = '&nbsp;';
  488. if ($this->IsNew())
  489. {
  490. $iFlags = $this->GetInitialStateAttributeFlags($sAttCode);
  491. }
  492. else
  493. {
  494. $iFlags = $this->GetAttributeFlags($sAttCode);
  495. }
  496. if (($iFlags & OPT_ATT_MANDATORY) && $this->IsNew())
  497. {
  498. $iFlags = $iFlags & ~OPT_ATT_READONLY; // Mandatory fields cannot be read-only when creating an object
  499. }
  500. if (array_key_exists($sAttCode, $aExtraFlags))
  501. {
  502. // the caller may override some flags if needed
  503. $iFlags = $iFlags | $aExtraFlags[$sAttCode];
  504. }
  505. $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
  506. if ( (!$oAttDef->IsLinkSet()) && (($iFlags & OPT_ATT_HIDDEN) == 0))
  507. {
  508. if ($oAttDef->IsWritable())
  509. {
  510. if ($sStateAttCode == $sAttCode)
  511. {
  512. // State attribute is always read-only from the UI
  513. $sHTMLValue = $this->GetStateLabel();
  514. $val = array('label' => '<span>'.$oAttDef->GetLabel().'</span>', 'value' => $sHTMLValue, 'comments' => $sComments, 'infos' => $sInfos);
  515. }
  516. else
  517. {
  518. $sInputId = $this->m_iFormId.'_'.$sAttCode;
  519. if ($iFlags & OPT_ATT_HIDDEN)
  520. {
  521. // Attribute is hidden, add a hidden input
  522. $oPage->add('<input type="hidden" id="'.$sInputId.'" name="attr_'.$sPrefix.$sAttCode.'" value="'.htmlentities($this->Get($sAttCode), ENT_QUOTES, 'UTF-8').'"/>');
  523. $aFieldsMap[$sAttCode] = $sInputId;
  524. }
  525. else
  526. {
  527. if ($iFlags & (OPT_ATT_READONLY|OPT_ATT_SLAVE))
  528. {
  529. // Check if the attribute is not read-only because of a synchro...
  530. $aReasons = array();
  531. $sSynchroIcon = '';
  532. if ($iFlags & OPT_ATT_SLAVE)
  533. {
  534. $iSynchroFlags = $this->GetSynchroReplicaFlags($sAttCode, $aReasons);
  535. $sSynchroIcon = "&nbsp;<img id=\"synchro_$sInputId\" src=\"../images/transp-lock.png\" style=\"vertical-align:middle\"/>";
  536. $sTip = '';
  537. foreach($aReasons as $aRow)
  538. {
  539. $sTip .= "<p>Synchronized with {$aRow['name']} - {$aRow['description']}</p>";
  540. }
  541. $sTip = addslashes($sTip);
  542. $oPage->add_ready_script("$('#synchro_$sInputId').qtip( { content: '$sTip', show: 'mouseover', hide: 'mouseout', style: { name: 'dark', tip: 'leftTop' }, position: { corner: { target: 'rightMiddle', tooltip: 'leftTop' }} } );");
  543. }
  544. // Attribute is read-only
  545. $sHTMLValue = "<span id=\"field_{$sInputId}\">".$this->GetAsHTML($sAttCode);
  546. $sHTMLValue .= '<input type="hidden" id="'.$sInputId.'" name="attr_'.$sPrefix.$sAttCode.'" value="'.htmlentities($this->Get($sAttCode), ENT_QUOTES, 'UTF-8').'"/></span>';
  547. $aFieldsMap[$sAttCode] = $sInputId;
  548. $sComments = $sSynchroIcon;
  549. }
  550. else
  551. {
  552. $sValue = $this->Get($sAttCode);
  553. $sDisplayValue = $this->GetEditValue($sAttCode);
  554. $aArgs = array('this' => $this, 'formPrefix' => $sPrefix);
  555. $sHTMLValue = "<span id=\"field_{$sInputId}\">".self::GetFormElementForField($oPage, $sClass, $sAttCode, $oAttDef, $sValue, $sDisplayValue, $sInputId, '', $iFlags, $aArgs).'</span>';
  556. $aFieldsMap[$sAttCode] = $sInputId;
  557. }
  558. $val = array('label' => '<span title="'.$oAttDef->GetDescription().'">'.$oAttDef->GetLabel().'</span>', 'value' => $sHTMLValue, 'comments' => $sComments, 'infos' => $sInfos);
  559. }
  560. }
  561. }
  562. else
  563. {
  564. $val = array('label' => '<span title="'.$oAttDef->GetDescription().'">'.$oAttDef->GetLabel().'</span>', 'value' => $this->GetAsHTML($sAttCode), 'comments' => $sComments, 'infos' => $sInfos);
  565. }
  566. }
  567. else
  568. {
  569. $val = null; // Skip this field
  570. }
  571. }
  572. else
  573. {
  574. // !bEditMode
  575. $val = $this->GetFieldAsHtml($sClass, $sAttCode, $sStateAttCode);
  576. }
  577. if ($val != null)
  578. {
  579. // The field is visible, add it to the current column
  580. $aDetails[$sTab][$sColIndex][] = $val;
  581. $iInputId++;
  582. }
  583. }
  584. }
  585. if (!empty($sPreviousLabel))
  586. {
  587. $oPage->add('<fieldset>');
  588. $oPage->add('<legend>'.Dict::S($sFieldsetName).'</legend>');
  589. }
  590. $oPage->Details($aDetails[$sTab][$sColIndex]);
  591. if (!empty($sPreviousLabel))
  592. {
  593. $oPage->add('</fieldset>');
  594. }
  595. $oPage->add('</td>');
  596. }
  597. $oPage->add('</tr></table>');
  598. }
  599. return $aFieldsMap;
  600. }
  601. function DisplayDetails(WebPage $oPage, $bEditMode = false)
  602. {
  603. $sTemplate = Utils::ReadFromFile(MetaModel::GetDisplayTemplate(get_class($this)));
  604. if (!empty($sTemplate))
  605. {
  606. $oTemplate = new DisplayTemplate($sTemplate);
  607. // Note: to preserve backward compatibility with home-made templates, the placeholder '$pkey$' has been preserved
  608. // but the preferred method is to use '$id$'
  609. $oTemplate->Render($oPage, array('class_name'=> MetaModel::GetName(get_class($this)),'class'=> get_class($this), 'pkey'=> $this->GetKey(), 'id'=> $this->GetKey(), 'name' => $this->GetName()));
  610. }
  611. else
  612. {
  613. // Object's details
  614. // template not found display the object using the *old style*
  615. $this->DisplayBareHeader($oPage, $bEditMode);
  616. $oPage->AddTabContainer(OBJECT_PROPERTIES_TAB);
  617. $oPage->SetCurrentTabContainer(OBJECT_PROPERTIES_TAB);
  618. $oPage->SetCurrentTab(Dict::S('UI:PropertiesTab'));
  619. $this->DisplayBareProperties($oPage, $bEditMode);
  620. $this->DisplayBareRelations($oPage, $bEditMode);
  621. $oPage->SetCurrentTab(Dict::S('UI:HistoryTab'));
  622. $this->DisplayBareHistory($oPage, $bEditMode);
  623. }
  624. }
  625. function DisplayPreview(WebPage $oPage)
  626. {
  627. $aDetails = array();
  628. $sClass = get_class($this);
  629. $aList = MetaModel::GetZListItems($sClass, 'preview');
  630. foreach($aList as $sAttCode)
  631. {
  632. $aDetails[] = array('label' => MetaModel::GetLabel($sClass, $sAttCode), 'value' =>$this->GetAsHTML($sAttCode));
  633. }
  634. $oPage->details($aDetails);
  635. }
  636. public static function DisplaySet(WebPage $oPage, CMDBObjectSet $oSet, $aExtraParams = array())
  637. {
  638. $oPage->add(self::GetDisplaySet($oPage, $oSet, $aExtraParams));
  639. }
  640. /**
  641. * Get the HTML fragment corresponding to the display of a table representing a set of objects
  642. * @param WebPage $oPage The page object is used for out-of-band information (mostly scripts) output
  643. * @param CMDBObjectSet The set of objects to display
  644. * @param Hash $aExtraParams Some extra configuration parameters to tweak the behavior of the display
  645. * @return String The HTML fragment representing the table of objects
  646. */
  647. public static function GetDisplaySet(WebPage $oPage, CMDBObjectSet $oSet, $aExtraParams = array())
  648. {
  649. if (empty($aExtraParams['currentId']))
  650. {
  651. $iListId = $oPage->GetUniqueId(); // Works only if not in an Ajax page !!
  652. }
  653. else
  654. {
  655. $iListId = $aExtraParams['currentId'];
  656. }
  657. // Initialize and check the parameters
  658. $bViewLink = isset($aExtraParams['view_link']) ? $aExtraParams['view_link'] : true;
  659. $sLinkageAttribute = isset($aExtraParams['link_attr']) ? $aExtraParams['link_attr'] : '';
  660. $iLinkedObjectId = isset($aExtraParams['object_id']) ? $aExtraParams['object_id'] : 0;
  661. $sTargetAttr = isset($aExtraParams['target_attr']) ? $aExtraParams['target_attr'] : '';
  662. if (!empty($sLinkageAttribute))
  663. {
  664. if($iLinkedObjectId == 0)
  665. {
  666. // if 'links' mode is requested the id of the object to link to must be specified
  667. throw new ApplicationException(Dict::S('UI:Error:MandatoryTemplateParameter_object_id'));
  668. }
  669. if($sTargetAttr == '')
  670. {
  671. // if 'links' mode is requested the d of the object to link to must be specified
  672. throw new ApplicationException(Dict::S('UI:Error:MandatoryTemplateParameter_target_attr'));
  673. }
  674. }
  675. $bDisplayMenu = isset($aExtraParams['menu']) ? $aExtraParams['menu'] == true : true;
  676. $bTruncated = isset($aExtraParams['truncated']) ? $aExtraParams['truncated'] == true : true;
  677. $bSelectMode = isset($aExtraParams['selection_mode']) ? $aExtraParams['selection_mode'] == true : false;
  678. $bSingleSelectMode = isset($aExtraParams['selection_type']) ? ($aExtraParams['selection_type'] == 'single') : false;
  679. $aExtraFieldsRaw = isset($aExtraParams['extra_fields']) ? explode(',', trim($aExtraParams['extra_fields'])) : array();
  680. $aExtraFields = array();
  681. foreach ($aExtraFieldsRaw as $sFieldName)
  682. {
  683. // Ignore attributes not of the main queried class
  684. if (preg_match('/^(.*)\.(.*)$/', $sFieldName, $aMatches))
  685. {
  686. $sClassAlias = $aMatches[1];
  687. $sAttCode = $aMatches[2];
  688. if ($sClassAlias == $oSet->GetFilter()->GetClassAlias())
  689. {
  690. $aExtraFields[] = $sAttCode;
  691. }
  692. }
  693. else
  694. {
  695. $aExtraFields[] = $sFieldName;
  696. }
  697. }
  698. $sHtml = '';
  699. $oAppContext = new ApplicationContext();
  700. $sClassName = $oSet->GetFilter()->GetClass();
  701. $sZListName = isset($aExtraParams['zlist']) ? ($aExtraParams['zlist']) : 'list';
  702. if ($sZListName !== false)
  703. {
  704. $aList = self::FlattenZList(MetaModel::GetZListItems($sClassName, $sZListName));
  705. $aList = array_merge($aList, $aExtraFields);
  706. }
  707. else
  708. {
  709. $aList = $aExtraFields;
  710. }
  711. // Filter the list to removed linked set since we are not able to display them here
  712. foreach($aList as $index => $sAttCode)
  713. {
  714. $oAttDef = MetaModel::GetAttributeDef($sClassName, $sAttCode);
  715. if ($oAttDef instanceof AttributeLinkedSet)
  716. {
  717. // Removed from the display list
  718. unset($aList[$index]);
  719. }
  720. }
  721. if (!empty($sLinkageAttribute))
  722. {
  723. // The set to display is in fact a set of links between the object specified in the $sLinkageAttribute
  724. // and other objects...
  725. // The display will then group all the attributes related to the link itself:
  726. // | Link_attr1 | link_attr2 | ... || Object_attr1 | Object_attr2 | Object_attr3 | .. | Object_attr_n |
  727. $aDisplayList = array();
  728. $aAttDefs = MetaModel::ListAttributeDefs($sClassName);
  729. assert(isset($aAttDefs[$sLinkageAttribute]));
  730. $oAttDef = $aAttDefs[$sLinkageAttribute];
  731. assert($oAttDef->IsExternalKey());
  732. // First display all the attributes specific to the link record
  733. foreach($aList as $sLinkAttCode)
  734. {
  735. $oLinkAttDef = $aAttDefs[$sLinkAttCode];
  736. if ( (!$oLinkAttDef->IsExternalKey()) && (!$oLinkAttDef->IsExternalField()) )
  737. {
  738. $aDisplayList[] = $sLinkAttCode;
  739. }
  740. }
  741. // Then display all the attributes neither specific to the link record nor to the 'linkage' object (because the latter are constant)
  742. foreach($aList as $sLinkAttCode)
  743. {
  744. $oLinkAttDef = $aAttDefs[$sLinkAttCode];
  745. if (($oLinkAttDef->IsExternalKey() && ($sLinkAttCode != $sLinkageAttribute))
  746. || ($oLinkAttDef->IsExternalField() && ($oLinkAttDef->GetKeyAttCode()!=$sLinkageAttribute)) )
  747. {
  748. $aDisplayList[] = $sLinkAttCode;
  749. }
  750. }
  751. // First display all the attributes specific to the link
  752. // Then display all the attributes linked to the other end of the relationship
  753. $aList = $aDisplayList;
  754. }
  755. $sSelectMode = 'none';
  756. if ($bSelectMode)
  757. {
  758. $sSelectMode = $bSingleSelectMode ? 'single' : 'multiple';
  759. }
  760. $sClassAlias = $oSet->GetClassAlias();
  761. $bDisplayLimit = isset($aExtraParams['display_limit']) ? $aExtraParams['display_limit'] : true;
  762. $sTableId = isset($aExtraParams['table_id']) ? $aExtraParams['table_id'] : null;
  763. $aClassAliases = array( $sClassAlias => $sClassName);
  764. $oDataTable = new DataTable($iListId, $oSet, $aClassAliases, $sTableId);
  765. $oSettings = DataTableSettings::GetDataModelSettings($aClassAliases, $bViewLink, array($sClassAlias => $aList));
  766. if ($bDisplayLimit)
  767. {
  768. $iDefaultPageSize = appUserPreferences::GetPref('default_page_size', MetaModel::GetConfig()->GetMinDisplayLimit());
  769. $oSettings->iDefaultPageSize = $iDefaultPageSize;
  770. }
  771. else
  772. {
  773. $oSettings->iDefaultPageSize = 0;
  774. }
  775. $oSettings->aSortOrder = MetaModel::GetOrderByDefault($sClassName);
  776. return $oDataTable->Display($oPage, $oSettings, $bDisplayMenu, $sSelectMode, $bViewLink, $aExtraParams);
  777. }
  778. public static function GetDisplayExtendedSet(WebPage $oPage, CMDBObjectSet $oSet, $aExtraParams = array())
  779. {
  780. if (empty($aExtraParams['currentId']))
  781. {
  782. $iListId = $oPage->GetUniqueId(); // Works only if not in an Ajax page !!
  783. }
  784. else
  785. {
  786. $iListId = $aExtraParams['currentId'];
  787. }
  788. $aList = array();
  789. // Initialize and check the parameters
  790. $bViewLink = isset($aExtraParams['view_link']) ? $aExtraParams['view_link'] : true;
  791. $bDisplayMenu = isset($aExtraParams['menu']) ? $aExtraParams['menu'] == true : true;
  792. // Check if there is a list of aliases to limit the display to...
  793. $aDisplayAliases = isset($aExtraParams['display_aliases']) ? explode(',', $aExtraParams['display_aliases']) : array();
  794. $sZListName = isset($aExtraParams['zlist']) ? ($aExtraParams['zlist']) : 'list';
  795. $aExtraFieldsRaw = isset($aExtraParams['extra_fields']) ? explode(',', trim($aExtraParams['extra_fields'])) : array();
  796. $aExtraFields = array();
  797. foreach ($aExtraFieldsRaw as $sFieldName)
  798. {
  799. // Ignore attributes not of the main queried class
  800. if (preg_match('/^(.*)\.(.*)$/', $sFieldName, $aMatches))
  801. {
  802. $sClassAlias = $aMatches[1];
  803. $sAttCode = $aMatches[2];
  804. if (array_key_exists($sClassAlias, $oSet->GetSelectedClasses()))
  805. {
  806. $aExtraFields[$sClassAlias][] = $sAttCode;
  807. }
  808. }
  809. else
  810. {
  811. $aExtraFields['*'] = $sAttCode;
  812. }
  813. }
  814. $sHtml = '';
  815. $oAppContext = new ApplicationContext();
  816. $aClasses = $oSet->GetFilter()->GetSelectedClasses();
  817. $aAuthorizedClasses = array();
  818. foreach($aClasses as $sAlias => $sClassName)
  819. {
  820. if ( (UserRights::IsActionAllowed($sClassName, UR_ACTION_READ, $oSet) && (UR_ALLOWED_YES || UR_ALLOWED_DEPENDS)) &&
  821. ( (count($aDisplayAliases) == 0) || (in_array($sAlias, $aDisplayAliases))) )
  822. {
  823. $aAuthorizedClasses[$sAlias] = $sClassName;
  824. }
  825. }
  826. $aAttribs = array();
  827. foreach($aAuthorizedClasses as $sAlias => $sClassName)
  828. {
  829. if (array_key_exists($sAlias, $aExtraFields))
  830. {
  831. $aList[$sAlias] = $aExtraFields[$sAlias];
  832. }
  833. else
  834. {
  835. $aList[$sAlias] = array();
  836. }
  837. if ($sZListName !== false)
  838. {
  839. $aDefaultList = self::FlattenZList(MetaModel::GetZListItems($sClassName, $sZListName));
  840. $aList[$sAlias] = array_merge($aDefaultList, $aList[$sAlias]);
  841. }
  842. // Filter the list to removed linked set since we are not able to display them here
  843. foreach($aList[$sAlias] as $index => $sAttCode)
  844. {
  845. $oAttDef = MetaModel::GetAttributeDef($sClassName, $sAttCode);
  846. if ($oAttDef instanceof AttributeLinkedSet)
  847. {
  848. // Removed from the display list
  849. unset($aList[$sAlias][$index]);
  850. }
  851. }
  852. }
  853. $sSelectMode = 'none';
  854. $sClassAlias = $oSet->GetClassAlias();
  855. $oDataTable = new DataTable($iListId, $oSet, $aAuthorizedClasses);
  856. $oSettings = DataTableSettings::GetDataModelSettings($aAuthorizedClasses, $bViewLink, $aList);
  857. $bDisplayLimit = isset($aExtraParams['display_limit']) ? $aExtraParams['display_limit'] : true;
  858. if ($bDisplayLimit)
  859. {
  860. $iDefaultPageSize = appUserPreferences::GetPref('default_page_size', MetaModel::GetConfig()->GetMinDisplayLimit());
  861. $oSettings->iDefaultPageSize = $iDefaultPageSize;
  862. }
  863. $oSettings->aSortOrder = MetaModel::GetOrderByDefault($sClassName);
  864. return $oDataTable->Display($oPage, $oSettings, $bDisplayMenu, $sSelectMode, $bViewLink, $aExtraParams);
  865. }
  866. static function DisplaySetAsCSV(WebPage $oPage, CMDBObjectSet $oSet, $aParams = array())
  867. {
  868. $oPage->add(self::GetSetAsCSV($oSet, $aParams));
  869. }
  870. static function GetSetAsCSV(DBObjectSet $oSet, $aParams = array())
  871. {
  872. $sSeparator = isset($aParams['separator']) ? $aParams['separator'] : ','; // default separator is comma
  873. $sTextQualifier = isset($aParams['text_qualifier']) ? $aParams['text_qualifier'] : '"'; // default text qualifier is double quote
  874. $aFields = null;
  875. if (isset($aParams['fields']) && (strlen($aParams['fields']) > 0))
  876. {
  877. $aFields = explode(',', $aParams['fields']);
  878. }
  879. $bFieldsAdvanced = false;
  880. if (isset($aParams['fields_advanced']))
  881. {
  882. $bFieldsAdvanced = (bool) $aParams['fields_advanced'];
  883. }
  884. $bLocalize = true;
  885. if (isset($aParams['localize_values']))
  886. {
  887. $bLocalize = (bool) $aParams['localize_values'];
  888. }
  889. $aList = array();
  890. $oAppContext = new ApplicationContext();
  891. $aClasses = $oSet->GetFilter()->GetSelectedClasses();
  892. $aAuthorizedClasses = array();
  893. foreach($aClasses as $sAlias => $sClassName)
  894. {
  895. if (UserRights::IsActionAllowed($sClassName, UR_ACTION_READ, $oSet) && (UR_ALLOWED_YES || UR_ALLOWED_DEPENDS))
  896. {
  897. $aAuthorizedClasses[$sAlias] = $sClassName;
  898. }
  899. }
  900. $aAttribs = array();
  901. $aHeader = array();
  902. foreach($aAuthorizedClasses as $sAlias => $sClassName)
  903. {
  904. $aList[$sAlias] = array();
  905. foreach(MetaModel::ListAttributeDefs($sClassName) as $sAttCode => $oAttDef)
  906. {
  907. if (is_null($aFields) || (count($aFields) == 0))
  908. {
  909. // Standard list of attributes (no link sets)
  910. if ($oAttDef->IsScalar() && ($oAttDef->IsWritable() || $oAttDef->IsExternalField()))
  911. {
  912. $sAttCodeEx = $oAttDef->IsExternalField() ? $oAttDef->GetKeyAttCode().'->'.$oAttDef->GetExtAttCode() : $sAttCode;
  913. if ($oAttDef->IsExternalKey(EXTKEY_ABSOLUTE))
  914. {
  915. if ($bFieldsAdvanced)
  916. {
  917. $aList[$sAlias][$sAttCodeEx] = $oAttDef;
  918. if ($oAttDef->IsExternalKey(EXTKEY_RELATIVE))
  919. {
  920. $sRemoteClass = $oAttDef->GetTargetClass();
  921. foreach(MetaModel::GetReconcKeys($sRemoteClass) as $sRemoteAttCode)
  922. {
  923. $aList[$sAlias][$sAttCode.'->'.$sRemoteAttCode] = MetaModel::GetAttributeDef($sRemoteClass, $sRemoteAttCode);
  924. }
  925. }
  926. }
  927. }
  928. else
  929. {
  930. // Any other attribute
  931. $aList[$sAlias][$sAttCodeEx] = $oAttDef;
  932. }
  933. }
  934. }
  935. else
  936. {
  937. // User defined list of attributes
  938. if (in_array($sAttCode, $aFields) || in_array($sAlias.'.'.$sAttCode, $aFields))
  939. {
  940. $aList[$sAlias][$sAttCode] = $oAttDef;
  941. }
  942. }
  943. }
  944. if ($bFieldsAdvanced)
  945. {
  946. $aHeader[] = 'id';
  947. }
  948. foreach($aList[$sAlias] as $sAttCodeEx => $oAttDef)
  949. {
  950. $aHeader[] = $bLocalize ? MetaModel::GetLabel($sClassName, $sAttCodeEx, isset($aParams['showMandatoryFields'])) : $sAttCodeEx;
  951. }
  952. }
  953. $sHtml = implode($sSeparator, $aHeader)."\n";
  954. $oSet->Seek(0);
  955. while ($aObjects = $oSet->FetchAssoc())
  956. {
  957. $aRow = array();
  958. foreach($aAuthorizedClasses as $sAlias => $sClassName)
  959. {
  960. $oObj = $aObjects[$sAlias];
  961. if ($bFieldsAdvanced)
  962. {
  963. if (is_null($oObj))
  964. {
  965. $aRow[] = '';
  966. }
  967. else
  968. {
  969. $aRow[] = $oObj->GetKey();
  970. }
  971. }
  972. foreach($aList[$sAlias] as $sAttCodeEx => $oAttDef)
  973. {
  974. if (is_null($oObj))
  975. {
  976. $aRow[] = '';
  977. }
  978. else
  979. {
  980. $value = $oObj->Get($sAttCodeEx);
  981. $aRow[] = $oAttDef->GetAsCSV($value, $sSeparator, $sTextQualifier, $oObj, $bLocalize);
  982. }
  983. }
  984. }
  985. $sHtml .= implode($sSeparator, $aRow)."\n";
  986. }
  987. return $sHtml;
  988. }
  989. static function DisplaySetAsHTMLSpreadsheet(WebPage $oPage, CMDBObjectSet $oSet, $aParams = array())
  990. {
  991. $oPage->add(self::GetSetAsHTMLSpreadsheet($oSet, $aParams));
  992. }
  993. /**
  994. * Spreadsheet output: designed for end users doing some reporting
  995. * Then the ids are excluded and replaced by the corresponding friendlyname
  996. */
  997. static function GetSetAsHTMLSpreadsheet(DBObjectSet $oSet, $aParams = array())
  998. {
  999. $aFields = null;
  1000. if (isset($aParams['fields']) && (strlen($aParams['fields']) > 0))
  1001. {
  1002. $aFields = explode(',', $aParams['fields']);
  1003. }
  1004. $bFieldsAdvanced = false;
  1005. if (isset($aParams['fields_advanced']))
  1006. {
  1007. $bFieldsAdvanced = (bool) $aParams['fields_advanced'];
  1008. }
  1009. $bLocalize = true;
  1010. if (isset($aParams['localize_values']))
  1011. {
  1012. $bLocalize = (bool) $aParams['localize_values'];
  1013. }
  1014. $aList = array();
  1015. $oAppContext = new ApplicationContext();
  1016. $aClasses = $oSet->GetFilter()->GetSelectedClasses();
  1017. $aAuthorizedClasses = array();
  1018. foreach($aClasses as $sAlias => $sClassName)
  1019. {
  1020. if (UserRights::IsActionAllowed($sClassName, UR_ACTION_READ, $oSet) && (UR_ALLOWED_YES || UR_ALLOWED_DEPENDS))
  1021. {
  1022. $aAuthorizedClasses[$sAlias] = $sClassName;
  1023. }
  1024. }
  1025. $aAttribs = array();
  1026. $aHeader = array();
  1027. foreach($aAuthorizedClasses as $sAlias => $sClassName)
  1028. {
  1029. $aList[$sAlias] = array();
  1030. foreach(MetaModel::ListAttributeDefs($sClassName) as $sAttCode => $oAttDef)
  1031. {
  1032. if (is_null($aFields) || (count($aFields) == 0))
  1033. {
  1034. // Standard list of attributes (no link sets)
  1035. if ($oAttDef->IsScalar() && ($oAttDef->IsWritable() || $oAttDef->IsExternalField()))
  1036. {
  1037. $sAttCodeEx = $oAttDef->IsExternalField() ? $oAttDef->GetKeyAttCode().'->'.$oAttDef->GetExtAttCode() : $sAttCode;
  1038. $aList[$sAlias][$sAttCodeEx] = $oAttDef;
  1039. if ($bFieldsAdvanced && $oAttDef->IsExternalKey(EXTKEY_RELATIVE))
  1040. {
  1041. $sRemoteClass = $oAttDef->GetTargetClass();
  1042. foreach(MetaModel::GetReconcKeys($sRemoteClass) as $sRemoteAttCode)
  1043. {
  1044. $aList[$sAlias][$sAttCode.'->'.$sRemoteAttCode] = MetaModel::GetAttributeDef($sRemoteClass, $sRemoteAttCode);
  1045. }
  1046. }
  1047. }
  1048. }
  1049. else
  1050. {
  1051. // User defined list of attributes
  1052. if (in_array($sAttCode, $aFields) || in_array($sAlias.'.'.$sAttCode, $aFields))
  1053. {
  1054. $aList[$sAlias][$sAttCode] = $oAttDef;
  1055. }
  1056. }
  1057. }
  1058. // Replace external key by the corresponding friendly name (if not already in the list)
  1059. foreach($aList[$sAlias] as $sAttCode => $oAttDef)
  1060. {
  1061. if ($oAttDef->IsExternalKey())
  1062. {
  1063. unset($aList[$sAlias][$sAttCode]);
  1064. $sFriendlyNameAttCode = $sAttCode.'_friendlyname';
  1065. if (!array_key_exists($sFriendlyNameAttCode, $aList[$sAlias]) && MetaModel::IsValidAttCode($sClassName, $sFriendlyNameAttCode))
  1066. {
  1067. $oFriendlyNameAtt = MetaModel::GetAttributeDef($sClassName, $sFriendlyNameAttCode);
  1068. $aList[$sAlias][$sFriendlyNameAttCode] = $oFriendlyNameAtt;
  1069. }
  1070. }
  1071. }
  1072. foreach($aList[$sAlias] as $sAttCodeEx => $oAttDef)
  1073. {
  1074. $sColLabel = $bLocalize ? MetaModel::GetLabel($sClassName, $sAttCodeEx) : $sAttCodeEx;
  1075. $oFinalAttDef = $oAttDef->GetFinalAttDef();
  1076. if (get_class($oFinalAttDef) == 'AttributeDateTime')
  1077. {
  1078. $aHeader[] = $sColLabel.' ('.Dict::S('UI:SplitDateTime-Date').')';
  1079. $aHeader[] = $sColLabel.' ('.Dict::S('UI:SplitDateTime-Time').')';
  1080. }
  1081. else
  1082. {
  1083. $aHeader[] = $sColLabel;
  1084. }
  1085. }
  1086. }
  1087. $sHtml = "<table border=\"1\">\n";
  1088. $sHtml .= "<tr>\n";
  1089. $sHtml .= "<td>".implode("</td><td>", $aHeader)."</td>\n";
  1090. $sHtml .= "</tr>\n";
  1091. $oSet->Seek(0);
  1092. while ($aObjects = $oSet->FetchAssoc())
  1093. {
  1094. $aRow = array();
  1095. foreach($aAuthorizedClasses as $sAlias => $sClassName)
  1096. {
  1097. $oObj = $aObjects[$sAlias];
  1098. foreach($aList[$sAlias] as $sAttCodeEx => $oAttDef)
  1099. {
  1100. if (is_null($oObj))
  1101. {
  1102. $aRow[] = '<td></td>';
  1103. }
  1104. else
  1105. {
  1106. $oFinalAttDef = $oAttDef->GetFinalAttDef();
  1107. if (get_class($oFinalAttDef) == 'AttributeDateTime')
  1108. {
  1109. $sDate = $oObj->Get($sAttCodeEx);
  1110. if ($sDate === null)
  1111. {
  1112. $aRow[] = '<td></td>';
  1113. $aRow[] = '<td></td>';
  1114. }
  1115. else
  1116. {
  1117. $iDate = AttributeDateTime::GetAsUnixSeconds($sDate);
  1118. $aRow[] = '<td>'.date('Y-m-d', $iDate).'</td>';
  1119. $aRow[] = '<td>'.date('H:i:s', $iDate).'</td>';
  1120. }
  1121. }
  1122. else if($oAttDef instanceof AttributeCaseLog)
  1123. {
  1124. $rawValue = $oObj->Get($sAttCodeEx);
  1125. $outputValue = str_replace("\n", "<br/>", htmlentities($rawValue->__toString(), ENT_QUOTES, 'UTF-8'));
  1126. // Trick for Excel: treat the content as text even if it begins with an equal sign
  1127. $aRow[] = '<td x:str>'.$outputValue.'</td>';
  1128. }
  1129. else
  1130. {
  1131. $rawValue = $oObj->Get($sAttCodeEx);
  1132. if ($oAttDef instanceof AttributeFriendlyName)
  1133. {
  1134. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  1135. if ($sKeyAttCode != 'id')
  1136. {
  1137. if ($oObj->Get($sKeyAttCode) == 0)
  1138. {
  1139. $rawValue = '';
  1140. }
  1141. }
  1142. }
  1143. if ($bLocalize)
  1144. {
  1145. $outputValue = htmlentities($oFinalAttDef->GetEditValue($rawValue), ENT_QUOTES, 'UTF-8');
  1146. }
  1147. else
  1148. {
  1149. $outputValue = htmlentities($rawValue, ENT_QUOTES, 'UTF-8');
  1150. }
  1151. $aRow[] = '<td>'.$outputValue.'</td>';
  1152. }
  1153. }
  1154. }
  1155. }
  1156. $sHtml .= implode("\n", $aRow);
  1157. $sHtml .= "</tr>\n";
  1158. }
  1159. $sHtml .= "</table>\n";
  1160. return $sHtml;
  1161. }
  1162. static function DisplaySetAsXML(WebPage $oPage, CMDBObjectSet $oSet, $aParams = array())
  1163. {
  1164. $bLocalize = true;
  1165. if (isset($aParams['localize_values']))
  1166. {
  1167. $bLocalize = (bool) $aParams['localize_values'];
  1168. }
  1169. $oAppContext = new ApplicationContext();
  1170. $aClasses = $oSet->GetFilter()->GetSelectedClasses();
  1171. $aAuthorizedClasses = array();
  1172. foreach($aClasses as $sAlias => $sClassName)
  1173. {
  1174. if (UserRights::IsActionAllowed($sClassName, UR_ACTION_READ, $oSet) && (UR_ALLOWED_YES || UR_ALLOWED_DEPENDS))
  1175. {
  1176. $aAuthorizedClasses[$sAlias] = $sClassName;
  1177. }
  1178. }
  1179. $aAttribs = array();
  1180. $aList = array();
  1181. $aList[$sAlias] = MetaModel::GetZListItems($sClassName, 'details');
  1182. $oPage->add("<Set>\n");
  1183. $oSet->Seek(0);
  1184. while ($aObjects = $oSet->FetchAssoc())
  1185. {
  1186. if (count($aAuthorizedClasses) > 1)
  1187. {
  1188. $oPage->add("<Row>\n");
  1189. }
  1190. foreach($aAuthorizedClasses as $sAlias => $sClassName)
  1191. {
  1192. $oObj = $aObjects[$sAlias];
  1193. if (is_null($oObj))
  1194. {
  1195. $oPage->add("<$sClassName alias=\"$sAlias\" id=\"null\">\n");
  1196. }
  1197. else
  1198. {
  1199. $sClassName = get_class($oObj);
  1200. $oPage->add("<$sClassName alias=\"$sAlias\" id=\"".$oObj->GetKey()."\">\n");
  1201. }
  1202. foreach(MetaModel::ListAttributeDefs($sClassName) as $sAttCode=>$oAttDef)
  1203. {
  1204. if (is_null($oObj))
  1205. {
  1206. $oPage->add("<$sAttCode>null</$sAttCode>\n");
  1207. }
  1208. else
  1209. {
  1210. if ($oAttDef->IsWritable())
  1211. {
  1212. if (!$oAttDef->IsLinkSet())
  1213. {
  1214. $sValue = $oObj->GetAsXML($sAttCode, $bLocalize);
  1215. $oPage->add("<$sAttCode>$sValue</$sAttCode>\n");
  1216. }
  1217. }
  1218. }
  1219. }
  1220. $oPage->add("</$sClassName>\n");
  1221. }
  1222. if (count($aAuthorizedClasses) > 1)
  1223. {
  1224. $oPage->add("</Row>\n");
  1225. }
  1226. }
  1227. $oPage->add("</Set>\n");
  1228. }
  1229. public static function DisplaySearchForm(WebPage $oPage, CMDBObjectSet $oSet, $aExtraParams = array())
  1230. {
  1231. $oPage->add(self::GetSearchForm($oPage, $oSet, $aExtraParams));
  1232. }
  1233. public static function GetSearchForm(WebPage $oPage, CMDBObjectSet $oSet, $aExtraParams = array())
  1234. {
  1235. static $iSearchFormId = 0;
  1236. $bMultiSelect = false;
  1237. $oAppContext = new ApplicationContext();
  1238. $sHtml = '';
  1239. $numCols=4;
  1240. $sClassName = $oSet->GetFilter()->GetClass();
  1241. // Romain: temporarily removed the tab "OQL query" because it was not finalized
  1242. // (especially when used to add a link)
  1243. /*
  1244. $sHtml .= "<div class=\"mini_tabs\" id=\"mini_tabs{$iSearchFormId}\"><ul>
  1245. <li><a href=\"#\" onClick=\"$('div.mini_tab{$iSearchFormId}').toggle();$('#mini_tabs{$iSearchFormId} ul li a').toggleClass('selected');\">".Dict::S('UI:OQLQueryTab')."</a></li>
  1246. <li><a class=\"selected\" href=\"#\" onClick=\"$('div.mini_tab{$iSearchFormId}').toggle();$('#mini_tabs{$iSearchFormId} ul li a').toggleClass('selected');\">".Dict::S('UI:SimpleSearchTab')."</a></li>
  1247. </ul></div>\n";
  1248. */
  1249. // Simple search form
  1250. if (isset($aExtraParams['currentId']))
  1251. {
  1252. $sSearchFormId = $aExtraParams['currentId'];
  1253. }
  1254. else
  1255. {
  1256. $iSearchFormId = $oPage->GetUniqueId();
  1257. $sSearchFormId = 'SimpleSearchForm'.$iSearchFormId;
  1258. $sHtml .= "<div id=\"ds_$sSearchFormId\" class=\"mini_tab{$iSearchFormId}\">\n";
  1259. }
  1260. // Check if the current class has some sub-classes
  1261. if (isset($aExtraParams['baseClass']))
  1262. {
  1263. $sRootClass = $aExtraParams['baseClass'];
  1264. }
  1265. else
  1266. {
  1267. $sRootClass = $sClassName;
  1268. }
  1269. $aSubClasses = MetaModel::GetSubclasses($sRootClass);
  1270. if (count($aSubClasses) > 0)
  1271. {
  1272. $aOptions = array();
  1273. $aOptions[MetaModel::GetName($sRootClass)] = "<option value=\"$sRootClass\">".MetaModel::GetName($sRootClass)."</options>\n";
  1274. foreach($aSubClasses as $sSubclassName)
  1275. {
  1276. $aOptions[MetaModel::GetName($sSubclassName)] = "<option value=\"$sSubclassName\">".MetaModel::GetName($sSubclassName)."</options>\n";
  1277. }
  1278. $aOptions[MetaModel::GetName($sClassName)] = "<option selected value=\"$sClassName\">".MetaModel::GetName($sClassName)."</options>\n";
  1279. ksort($aOptions);
  1280. $sContext = $oAppContext->GetForLink();
  1281. $sClassesCombo = "<select name=\"class\" onChange=\"ReloadSearchForm('$sSearchFormId', this.value, '$sRootClass', '$sContext')\">\n".implode('', $aOptions)."</select>\n";
  1282. }
  1283. else
  1284. {
  1285. $sClassesCombo = MetaModel::GetName($sClassName);
  1286. }
  1287. $oUnlimitedFilter = new DBObjectSearch($sClassName);
  1288. $sAction = (isset($aExtraParams['action'])) ? $aExtraParams['action'] : utils::GetAbsoluteUrlAppRoot().'pages/UI.php';
  1289. $sHtml .= "<form id=\"fs_{$sSearchFormId}\" action=\"{$sAction}\">\n"; // Don't use $_SERVER['SCRIPT_NAME'] since the form may be called asynchronously (from ajax.php)
  1290. $sHtml .= "<h2>".Dict::Format('UI:SearchFor_Class_Objects', $sClassesCombo)."</h2>\n";
  1291. $index = 0;
  1292. $sHtml .= "<p>\n";
  1293. $aFilterCriteria = $oSet->GetFilter()->GetCriteria();
  1294. $aMapCriteria = array();
  1295. foreach($aFilterCriteria as $aCriteria)
  1296. {
  1297. $aMapCriteria[$aCriteria['filtercode']][] = array('value' => $aCriteria['value'], 'opcode' => $aCriteria['opcode']);
  1298. }
  1299. $aList = MetaModel::GetZListItems($sClassName, 'standard_search');
  1300. $aConsts = $oSet->ListConstantFields(); // Some fields are constants based on the query/context
  1301. $sClassAlias = $oSet->GetFilter()->GetClassAlias();
  1302. foreach($aList as $sFilterCode)
  1303. {
  1304. //$oAppContext->Reset($sFilterCode); // Make sure the same parameter will not be passed twice
  1305. $sHtml .= '<span style="white-space: nowrap;padding:5px;display:inline-block;">';
  1306. $sFilterValue = isset($aConsts[$sClassAlias][$sFilterCode]) ? $aConsts[$sClassAlias][$sFilterCode] : '';
  1307. $sFilterValue = utils::ReadParam($sFilterCode, $sFilterValue, false, 'raw_data');
  1308. $sFilterOpCode = null; // Use the default 'loose' OpCode
  1309. if (empty($sFilterValue))
  1310. {
  1311. if (isset($aMapCriteria[$sFilterCode]))
  1312. {
  1313. if (count($aMapCriteria[$sFilterCode]) > 1)
  1314. {
  1315. $sFilterValue = Dict::S('UI:SearchValue:Mixed');
  1316. }
  1317. else
  1318. {
  1319. $sFilterValue = $aMapCriteria[$sFilterCode][0]['value'];
  1320. $sFilterOpCode = $aMapCriteria[$sFilterCode][0]['opcode'];
  1321. }
  1322. if ($sFilterCode != 'company')
  1323. {
  1324. $oUnlimitedFilter->AddCondition($sFilterCode, $sFilterValue, $sFilterOpCode);
  1325. }
  1326. }
  1327. }
  1328. $oAttDef = MetaModel::GetAttributeDef($sClassName, $sFilterCode);
  1329. if ($oAttDef->IsExternalKey())
  1330. {
  1331. $sTargetClass = $oAttDef->GetTargetClass();
  1332. $oSearch = new DBObjectSearch($sTargetClass);
  1333. $oSearch->SetModifierProperty('UserRightsGetSelectFilter', 'bSearchMode', true);
  1334. $oAllowedValues = new DBObjectSet($oSearch);
  1335. $iFieldSize = $oAttDef->GetMaxSize();
  1336. $iMaxComboLength = $oAttDef->GetMaximumComboLength();
  1337. $sHtml .= "<label>".MetaModel::GetFilterLabel($sClassName, $sFilterCode).":</label>&nbsp;";
  1338. $aExtKeyParams = $aExtraParams;
  1339. $aExtKeyParams['iFieldSize'] = $oAttDef->GetMaxSize();
  1340. $aExtKeyParams['iMinChars'] = $oAttDef->GetMinAutoCompleteChars();
  1341. $sHtml .= UIExtKeyWidget::DisplayFromAttCode($oPage, $sFilterCode, $sClassName, $oAttDef->GetLabel(), $oAllowedValues, $sFilterValue, $sSearchFormId.'search_'.$sFilterCode, false, $sFilterCode, '', $aExtKeyParams, true);
  1342. }
  1343. else
  1344. {
  1345. $aAllowedValues = MetaModel::GetAllowedValues_flt($sClassName, $sFilterCode, $aExtraParams);
  1346. if (is_null($aAllowedValues))
  1347. {
  1348. // Any value is possible, display an input box
  1349. $sHtml .= "<label>".MetaModel::GetFilterLabel($sClassName, $sFilterCode).":</label>&nbsp;<input class=\"textSearch\" name=\"$sFilterCode\" value=\"".htmlentities($sFilterValue, ENT_QUOTES, 'utf-8')."\"/>\n";
  1350. }
  1351. else
  1352. {
  1353. //Enum field, display a multi-select combo
  1354. $sValue = "<select class=\"multiselect\" size=\"1\" name=\"{$sFilterCode}[]\" multiple>\n";
  1355. $bMultiSelect = true;
  1356. //$sValue .= "<option value=\"\">".Dict::S('UI:SearchValue:Any')."</option>\n";
  1357. asort($aAllowedValues);
  1358. foreach($aAllowedValues as $key => $value)
  1359. {
  1360. if (is_array($sFilterValue) && in_array($key, $sFilterValue))
  1361. {
  1362. $sSelected = ' selected';
  1363. }
  1364. else if ($sFilterValue == $key)
  1365. {
  1366. $sSelected = ' selected';
  1367. }
  1368. else
  1369. {
  1370. $sSelected = '';
  1371. }
  1372. $sValue .= "<option value=\"$key\"$sSelected>$value</option>\n";
  1373. }
  1374. $sValue .= "</select>\n";
  1375. $sHtml .= "<label>".MetaModel::GetFilterLabel($sClassName, $sFilterCode).":</label>&nbsp;$sValue\n";
  1376. }
  1377. }
  1378. unset($aExtraParams[$sFilterCode]);
  1379. // Finally, add a tooltip if one is defined for this attribute definition
  1380. $sTip = $oAttDef->GetHelpOnSmartSearch();
  1381. if (strlen($sTip) > 0)
  1382. {
  1383. $sTip = addslashes($sTip);
  1384. $sTip = str_replace(array("\n", "\r"), " ", $sTip);
  1385. // :input does represent in form visible input (INPUT, SELECT, TEXTAREA)
  1386. $oPage->add_ready_script("$('form#fs_$sSearchFormId :input[name={$sFilterCode}]').qtip( { content: '$sTip', show: 'mouseover', hide: 'mouseout', style: { name: 'dark', tip: 'leftTop' }, position: { corner: { target: 'rightMiddle', tooltip: 'leftTop' }} } );");
  1387. }
  1388. $index++;
  1389. $sHtml .= '</span> ';
  1390. }
  1391. $sHtml .= "</p>\n";
  1392. $sHtml .= "<p align=\"right\"><input type=\"submit\" value=\"".Dict::S('UI:Button:Search')."\"></p>\n";
  1393. if (isset($aExtraParams['table_id']))
  1394. {
  1395. // Rename to avoid collisions...
  1396. $aExtraParams['_table_id_'] = $aExtraParams['table_id'];
  1397. unset($aExtraParams['table_id']);
  1398. }
  1399. foreach($aExtraParams as $sName => $sValue)
  1400. {
  1401. $sHtml .= "<input type=\"hidden\" name=\"$sName\" value=\"$sValue\" />\n";
  1402. }
  1403. $sHtml .= "<input type=\"hidden\" name=\"class\" value=\"$sClassName\" />\n";
  1404. $sHtml .= "<input type=\"hidden\" name=\"dosearch\" value=\"1\" />\n";
  1405. $sHtml .= "<input type=\"hidden\" name=\"operation\" value=\"search_form\" />\n";
  1406. $sHtml .= $oAppContext->GetForForm();
  1407. $sHtml .= "</form>\n";
  1408. if (!isset($aExtraParams['currentId']))
  1409. {
  1410. $sHtml .= "</div><!-- Simple search form -->\n";
  1411. }
  1412. if ($bMultiSelect)
  1413. {
  1414. $oPage->add_ready_script("$('.multiselect').multiselect({header: false, noneSelectedText: '".addslashes(Dict::S('UI:SearchValue:Any'))."', selectedList: 1, selectedText:'".addslashes(Dict::S('UI:SearchValue:NbSelected'))."'});");
  1415. }
  1416. /*
  1417. // OQL query builder
  1418. $sHtml .= "<div id=\"OQLQuery{$iSearchFormId}\" style=\"display:none\" class=\"mini_tab{$iSearchFormId}\">\n";
  1419. $sHtml .= "<h1>".Dict::S('UI:OQLQueryBuilderTitle')."</h1>\n";
  1420. $sHtml .= "<form id=\"formOQL{$iSearchFormId}\"><table style=\"width:80%;\"><tr style=\"vertical-align:top\">\n";
  1421. $sHtml .= "<td style=\"text-align:right\"><label>SELECT&nbsp;</label><select name=\"oql_class\">";
  1422. $aClasses = MetaModel::EnumChildClasses($sClassName, ENUM_CHILD_CLASSES_ALL);
  1423. $sSelectedClass = utils::ReadParam('oql_class', $sClassName, false, 'class');
  1424. $sOQLClause = utils::ReadParam('oql_clause', '', false, 'raw_data');
  1425. asort($aClasses);
  1426. foreach($aClasses as $sChildClass)
  1427. {
  1428. $sSelected = ($sChildClass == $sSelectedClass) ? 'selected' : '';
  1429. $sHtml.= "<option value=\"$sChildClass\" $sSelected>".MetaModel::GetName($sChildClass)."</option>\n";
  1430. }
  1431. $sHtml .= "</select>&nbsp;</td><td>\n";
  1432. $sHtml .= "<textarea name=\"oql_clause\" style=\"width:100%\">$sOQLClause</textarea></td></tr>\n";
  1433. $sHtml .= "<tr><td colspan=\"2\" style=\"text-align:right\"><input type=\"submit\" value=\"".Dict::S('UI:Button:Query')."\"></td></tr>\n";
  1434. $sHtml .= "<input type=\"hidden\" name=\"dosearch\" value=\"1\" />\n";
  1435. foreach($aExtraParams as $sName => $sValue)
  1436. {
  1437. $sHtml .= "<input type=\"hidden\" name=\"$sName\" value=\"$sValue\" />\n";
  1438. }
  1439. $sHtml .= "<input type=\"hidden\" name=\"operation\" value=\"search_oql\" />\n";
  1440. $sHtml .= $oAppContext->GetForForm();
  1441. $sHtml .= "</table></form>\n";
  1442. $sHtml .= "</div><!-- OQL query form -->\n";
  1443. */
  1444. return $sHtml;
  1445. }
  1446. public static function GetFormElementForField($oPage, $sClass, $sAttCode, $oAttDef, $value = '', $sDisplayValue = '', $iId = '', $sNameSuffix = '', $iFlags = 0, $aArgs = array())
  1447. {
  1448. static $iInputId = 0;
  1449. $sFieldPrefix = '';
  1450. $sFormPrefix = isset($aArgs['formPrefix']) ? $aArgs['formPrefix'] : '';
  1451. $sFieldPrefix = isset($aArgs['prefix']) ? $sFormPrefix.$aArgs['prefix'] : $sFormPrefix;
  1452. if ($sDisplayValue == '')
  1453. {
  1454. $sDisplayValue = $value;
  1455. }
  1456. if (isset($aArgs[$sAttCode]) && empty($value))
  1457. {
  1458. // default value passed by the context (either the app context of the operation)
  1459. $value = $aArgs[$sAttCode];
  1460. }
  1461. if (!empty($iId))
  1462. {
  1463. $iInputId = $iId;
  1464. }
  1465. else
  1466. {
  1467. $iInputId = $oPage->GetUniqueId();
  1468. }
  1469. if (!$oAttDef->IsExternalField())
  1470. {
  1471. $bMandatory = 'false';
  1472. if ( (!$oAttDef->IsNullAllowed()) || ($iFlags & OPT_ATT_MANDATORY))
  1473. {
  1474. $bMandatory = 'true';
  1475. }
  1476. $sValidationField = "<span class=\"form_validation\" id=\"v_{$iId}\"></span>";
  1477. $sHelpText = $oAttDef->GetHelpOnEdition();
  1478. $aEventsList = array();
  1479. switch($oAttDef->GetEditClass())
  1480. {
  1481. case 'Date':
  1482. $aEventsList[] ='validate';
  1483. $aEventsList[] ='keyup';
  1484. $aEventsList[] ='change';
  1485. if (($iFlags & OPT_ATT_MANDATORY) && (empty($sDisplayValue)))
  1486. {
  1487. $sDisplayValue = date($oAttDef->GetDateFormat());
  1488. }
  1489. $sHTMLValue = "<input title=\"$sHelpText\" class=\"date-pick\" type=\"text\" size=\"12\" name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}\" value=\"".htmlentities($sDisplayValue, ENT_QUOTES, 'UTF-8')."\" id=\"$iId\"/>&nbsp;{$sValidationField}";
  1490. break;
  1491. case 'DateTime':
  1492. $aEventsList[] ='validate';
  1493. $aEventsList[] ='keyup';
  1494. $aEventsList[] ='change';
  1495. if (($iFlags & OPT_ATT_MANDATORY) && (empty($sDisplayValue)))
  1496. {
  1497. $sDisplayValue = date($oAttDef->GetDateFormat());
  1498. }
  1499. $sHTMLValue = "<input title=\"$sHelpText\" class=\"datetime-pick\" type=\"text\" size=\"20\" name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}\" value=\"".htmlentities($sDisplayValue, ENT_QUOTES, 'UTF-8')."\" id=\"$iId\"/>&nbsp;{$sValidationField}";
  1500. break;
  1501. case 'Duration':
  1502. $aEventsList[] ='validate';
  1503. $aEventsList[] ='change';
  1504. $oPage->add_ready_script("$('#{$iId}_d').bind('keyup change', function(evt, sFormId) { return UpdateDuration('$iId'); });");
  1505. $oPage->add_ready_script("$('#{$iId}_h').bind('keyup change', function(evt, sFormId) { return UpdateDuration('$iId'); });");
  1506. $oPage->add_ready_script("$('#{$iId}_m').bind('keyup change', function(evt, sFormId) { return UpdateDuration('$iId'); });");
  1507. $oPage->add_ready_script("$('#{$iId}_s').bind('keyup change', function(evt, sFormId) { return UpdateDuration('$iId'); });");
  1508. $aVal = AttributeDuration::SplitDuration($value);
  1509. $sDays = "<input title=\"$sHelpText\" type=\"text\" style=\"text-align:right\" size=\"3\" name=\"attr_{$sFieldPrefix}{$sAttCode}[d]{$sNameSuffix}\" value=\"{$aVal['days']}\" id=\"{$iId}_d\"/>";
  1510. $sHours = "<input title=\"$sHelpText\" type=\"text\" style=\"text-align:right\" size=\"2\" name=\"attr_{$sFieldPrefix}{$sAttCode}[h]{$sNameSuffix}\" value=\"{$aVal['hours']}\" id=\"{$iId}_h\"/>";
  1511. $sMinutes = "<input title=\"$sHelpText\" type=\"text\" style=\"text-align:right\" size=\"2\" name=\"attr_{$sFieldPrefix}{$sAttCode}[m]{$sNameSuffix}\" value=\"{$aVal['minutes']}\" id=\"{$iId}_m\"/>";
  1512. $sSeconds = "<input title=\"$sHelpText\" type=\"text\" style=\"text-align:right\" size=\"2\" name=\"attr_{$sFieldPrefix}{$sAttCode}[s]{$sNameSuffix}\" value=\"{$aVal['seconds']}\" id=\"{$iId}_s\"/>";
  1513. $sHidden = "<input type=\"hidden\" id=\"{$iId}\" value=\"".htmlentities($value, ENT_QUOTES, 'UTF-8')."\"/>";
  1514. $sHTMLValue = Dict::Format('UI:DurationForm_Days_Hours_Minutes_Seconds', $sDays, $sHours, $sMinutes, $sSeconds).$sHidden."&nbsp;".$sValidationField;
  1515. $oPage->add_ready_script("$('#{$iId}').bind('update', function(evt, sFormId) { return ToggleDurationField('$iId'); });");
  1516. break;
  1517. case 'Password':
  1518. $aEventsList[] ='validate';
  1519. $aEventsList[] ='keyup';
  1520. $aEventsList[] ='change';
  1521. $sHTMLValue = "<input title=\"$sHelpText\" type=\"password\" size=\"30\" name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}\" value=\"".htmlentities($value, ENT_QUOTES, 'UTF-8')."\" id=\"$iId\"/>&nbsp;{$sValidationField}";
  1522. break;
  1523. case 'OQLExpression':
  1524. case 'Text':
  1525. $aEventsList[] ='validate';
  1526. $aEventsList[] ='keyup';
  1527. $aEventsList[] ='change';
  1528. $sEditValue = $oAttDef->GetEditValue($value);
  1529. $aStyles = array();
  1530. $sStyle = '';
  1531. $sWidth = $oAttDef->GetWidth('width', '');
  1532. if (!empty($sWidth))
  1533. {
  1534. $aStyles[] = 'width:'.$sWidth;
  1535. }
  1536. $sHeight = $oAttDef->GetHeight('height', '');
  1537. if (!empty($sHeight))
  1538. {
  1539. $aStyles[] = 'height:'.$sHeight;
  1540. }
  1541. if (count($aStyles) > 0)
  1542. {
  1543. $sStyle = 'style="'.implode('; ', $aStyles).'"';
  1544. }
  1545. if ($oAttDef->GetEditClass() == 'OQLExpression')
  1546. {
  1547. $sTestResId = 'query_res_'.$sFieldPrefix.$sAttCode.$sNameSuffix; //$oPage->GetUniqueId();
  1548. $sBaseUrl = utils::GetAbsoluteUrlAppRoot().'pages/run_query.php?expression=';
  1549. $sInitialUrl = $sBaseUrl.urlencode($sEditValue);
  1550. $sAdditionalStuff = "<a id=\"$sTestResId\" target=\"_blank\" href=\"$sInitialUrl\">".Dict::S('UI:Edit:TestQuery')."</a>";
  1551. $oPage->add_ready_script("$('#$iId').bind('change keyup', function(evt, sFormId) { $('#$sTestResId').attr('href', '$sBaseUrl'+encodeURIComponent($(this).val())); } );");
  1552. }
  1553. else
  1554. {
  1555. $sAdditionalStuff = "";
  1556. }
  1557. // Ok, the text area is drawn here
  1558. $sHTMLValue = "<table><tr><td><textarea class=\"resizable\" title=\"$sHelpText\" name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}\" rows=\"8\" cols=\"40\" id=\"$iId\" $sStyle>".htmlentities($sEditValue, ENT_QUOTES, 'UTF-8')."</textarea>$sAdditionalStuff</td><td>{$sValidationField}</td></tr></table>";
  1559. break;
  1560. case 'CaseLog':
  1561. $aStyles = array();
  1562. $sStyle = '';
  1563. $sWidth = $oAttDef->GetWidth('width', '');
  1564. if (!empty($sWidth))
  1565. {
  1566. $aStyles[] = 'width:'.$sWidth;
  1567. }
  1568. $sHeight = $oAttDef->GetHeight('height', '');
  1569. if (!empty($sHeight))
  1570. {
  1571. $aStyles[] = 'height:'.$sHeight;
  1572. }
  1573. if (count($aStyles) > 0)
  1574. {
  1575. $sStyle = 'style="'.implode('; ', $aStyles).'"';
  1576. }
  1577. $sHeader = '<div class="caselog_input_header">&nbsp;'.Dict::S('UI:CaseLogTypeYourTextHere').'</div>';
  1578. $sEditValue = $oAttDef->GetEditValue($value);
  1579. $sPreviousLog = is_object($value) ? $value->GetAsHTML($oPage, true /* bEditMode */, array('AttributeText', 'RenderWikiHtml')) : '';
  1580. $iEntriesCount = is_object($value) ? count($value->GetIndex()) : 0;
  1581. $sHidden = "<input type=\"hidden\" id=\"{$iId}_count\" value=\"$iEntriesCount\"/>"; // To know how many entries the case log already contains
  1582. $sHTMLValue = "<div class=\"caselog\" $sStyle><table style=\"width:100%;\"><tr><td>$sHeader<textarea style=\"border:0;width:100%\" title=\"$sHelpText\" name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}\" rows=\"8\" cols=\"40\" id=\"$iId\">".htmlentities($sEditValue, ENT_QUOTES, 'UTF-8')."</textarea>$sPreviousLog</td><td>{$sValidationField}</td></tr></table>$sHidden</div>";
  1583. $oPage->add_ready_script("$('#$iId').bind('keyup change validate', function(evt, sFormId) { return ValidateCaseLogField('$iId', $bMandatory, sFormId) } );"); // Custom validation function
  1584. break;
  1585. case 'HTML':
  1586. $oWidget = new UIHTMLEditorWidget($iId, $sAttCode, $sNameSuffix, $sFieldPrefix, $sHelpText, $sValidationField, $value, $bMandatory);
  1587. $sHTMLValue = $oWidget->Display($oPage, $aArgs);
  1588. break;
  1589. case 'LinkedSet':
  1590. if ($oAttDef->IsIndirect())
  1591. {
  1592. $oWidget = new UILinksWidget($sClass, $sAttCode, $iId, $sNameSuffix, $oAttDef->DuplicatesAllowed(), $aArgs);
  1593. }
  1594. else
  1595. {
  1596. $oWidget = new UILinksWidgetDirect($sClass, $sAttCode, $iId, $sNameSuffix, $aArgs);
  1597. }
  1598. $aEventsList[] ='validate';
  1599. $aEventsList[] ='change';
  1600. $oObj = isset($aArgs['this']) ? $aArgs['this'] : null;
  1601. $sHTMLValue = $oWidget->Display($oPage, $value, array(), $sFormPrefix, $oObj);
  1602. break;
  1603. case 'Document':
  1604. $aEventsList[] ='validate';
  1605. $aEventsList[] ='change';
  1606. $oDocument = $value; // Value is an ormDocument object
  1607. $sFileName = '';
  1608. if (is_object($oDocument))
  1609. {
  1610. $sFileName = $oDocument->GetFileName();
  1611. }
  1612. $iMaxFileSize = utils::ConvertToBytes(ini_get('upload_max_filesize'));
  1613. $sHTMLValue = "<input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"$iMaxFileSize\" />\n";
  1614. $sHTMLValue .= "<input name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}[filename]\" type=\"hidden\" id=\"$iId\" \" value=\"".htmlentities($sFileName, ENT_QUOTES, 'UTF-8')."\"/>\n";
  1615. $sHTMLValue .= "<span id=\"name_$iInputId\">$sFileName</span><br/>\n";
  1616. $sHTMLValue .= "<input title=\"$sHelpText\" name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}[fcontents]\" type=\"file\" id=\"file_$iId\" onChange=\"UpdateFileName('$iId', this.value)\"/>&nbsp;{$sValidationField}\n";
  1617. break;
  1618. case 'StopWatch':
  1619. $sHTMLValue = "The edition of a stopwatch is not allowed!!!";
  1620. break;
  1621. case 'List':
  1622. // Not editable for now...
  1623. $sHTMLValue = '';
  1624. break;
  1625. case 'One Way Password':
  1626. $aEventsList[] ='validate';
  1627. $oWidget = new UIPasswordWidget($sAttCode, $iId, $sNameSuffix);
  1628. $sHTMLValue = $oWidget->Display($oPage, $aArgs);
  1629. // Event list & validation is handled directly by the widget
  1630. break;
  1631. case 'ExtKey':
  1632. $aEventsList[] ='validate';
  1633. $aEventsList[] ='change';
  1634. $oAllowedValues = MetaModel::GetAllowedValuesAsObjectSet($sClass, $sAttCode, $aArgs);
  1635. $sFieldName = $sFieldPrefix.$sAttCode.$sNameSuffix;
  1636. $aExtKeyParams = $aArgs;
  1637. $aExtKeyParams['iFieldSize'] = $oAttDef->GetMaxSize();
  1638. $aExtKeyParams['iMinChars'] = $oAttDef->GetMinAutoCompleteChars();
  1639. $sHTMLValue = UIExtKeyWidget::DisplayFromAttCode($oPage, $sAttCode, $sClass, $oAttDef->GetLabel(), $oAllowedValues, $value, $iId, $bMandatory, $sFieldName, $sFormPrefix, $aExtKeyParams);
  1640. $sHTMLValue .= "<!-- iFlags: $iFlags bMandatory: $bMandatory -->\n";
  1641. break;
  1642. case 'String':
  1643. default:
  1644. $aEventsList[] ='validate';
  1645. // #@# todo - add context information (depending on dimensions)
  1646. $aAllowedValues = MetaModel::GetAllowedValues_att($sClass, $sAttCode, $aArgs);
  1647. $iFieldSize = $oAttDef->GetMaxSize();
  1648. if ($aAllowedValues !== null)
  1649. {
  1650. // Discrete list of values, use a SELECT or RADIO buttons depending on the config
  1651. $sDisplayStyle = $oAttDef->GetDisplayStyle();
  1652. switch($sDisplayStyle)
  1653. {
  1654. case 'radio':
  1655. case 'radio_horizontal':
  1656. case 'radio_vertical':
  1657. $sHTMLValue = '';
  1658. $bVertical = ($sDisplayStyle != 'radio_horizontal');
  1659. $sHTMLValue = $oPage->GetRadioButtons($aAllowedValues, $value, $iId, "attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}", $bMandatory, $bVertical, $sValidationField);
  1660. $aEventsList[] ='change';
  1661. break;
  1662. case 'select':
  1663. default:
  1664. $sHTMLValue = "<select title=\"$sHelpText\" name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}\" id=\"$iId\">\n";
  1665. $sHTMLValue .= "<option value=\"\">".Dict::S('UI:SelectOne')."</option>\n";
  1666. foreach($aAllowedValues as $key => $display_value)
  1667. {
  1668. if ((count($aAllowedValues) == 1) && ($bMandatory == 'true') )
  1669. {
  1670. // When there is only once choice, select it by default
  1671. $sSelected = ' selected';
  1672. }
  1673. else
  1674. {
  1675. $sSelected = ($value == $key) ? ' selected' : '';
  1676. }
  1677. $sHTMLValue .= "<option value=\"$key\"$sSelected>$display_value</option>\n";
  1678. }
  1679. $sHTMLValue .= "</select>&nbsp;{$sValidationField}\n";
  1680. $aEventsList[] ='change';
  1681. }
  1682. }
  1683. else
  1684. {
  1685. $sHTMLValue = "<input title=\"$sHelpText\" type=\"text\" size=\"30\" maxlength=\"$iFieldSize\" name=\"attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}\" value=\"".htmlentities($sDisplayValue, ENT_QUOTES, 'UTF-8')."\" id=\"$iId\"/>&nbsp;{$sValidationField}";
  1686. $aEventsList[] ='keyup';
  1687. $aEventsList[] ='change';
  1688. }
  1689. break;
  1690. }
  1691. $sPattern = addslashes($oAttDef->GetValidationPattern()); //'^([0-9]+)$';
  1692. if (!empty($aEventsList))
  1693. {
  1694. $sNullValue = $oAttDef->GetNullValue();
  1695. if (!is_numeric($sNullValue))
  1696. {
  1697. $sNullValue = "'$sNullValue'"; // Add quotes to turn this into a JS string if it's not a number
  1698. }
  1699. $oPage->add_ready_script("$('#$iId').bind('".implode(' ', $aEventsList)."', function(evt, sFormId) { return ValidateField('$iId', '$sPattern', $bMandatory, sFormId, $sNullValue) } );\n"); // Bind to a custom event: validate
  1700. }
  1701. $aDependencies = MetaModel::GetDependentAttributes($sClass, $sAttCode); // List of attributes that depend on the current one
  1702. if (count($aDependencies) > 0)
  1703. {
  1704. $oPage->add_ready_script("$('#$iId').bind('change', function(evt, sFormId) { return oWizardHelper{$sFormPrefix}.UpdateDependentFields(['".implode("','", $aDependencies)."']) } );\n"); // Bind to a custom event: validate
  1705. }
  1706. }
  1707. return "<div>{$sHTMLValue}</div>";
  1708. }
  1709. public function DisplayModifyForm(WebPage $oPage, $aExtraParams = array())
  1710. {
  1711. self::$iGlobalFormId++;
  1712. $this->aFieldsMap = array();
  1713. $sPrefix = '';
  1714. if (isset($aExtraParams['formPrefix']))
  1715. {
  1716. $sPrefix = $aExtraParams['formPrefix'];
  1717. }
  1718. $aFieldsComments = (isset($aExtraParams['fieldsComments'])) ? $aExtraParams['fieldsComments'] : array();
  1719. $this->m_iFormId = $sPrefix.self::$iGlobalFormId;
  1720. $sClass = get_class($this);
  1721. $oAppContext = new ApplicationContext();
  1722. $sStateAttCode = MetaModel::GetStateAttributeCode($sClass);
  1723. $iKey = $this->GetKey();
  1724. $aDetails = array();
  1725. $aFieldsMap = array();
  1726. if (!isset($aExtraParams['action']))
  1727. {
  1728. $sFormAction = $_SERVER['SCRIPT_NAME']; // No parameter in the URL, the only parameter will be the ones passed through the form
  1729. }
  1730. else
  1731. {
  1732. $sFormAction = $aExtraParams['action'];
  1733. }
  1734. // Custom label for the apply button ?
  1735. if (isset($aExtraParams['custom_button']))
  1736. {
  1737. $sApplyButton = $aExtraParams['custom_button'];
  1738. }
  1739. else if ($iKey > 0)
  1740. {
  1741. $sApplyButton = Dict::S('UI:Button:Apply');
  1742. }
  1743. else
  1744. {
  1745. $sApplyButton = Dict::S('UI:Button:Create');
  1746. }
  1747. // Custom operation for the form ?
  1748. if (isset($aExtraParams['custom_operation']))
  1749. {
  1750. $sOperation = $aExtraParams['custom_operation'];
  1751. }
  1752. else if ($iKey > 0)
  1753. {
  1754. $sOperation = 'apply_modify';
  1755. }
  1756. else
  1757. {
  1758. $sOperation = 'apply_new';
  1759. }
  1760. if ($iKey > 0)
  1761. {
  1762. // The object already exists in the database, it's a modification
  1763. $sButtons = "<input id=\"{$sPrefix}_id\" type=\"hidden\" name=\"id\" value=\"$iKey\">\n";
  1764. $sButtons .= "<input type=\"hidden\" name=\"operation\" value=\"{$sOperation}\">\n";
  1765. $sButtons .= "<button type=\"button\" class=\"action cancel\"><span>".Dict::S('UI:Button:Cancel')."</span></button>&nbsp;&nbsp;&nbsp;&nbsp;\n";
  1766. $sButtons .= "<button type=\"submit\" class=\"action\"><span>{$sApplyButton}</span></button>\n";
  1767. }
  1768. else
  1769. {
  1770. // The object does not exist in the database it's a creation
  1771. $sButtons = "<input type=\"hidden\" name=\"operation\" value=\"$sOperation\">\n";
  1772. $sButtons .= "<button type=\"button\" class=\"action cancel\">".Dict::S('UI:Button:Cancel')."</button>&nbsp;&nbsp;&nbsp;&nbsp;\n";
  1773. $sButtons .= "<button type=\"submit\" class=\"action\"><span>{$sApplyButton}</span></button>\n";
  1774. }
  1775. $aTransitions = $this->EnumTransitions();
  1776. if (!isset($aExtraParams['custom_operation']) && count($aTransitions))
  1777. {
  1778. // transitions are displayed only for the standard new/modify actions, not for modify_all or any other case...
  1779. $oSetToCheckRights = DBObjectSet::FromObject($this);
  1780. $aStimuli = Metamodel::EnumStimuli($sClass);
  1781. foreach($aTransitions as $sStimulusCode => $aTransitionDef)
  1782. {
  1783. $iActionAllowed = (get_class($aStimuli[$sStimulusCode]) == 'StimulusUserAction') ? UserRights::IsStimulusAllowed($sClass, $sStimulusCode, $oSetToCheckRights) : UR_ALLOWED_NO;
  1784. switch($iActionAllowed)
  1785. {
  1786. case UR_ALLOWED_YES:
  1787. $sButtons .= "<button type=\"submit\" name=\"next_action\" value=\"{$sStimulusCode}\" class=\"action\"><span>".$aStimuli[$sStimulusCode]->GetLabel()."</span></button>\n";
  1788. break;
  1789. default:
  1790. // Do nothing
  1791. }
  1792. }
  1793. }
  1794. $sButtonsPosition = MetaModel::GetConfig()->Get('buttons_position');
  1795. $iTransactionId = isset($aExtraParams['transaction_id']) ? $aExtraParams['transaction_id'] : utils::GetNewTransactionId();
  1796. $oPage->SetTransactionId($iTransactionId);
  1797. $oPage->add("<form action=\"$sFormAction\" id=\"form_{$this->m_iFormId}\" enctype=\"multipart/form-data\" method=\"post\" onSubmit=\"return OnSubmit('form_{$this->m_iFormId}');\">\n");
  1798. $sStatesSelection = '';
  1799. if (!isset($aExtraParams['custom_operation']) && $this->IsNew())
  1800. {
  1801. $aInitialStates = MetaModel::EnumInitialStates($sClass);
  1802. //$aInitialStates = array('new' => 'foo', 'closed' => 'bar');
  1803. if (count($aInitialStates) > 1)
  1804. {
  1805. $sStatesSelection = Dict::Format('UI:Create_Class_InState', MetaModel::GetName($sClass)).'<select name="obj_state" class="state_select_'.$this->m_iFormId.'">';
  1806. foreach($aInitialStates as $sStateCode => $sStateData)
  1807. {
  1808. $sSelected = '';
  1809. if ($sStateCode == $this->GetState())
  1810. {
  1811. $sSelected = ' selected';
  1812. }
  1813. $sStatesSelection .= '<option value="'.$sStateCode.'"'.$sSelected.'>'.MetaModel::GetStateLabel($sClass, $sStateCode).'</option>';
  1814. }
  1815. $sStatesSelection .= '</select>';
  1816. $oPage->add_ready_script("$('.state_select_{$this->m_iFormId}').change( function() { oWizardHelper$sPrefix.ReloadObjectCreationForm('form_{$this->m_iFormId}', $(this).val()); } );");
  1817. }
  1818. }
  1819. $sConfirmationMessage = addslashes(Dict::S('UI:NavigateAwayConfirmationMessage'));
  1820. $oPage->add_ready_script(
  1821. <<<EOF
  1822. $(window).unload(function() { return OnUnload('$iTransactionId') } );
  1823. window.onbeforeunload = function() {
  1824. if (!window.bInSubmit && !window.bInCancel)
  1825. {
  1826. return '$sConfirmationMessage';
  1827. }
  1828. // return nothing ! safer for IE
  1829. };
  1830. EOF
  1831. );
  1832. if ($sButtonsPosition != 'bottom')
  1833. {
  1834. // top or both, display the buttons here
  1835. $oPage->p($sStatesSelection);
  1836. $oPage->add($sButtons);
  1837. }
  1838. $oPage->AddTabContainer(OBJECT_PROPERTIES_TAB, $sPrefix);
  1839. $oPage->SetCurrentTabContainer(OBJECT_PROPERTIES_TAB);
  1840. $oPage->SetCurrentTab(Dict::S('UI:PropertiesTab'));
  1841. $aFieldsMap = $this->DisplayBareProperties($oPage, true, $sPrefix, $aExtraParams);
  1842. if ($iKey > 0)
  1843. {
  1844. $aFieldsMap['id'] = $sPrefix.'_id';
  1845. }
  1846. // Now display the relations, one tab per relation
  1847. if (!isset($aExtraParams['noRelations']))
  1848. {
  1849. $this->DisplayBareRelations($oPage, true); // Edit mode, will fill $this->aFieldsMap
  1850. $aFieldsMap = array_merge($aFieldsMap, $this->aFieldsMap);
  1851. }
  1852. $oPage->SetCurrentTab('');
  1853. $oPage->add("<input type=\"hidden\" name=\"class\" value=\"$sClass\">\n");
  1854. $oPage->add("<input type=\"hidden\" name=\"transaction_id\" value=\"$iTransactionId\">\n");
  1855. foreach($aExtraParams as $sName => $value)
  1856. {
  1857. $oPage->add("<input type=\"hidden\" name=\"$sName\" value=\"$value\">\n");
  1858. }
  1859. $oPage->add($oAppContext->GetForForm());
  1860. if ($sButtonsPosition != 'top')
  1861. {
  1862. // bottom or both: display the buttons here
  1863. $oPage->p($sStatesSelection);
  1864. $oPage->add($sButtons);
  1865. }
  1866. // Hook the cancel button via jQuery so that it can be unhooked easily as well if needed
  1867. $sDefaultUrl = utils::GetAbsoluteUrlAppRoot().'pages/UI.php?operation=cancel&'.$oAppContext->GetForLink();
  1868. $oPage->add_ready_script("$('#form_{$this->m_iFormId} button.cancel').click( function() { BackToDetails('$sClass', $iKey, '$sDefaultUrl')} );");
  1869. $oPage->add("</form>\n");
  1870. $iFieldsCount = count($aFieldsMap);
  1871. $sJsonFieldsMap = json_encode($aFieldsMap);
  1872. $sState = $this->GetState();
  1873. $oPage->add_script(
  1874. <<<EOF
  1875. // Create the object once at the beginning of the page...
  1876. var oWizardHelper$sPrefix = new WizardHelper('$sClass', '$sPrefix', '$sState');
  1877. oWizardHelper$sPrefix.SetFieldsMap($sJsonFieldsMap);
  1878. oWizardHelper$sPrefix.SetFieldsCount($iFieldsCount);
  1879. EOF
  1880. );
  1881. $oPage->add_ready_script(
  1882. <<<EOF
  1883. oWizardHelper$sPrefix.UpdateWizard();
  1884. // Starts the validation when the page is ready
  1885. CheckFields('form_{$this->m_iFormId}', false);
  1886. EOF
  1887. );
  1888. }
  1889. public static function DisplayCreationForm(WebPage $oPage, $sClass, $oObjectToClone = null, $aArgs = array(), $aExtraParams = array())
  1890. {
  1891. $oAppContext = new ApplicationContext();
  1892. $sClass = ($oObjectToClone == null) ? $sClass : get_class($oObjectToClone);
  1893. $sStateAttCode = MetaModel::GetStateAttributeCode($sClass);
  1894. $aStates = MetaModel::EnumStates($sClass);
  1895. $sStatesSelection = '';
  1896. if ($oObjectToClone == null)
  1897. {
  1898. $oObj = MetaModel::NewObject($sClass);
  1899. if (!empty($sStateAttCode))
  1900. {
  1901. $sTargetState = MetaModel::GetDefaultState($sClass);
  1902. $oObj->Set($sStateAttCode, $sTargetState);
  1903. }
  1904. }
  1905. else
  1906. {
  1907. $oObj = clone $oObjectToClone;
  1908. }
  1909. // Pre-fill the object with default values, when there is only on possible choice
  1910. // AND the field is mandatory (otherwise there is always the possiblity to let it empty)
  1911. $aArgs['this'] = $oObj;
  1912. $aDetailsList = self::FLattenZList(MetaModel::GetZListItems($sClass, 'details'));
  1913. // Order the fields based on their dependencies
  1914. $aDeps = array();
  1915. foreach($aDetailsList as $sAttCode)
  1916. {
  1917. $aDeps[$sAttCode] = MetaModel::GetPrequisiteAttributes($sClass, $sAttCode);
  1918. }
  1919. $aList = self::OrderDependentFields($aDeps);
  1920. // Now fill-in the fields with default/supplied values
  1921. foreach($aList as $sAttCode)
  1922. {
  1923. if (isset($aArgs['default'][$sAttCode]))
  1924. {
  1925. $oObj->Set($sAttCode, $aArgs['default'][$sAttCode]);
  1926. }
  1927. else
  1928. {
  1929. $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
  1930. // If the field is mandatory, set it to the only possible value
  1931. $iFlags = $oObj->GetInitialStateAttributeFlags($sAttCode);
  1932. if ((!$oAttDef->IsNullAllowed()) || ($iFlags & OPT_ATT_MANDATORY))
  1933. {
  1934. if ($oAttDef->IsExternalKey())
  1935. {
  1936. $oAllowedValues = MetaModel::GetAllowedValuesAsObjectSet($sClass, $sAttCode, $aArgs);
  1937. if ($oAllowedValues->Count() == 1)
  1938. {
  1939. $oRemoteObj = $oAllowedValues->Fetch();
  1940. $oObj->Set($sAttCode, $oRemoteObj->GetKey());
  1941. }
  1942. }
  1943. else
  1944. {
  1945. $aAllowedValues = MetaModel::GetAllowedValues_att($sClass, $sAttCode, $aArgs);
  1946. if (count($aAllowedValues) == 1)
  1947. {
  1948. $aValues = array_keys($aAllowedValues);
  1949. $oObj->Set($sAttCode, $aValues[0]);
  1950. }
  1951. }
  1952. }
  1953. }
  1954. }
  1955. return $oObj->DisplayModifyForm( $oPage, $aExtraParams);
  1956. }
  1957. public static function ProcessZlist($aList, $aDetails, $sCurrentTab, $sCurrentCol, $sCurrentSet)
  1958. {
  1959. //echo "<pre>ZList: ";
  1960. //print_r($aList);
  1961. //echo "</pre>\n";
  1962. $index = 0;
  1963. foreach($aList as $sKey => $value)
  1964. {
  1965. if (is_array($value))
  1966. {
  1967. if (preg_match('/^(.*):(.*)$/U', $sKey, $aMatches))
  1968. {
  1969. $sCode = $aMatches[1];
  1970. $sName = $aMatches[2];
  1971. switch($sCode)
  1972. {
  1973. case 'tab':
  1974. //echo "<p>Found a tab: $sName ($sKey)</p>\n";
  1975. if(!isset($aDetails[$sName]))
  1976. {
  1977. $aDetails[$sName] = array('col1' => array());
  1978. }
  1979. $aDetails = self::ProcessZlist($value, $aDetails, $sName, 'col1', '');
  1980. break;
  1981. case 'fieldset':
  1982. //echo "<p>Found a fieldset: $sName ($sKey)</p>\n";
  1983. if(!isset($aDetailsStruct[$sCurrentTab][$sCurrentCol][$sName]))
  1984. {
  1985. $aDetails[$sCurrentTab][$sCurrentCol][$sName] = array();
  1986. }
  1987. $aDetails = self::ProcessZlist($value, $aDetails, $sCurrentTab, $sCurrentCol, $sName);
  1988. break;
  1989. default:
  1990. case 'col':
  1991. //echo "<p>Found a column: $sName ($sKey)</p>\n";
  1992. if(!isset($aDetails[$sCurrentTab][$sName]))
  1993. {
  1994. $aDetails[$sCurrentTab][$sName] = array();
  1995. }
  1996. $aDetails = self::ProcessZlist($value, $aDetails, $sCurrentTab, $sName, '');
  1997. break;
  1998. }
  1999. }
  2000. }
  2001. else
  2002. {
  2003. //echo "<p>Scalar value: $value, in [$sCurrentTab][$sCurrentCol][$sCurrentSet][]</p>\n";
  2004. if (empty($sCurrentSet))
  2005. {
  2006. $aDetails[$sCurrentTab][$sCurrentCol]['_'.$index][] = $value;
  2007. }
  2008. else
  2009. {
  2010. $aDetails[$sCurrentTab][$sCurrentCol][$sCurrentSet][] = $value;
  2011. }
  2012. }
  2013. $index++;
  2014. }
  2015. return $aDetails;
  2016. }
  2017. static function FlattenZList($aList)
  2018. {
  2019. $aResult = array();
  2020. foreach($aList as $value)
  2021. {
  2022. if (!is_array($value))
  2023. {
  2024. $aResult[] = $value;
  2025. }
  2026. else
  2027. {
  2028. $aResult = array_merge($aResult,self::FlattenZList($value));
  2029. }
  2030. }
  2031. return $aResult;
  2032. }
  2033. protected function GetFieldAsHtml($sClass, $sAttCode, $sStateAttCode)
  2034. {
  2035. $retVal = null;
  2036. if ($this->IsNew())
  2037. {
  2038. $iFlags = $this->GetInitialStateAttributeFlags($sAttCode);
  2039. }
  2040. else
  2041. {
  2042. $iFlags = $this->GetAttributeFlags($sAttCode);
  2043. }
  2044. $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
  2045. if ( (!$oAttDef->IsLinkSet()) && (($iFlags & OPT_ATT_HIDDEN) == 0) )
  2046. {
  2047. // The field is visible in the current state of the object
  2048. if ($sStateAttCode == $sAttCode)
  2049. {
  2050. // Special display for the 'state' attribute itself
  2051. $sDisplayValue = $this->GetStateLabel();
  2052. }
  2053. else if ($oAttDef->GetEditClass() == 'Document')
  2054. {
  2055. $oDocument = $this->Get($sAttCode);
  2056. $sDisplayValue = $this->GetAsHTML($sAttCode);
  2057. $sDisplayValue .= "<br/>".Dict::Format('UI:OpenDocumentInNewWindow_', $oDocument->GetDisplayLink(get_class($this), $this->GetKey(), $sAttCode)).", \n";
  2058. $sDisplayValue .= "<br/>".Dict::Format('UI:DownloadDocument_', $oDocument->GetDownloadLink(get_class($this), $this->GetKey(), $sAttCode)).", \n";
  2059. }
  2060. else
  2061. {
  2062. $sDisplayValue = $this->GetAsHTML($sAttCode);
  2063. }
  2064. $retVal = array('label' => '<span title="'.MetaModel::GetDescription($sClass, $sAttCode).'">'.MetaModel::GetLabel($sClass, $sAttCode).'</span>', 'value' => $sDisplayValue);
  2065. }
  2066. return $retVal;
  2067. }
  2068. /**
  2069. * Displays a blob document *inline* (if possible, depending on the type of the document)
  2070. * @return string
  2071. */
  2072. public function DisplayDocumentInline(WebPage $oPage, $sAttCode)
  2073. {
  2074. $oDoc = $this->Get($sAttCode);
  2075. $sClass = get_class($this);
  2076. $Id = $this->GetKey();
  2077. switch ($oDoc->GetMainMimeType())
  2078. {
  2079. case 'text':
  2080. case 'html':
  2081. $data = $oDoc->GetData();
  2082. switch($oDoc->GetMimeType())
  2083. {
  2084. case 'text/html':
  2085. case 'text/xml':
  2086. $oPage->add("<iframe id='preview_$sAttCode' src=\"".utils::GetAbsoluteUrlAppRoot()."pages/ajax.render.php?operation=display_document&class=$sClass&id=$Id&field=$sAttCode\" width=\"100%\" height=\"400\">Loading...</iframe>\n");
  2087. break;
  2088. default:
  2089. $oPage->add("<pre>".htmlentities(MyHelpers::beautifulstr($data, 1000, true), ENT_QUOTES, 'UTF-8')."</pre>\n");
  2090. }
  2091. break;
  2092. case 'application':
  2093. switch($oDoc->GetMimeType())
  2094. {
  2095. case 'application/pdf':
  2096. $oPage->add("<iframe id='preview_$sAttCode' src=\"".utils::GetAbsoluteUrlAppRoot()."pages/ajax.render.php?operation=display_document&class=$sClass&id=$Id&field=$sAttCode\" width=\"100%\" height=\"400\">Loading...</iframe>\n");
  2097. break;
  2098. default:
  2099. $oPage->add(Dict::S('UI:Document:NoPreview'));
  2100. }
  2101. break;
  2102. case 'image':
  2103. $oPage->add("<img src=\"".utils::GetAbsoluteUrlAppRoot()."pages/ajax.render.php?operation=display_document&class=$sClass&id=$Id&field=$sAttCode\" />\n");
  2104. break;
  2105. default:
  2106. $oPage->add(Dict::S('UI:Document:NoPreview'));
  2107. }
  2108. }
  2109. // $m_highlightComparison[previous][new] => next value
  2110. protected static $m_highlightComparison = array(
  2111. HILIGHT_CLASS_CRITICAL => array(
  2112. HILIGHT_CLASS_CRITICAL => HILIGHT_CLASS_CRITICAL,
  2113. HILIGHT_CLASS_WARNING => HILIGHT_CLASS_CRITICAL,
  2114. HILIGHT_CLASS_OK => HILIGHT_CLASS_CRITICAL,
  2115. HILIGHT_CLASS_NONE => HILIGHT_CLASS_CRITICAL,
  2116. ),
  2117. HILIGHT_CLASS_WARNING => array(
  2118. HILIGHT_CLASS_CRITICAL => HILIGHT_CLASS_CRITICAL,
  2119. HILIGHT_CLASS_WARNING => HILIGHT_CLASS_WARNING,
  2120. HILIGHT_CLASS_OK => HILIGHT_CLASS_WARNING,
  2121. HILIGHT_CLASS_NONE => HILIGHT_CLASS_WARNING,
  2122. ),
  2123. HILIGHT_CLASS_OK => array(
  2124. HILIGHT_CLASS_CRITICAL => HILIGHT_CLASS_CRITICAL,
  2125. HILIGHT_CLASS_WARNING => HILIGHT_CLASS_WARNING,
  2126. HILIGHT_CLASS_OK => HILIGHT_CLASS_OK,
  2127. HILIGHT_CLASS_NONE => HILIGHT_CLASS_OK,
  2128. ),
  2129. HILIGHT_CLASS_NONE => array(
  2130. HILIGHT_CLASS_CRITICAL => HILIGHT_CLASS_CRITICAL,
  2131. HILIGHT_CLASS_WARNING => HILIGHT_CLASS_WARNING,
  2132. HILIGHT_CLASS_OK => HILIGHT_CLASS_OK,
  2133. HILIGHT_CLASS_NONE => HILIGHT_CLASS_NONE,
  2134. ),
  2135. );
  2136. /**
  2137. * This function returns a 'hilight' CSS class, used to hilight a given row in a table
  2138. * There are currently (i.e defined in the CSS) 4 possible values HILIGHT_CLASS_CRITICAL,
  2139. * HILIGHT_CLASS_WARNING, HILIGHT_CLASS_OK, HILIGHT_CLASS_NONE
  2140. * To Be overridden by derived classes
  2141. * @param void
  2142. * @return String The desired higlight class for the object/row
  2143. */
  2144. public function GetHilightClass()
  2145. {
  2146. // Possible return values are:
  2147. // HILIGHT_CLASS_CRITICAL, HILIGHT_CLASS_WARNING, HILIGHT_CLASS_OK, HILIGHT_CLASS_NONE
  2148. $current = HILIGHT_CLASS_NONE; // Not hilighted by default
  2149. // Invoke extensions before the deletion (the deletion will do some cleanup and we might loose some information
  2150. foreach (MetaModel::EnumPlugins('iApplicationUIExtension') as $oExtensionInstance)
  2151. {
  2152. $new = $oExtensionInstance->GetHilightClass($this);
  2153. @$current = self::$m_highlightComparison[$current][$new];
  2154. }
  2155. return $current;
  2156. }
  2157. /**
  2158. * Re-order the fields based on their inter-dependencies
  2159. * @params hash @aFields field_code => array_of_depencies
  2160. * @return array Ordered array of fields or throws an exception
  2161. */
  2162. public static function OrderDependentFields($aFields)
  2163. {
  2164. $bCircular = false;
  2165. $aResult = array();
  2166. $iCount = 0;
  2167. do
  2168. {
  2169. $bSet = false;
  2170. $iCount++;
  2171. foreach($aFields as $sFieldCode => $aDeps)
  2172. {
  2173. foreach($aDeps as $key => $sDependency)
  2174. {
  2175. if (in_array($sDependency, $aResult))
  2176. {
  2177. // Dependency is resolved, remove it
  2178. unset($aFields[$sFieldCode][$key]);
  2179. }
  2180. }
  2181. if (count($aFields[$sFieldCode]) == 0)
  2182. {
  2183. // No more pending depencies for this field, add it to the list
  2184. $aResult[] = $sFieldCode;
  2185. unset($aFields[$sFieldCode]);
  2186. $bSet = true;
  2187. }
  2188. }
  2189. }
  2190. while($bSet && (count($aFields) > 0));
  2191. if (count($aFields) > 0)
  2192. {
  2193. $sMessage = "Error: Circular dependencies between the fields (or field missing in ZList) ! <pre>".print_r($aFields, true)."</pre>";
  2194. throw(new Exception($sMessage));
  2195. }
  2196. return $aResult;
  2197. }
  2198. /**
  2199. * Get the list of actions to be displayed as 'shortcuts' (i.e buttons) instead of inside the Actions popup menu
  2200. * @param $sFinalClass string The actual class of the objects for which to display the menu
  2201. * @return Array the list of menu codes (i.e dictionary entries) that can be displayed as shortcuts next to the actions menu
  2202. */
  2203. public static function GetShortcutActions($sFinalClass)
  2204. {
  2205. $sShortcutActions = MetaModel::GetConfig()->Get('shortcut_actions');
  2206. $aShortcutActions = explode(',', $sShortcutActions);
  2207. return $aShortcutActions;
  2208. }
  2209. /**
  2210. * Maps the given context parameter name to the appropriate filter/search code for this class
  2211. * @param string $sContextParam Name of the context parameter, i.e. 'org_id'
  2212. * @return string Filter code, i.e. 'customer_id'
  2213. */
  2214. public static function MapContextParam($sContextParam)
  2215. {
  2216. if ($sContextParam == 'menu')
  2217. {
  2218. return null;
  2219. }
  2220. else
  2221. {
  2222. return $sContextParam;
  2223. }
  2224. }
  2225. /**
  2226. * Updates the object from a flat array of values
  2227. * @param $aAttList array $aAttList array of attcode
  2228. * @param $aErrors array Returns information about slave attributes
  2229. * @param $sTargetState string Target state for which to evaluate the writeable attributes (=current state is empty)
  2230. * @return array of attcodes that can be used for writing on the current object
  2231. */
  2232. public function GetWriteableAttList($aAttList, &$aErrors, $sTargetState = '')
  2233. {
  2234. if (!is_array($aAttList))
  2235. {
  2236. $aAttList = $this->FlattenZList(MetaModel::GetZListItems(get_class($this), 'details'));
  2237. // Special case to process the case log, if any...
  2238. // WARNING: if you change this also check the functions DisplayModifyForm and DisplayCaseLog
  2239. foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode => $oAttDef)
  2240. {
  2241. if ($this->IsNew())
  2242. {
  2243. $iFlags = $this->GetInitialStateAttributeFlags($sAttCode);
  2244. }
  2245. else
  2246. {
  2247. $aVoid = array();
  2248. $iFlags = $this->GetAttributeFlags($sAttCode, $aVoid, $sTargetState);
  2249. }
  2250. if ($oAttDef instanceof AttributeCaseLog)
  2251. {
  2252. if (!($iFlags & (OPT_ATT_HIDDEN|OPT_ATT_SLAVE|OPT_ATT_READONLY)))
  2253. {
  2254. // The case log is editable, append it to the list of fields to retrieve
  2255. $aAttList[] = $sAttCode;
  2256. }
  2257. }
  2258. }
  2259. }
  2260. $aWriteableAttList = array();
  2261. foreach($aAttList as $sAttCode)
  2262. {
  2263. $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
  2264. if ($this->IsNew())
  2265. {
  2266. $iFlags = $this->GetInitialStateAttributeFlags($sAttCode);
  2267. }
  2268. else
  2269. {
  2270. $aVoid = array();
  2271. $iFlags = $this->GetAttributeFlags($sAttCode, $aVoid, $sTargetState);
  2272. }
  2273. if ($oAttDef->IsWritable())
  2274. {
  2275. if ( $iFlags & (OPT_ATT_HIDDEN | OPT_ATT_READONLY))
  2276. {
  2277. // Non-visible, or read-only attribute, do nothing
  2278. }
  2279. elseif($iFlags & OPT_ATT_SLAVE)
  2280. {
  2281. $aErrors[$sAttCode] = Dict::Format('UI:AttemptingToSetASlaveAttribute_Name', $oAttDef->GetLabel());
  2282. }
  2283. else
  2284. {
  2285. $aWriteableAttList[$sAttCode] = $oAttDef;
  2286. }
  2287. }
  2288. }
  2289. return $aWriteableAttList;
  2290. }
  2291. /**
  2292. * Updates the object from a flat array of values
  2293. * @param string $aValues array of attcode => scalar or array (N-N links)
  2294. * @return void
  2295. */
  2296. public function UpdateObjectFromArray($aValues)
  2297. {
  2298. foreach($aValues as $sAttCode => $value)
  2299. {
  2300. $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
  2301. if ($oAttDef->IsLinkSet() && $oAttDef->IsIndirect())
  2302. {
  2303. $aLinks = $value;
  2304. $sLinkedClass = $oAttDef->GetLinkedClass();
  2305. $sExtKeyToRemote = $oAttDef->GetExtKeyToRemote();
  2306. $sExtKeyToMe = $oAttDef->GetExtKeyToMe();
  2307. $oLinkedSet = DBObjectSet::FromScratch($sLinkedClass);
  2308. if (is_array($aLinks))
  2309. {
  2310. foreach($aLinks as $id => $aData)
  2311. {
  2312. if (is_numeric($id))
  2313. {
  2314. if ($id < 0)
  2315. {
  2316. // New link to be created, the opposite of the id (-$id) is the ID of the remote object
  2317. $oLink = MetaModel::NewObject($sLinkedClass);
  2318. $oLink->Set($sExtKeyToRemote, -$id);
  2319. $oLink->Set($sExtKeyToMe, $this->GetKey());
  2320. }
  2321. else
  2322. {
  2323. // Existing link, potentially to be updated...
  2324. $oLink = MetaModel::GetObject($sLinkedClass, $id);
  2325. }
  2326. // Now populate the attributes
  2327. foreach($aData as $sName => $value)
  2328. {
  2329. if (MetaModel::IsValidAttCode($sLinkedClass, $sName))
  2330. {
  2331. $oLinkAttDef = MetaModel::GetAttributeDef($sLinkedClass, $sName);
  2332. if ($oLinkAttDef->IsWritable())
  2333. {
  2334. $oLink->Set($sName, $value);
  2335. }
  2336. }
  2337. }
  2338. $oLinkedSet->AddObject($oLink);
  2339. }
  2340. }
  2341. }
  2342. $this->Set($sAttCode, $oLinkedSet);
  2343. }
  2344. elseif ($oAttDef->GetEditClass() == 'Document')
  2345. {
  2346. // There should be an uploaded file with the named attr_<attCode>
  2347. $oDocument = $value['fcontents'];
  2348. if (!$oDocument->IsEmpty())
  2349. {
  2350. // A new file has been uploaded
  2351. $this->Set($sAttCode, $oDocument);
  2352. }
  2353. }
  2354. elseif ($oAttDef->GetEditClass() == 'One Way Password')
  2355. {
  2356. // Check if the password was typed/changed
  2357. $aPwdData = $value;
  2358. if (!is_null($aPwdData) && $aPwdData['changed'])
  2359. {
  2360. // The password has been changed or set
  2361. $this->Set($sAttCode, $aPwdData['value']);
  2362. }
  2363. }
  2364. elseif ($oAttDef->GetEditClass() == 'Duration')
  2365. {
  2366. $aDurationData = $value;
  2367. if (!is_array($aDurationData)) continue;
  2368. $iValue = (((24*$aDurationData['d'])+$aDurationData['h'])*60 +$aDurationData['m'])*60 + $aDurationData['s'];
  2369. $this->Set($sAttCode, $iValue);
  2370. $previousValue = $this->Get($sAttCode);
  2371. if ($previousValue !== $iValue)
  2372. {
  2373. $this->Set($sAttCode, $iValue);
  2374. }
  2375. }
  2376. else if (($oAttDef->GetEditClass() == 'LinkedSet') && !$oAttDef->IsIndirect() && ($oAttDef->GetEditMode() == LINKSET_EDITMODE_INPLACE))
  2377. {
  2378. $oLinkset = $this->Get($sAttCode);
  2379. $sLinkedClass = $oLinkset->GetClass();
  2380. $aObjSet = array();
  2381. $oLinkset->Rewind();
  2382. $bModified = false;
  2383. while($oLink = $oLinkset->Fetch())
  2384. {
  2385. if (in_array($oLink->GetKey(), $value['to_be_deleted']))
  2386. {
  2387. // The link is to be deleted, don't copy it in the array
  2388. $bModified = true;
  2389. }
  2390. else
  2391. {
  2392. $aObjSet[] = $oLink;
  2393. }
  2394. }
  2395. if (array_key_exists('to_be_created', $value) && (count($value['to_be_created']) > 0))
  2396. {
  2397. // Now handle the lniks to be created
  2398. foreach($value['to_be_created'] as $aData)
  2399. {
  2400. $sSubClass = $aData['class'];
  2401. if ( ($sLinkedClass == $sSubClass) || (is_subclass_of($sSubClass, $sLinkedClass)) )
  2402. {
  2403. $aObjData = $aData['data'];
  2404. $oLink = new $sSubClass;
  2405. $oLink->UpdateObjectFromArray($aObjData);
  2406. $aObjSet[] = $oLink;
  2407. $bModified = true;
  2408. }
  2409. }
  2410. }
  2411. if ($bModified)
  2412. {
  2413. $oNewSet = DBObjectSet::FromArray($oLinkset->GetClass(), $aObjSet);
  2414. $this->Set($sAttCode, $oNewSet);
  2415. }
  2416. }
  2417. else
  2418. {
  2419. if (!is_null($value))
  2420. {
  2421. $aAttributes[$sAttCode] = trim($value);
  2422. $previousValue = $this->Get($sAttCode);
  2423. if ($previousValue !== $aAttributes[$sAttCode])
  2424. {
  2425. $this->Set($sAttCode, $aAttributes[$sAttCode]);
  2426. }
  2427. }
  2428. }
  2429. }
  2430. }
  2431. /**
  2432. * Updates the object from the POSTed parameters (form)
  2433. */
  2434. public function UpdateObjectFromPostedForm($sFormPrefix = '', $aAttList = null, $sTargetState = '')
  2435. {
  2436. if (is_null($aAttList))
  2437. {
  2438. $aAttList = array_keys(MetaModel::ListAttributeDefs(get_class($this)));
  2439. }
  2440. $aValues = array();
  2441. foreach($aAttList as $sAttCode)
  2442. {
  2443. $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
  2444. if ($oAttDef->GetEditClass() == 'Document')
  2445. {
  2446. $value = array('fcontents' => utils::ReadPostedDocument("attr_{$sFormPrefix}{$sAttCode}", 'fcontents'));
  2447. }
  2448. else if (($oAttDef->GetEditClass() == 'LinkedSet') && !$oAttDef->IsIndirect() && ($oAttDef->GetEditMode() == LINKSET_EDITMODE_INPLACE))
  2449. {
  2450. $aRawToBeCreated = json_decode(utils::ReadPostedParam("attr_{$sFormPrefix}{$sAttCode}_tbc", '{}', 'raw_data'), true);
  2451. $aToBeCreated = array();
  2452. foreach($aRawToBeCreated as $aData)
  2453. {
  2454. $sSubFormPrefix = $aData['formPrefix'];
  2455. $sObjClass = $aData['class'];
  2456. $aObjData = array();
  2457. foreach($aData as $sKey => $value)
  2458. {
  2459. if (preg_match("/^attr_$sSubFormPrefix(.*)$/", $sKey, $aMatches))
  2460. {
  2461. $aObjData[$aMatches[1]] = $value;
  2462. }
  2463. }
  2464. $aToBeCreated[] = array('class' => $sObjClass, 'data' => $aObjData);
  2465. }
  2466. $value = array('to_be_created' => $aToBeCreated,
  2467. 'to_be_deleted' => json_decode(utils::ReadPostedParam("attr_{$sFormPrefix}{$sAttCode}_tbd", '[]', 'raw_data'), true) );
  2468. }
  2469. else
  2470. {
  2471. $value = utils::ReadPostedParam("attr_{$sFormPrefix}{$sAttCode}", null, 'raw_data');
  2472. }
  2473. if (!is_null($value))
  2474. {
  2475. $aValues[$sAttCode] = $value;
  2476. }
  2477. }
  2478. $aErrors = array();
  2479. $aFinalValues = array();
  2480. foreach($this->GetWriteableAttList(array_keys($aValues), $aErrors, $sTargetState) as $sAttCode => $oAttDef)
  2481. {
  2482. $aFinalValues[$sAttCode] = $aValues[$sAttCode];
  2483. }
  2484. $this->UpdateObjectFromArray($aFinalValues);
  2485. // Invoke extensions after the update of the object from the form
  2486. foreach (MetaModel::EnumPlugins('iApplicationUIExtension') as $oExtensionInstance)
  2487. {
  2488. $oExtensionInstance->OnFormSubmit($this, $sFormPrefix);
  2489. }
  2490. return $aErrors;
  2491. }
  2492. /**
  2493. * Updates the object from a given page argument
  2494. */
  2495. public function UpdateObjectFromArg($sArgName, $aAttList = null, $sTargetState = '')
  2496. {
  2497. if (is_null($aAttList))
  2498. {
  2499. $aAttList = array_keys(MetaModel::ListAttributeDefs(get_class($this)));
  2500. }
  2501. $aRawValues = utils::ReadParam($sArgName, array(), '', 'raw_data');
  2502. $aValues = array();
  2503. foreach($aAttList as $sAttCode)
  2504. {
  2505. if (isset($aRawValues[$sAttCode]))
  2506. {
  2507. $aValues[$sAttCode] = $aRawValues[$sAttCode];
  2508. }
  2509. }
  2510. $aErrors = array();
  2511. $aFinalValues = array();
  2512. foreach($this->GetWriteableAttList(array_keys($aValues), $aErrors, $sTargetState) as $sAttCode => $oAttDef)
  2513. {
  2514. $aFinalValues[$sAttCode] = $aValues[$sAttCode];
  2515. }
  2516. $this->UpdateObjectFromArray($aFinalValues);
  2517. return $aErrors;
  2518. }
  2519. public function DBInsertNoReload()
  2520. {
  2521. $res = parent::DBInsertNoReload();
  2522. // Invoke extensions after insertion (the object must exist, have an id, etc.)
  2523. foreach (MetaModel::EnumPlugins('iApplicationObjectExtension') as $oExtensionInstance)
  2524. {
  2525. $oExtensionInstance->OnDBInsert($this, self::GetCurrentChange());
  2526. }
  2527. return $res;
  2528. }
  2529. protected function DBCloneTracked_Internal($newKey = null)
  2530. {
  2531. $oNewObj = parent::DBCloneTracked_Internal($newKey);
  2532. // Invoke extensions after insertion (the object must exist, have an id, etc.)
  2533. foreach (MetaModel::EnumPlugins('iApplicationObjectExtension') as $oExtensionInstance)
  2534. {
  2535. $oExtensionInstance->OnDBInsert($oNewObj, self::GetCurrentChange());
  2536. }
  2537. return $oNewObj;
  2538. }
  2539. public function DBUpdate()
  2540. {
  2541. $res = parent::DBUpdate();
  2542. // Invoke extensions after the update (could be before)
  2543. foreach (MetaModel::EnumPlugins('iApplicationObjectExtension') as $oExtensionInstance)
  2544. {
  2545. $oExtensionInstance->OnDBUpdate($this, self::GetCurrentChange());
  2546. }
  2547. return $res;
  2548. }
  2549. protected static function BulkUpdateTracked_Internal(DBObjectSearch $oFilter, array $aValues)
  2550. {
  2551. // Todo - invoke the extension
  2552. return parent::BulkUpdateTracked_Internal($oFilter, $aValues);
  2553. }
  2554. protected function DBDeleteTracked_Internal(&$oDeletionPlan = null)
  2555. {
  2556. // Invoke extensions before the deletion (the deletion will do some cleanup and we might loose some information
  2557. foreach (MetaModel::EnumPlugins('iApplicationObjectExtension') as $oExtensionInstance)
  2558. {
  2559. $oExtensionInstance->OnDBDelete($this, self::GetCurrentChange());
  2560. }
  2561. return parent::DBDeleteTracked_Internal($oDeletionPlan);
  2562. }
  2563. public function IsModified()
  2564. {
  2565. if (parent::IsModified())
  2566. {
  2567. return true;
  2568. }
  2569. // Plugins
  2570. //
  2571. foreach (MetaModel::EnumPlugins('iApplicationObjectExtension') as $oExtensionInstance)
  2572. {
  2573. if ($oExtensionInstance->OnIsModified($this))
  2574. {
  2575. return true;
  2576. }
  2577. }
  2578. return false;
  2579. }
  2580. public function DoCheckToWrite()
  2581. {
  2582. parent::DoCheckToWrite();
  2583. // Plugins
  2584. //
  2585. foreach (MetaModel::EnumPlugins('iApplicationObjectExtension') as $oExtensionInstance)
  2586. {
  2587. $aNewIssues = $oExtensionInstance->OnCheckToWrite($this);
  2588. if (count($aNewIssues) > 0)
  2589. {
  2590. $this->m_aCheckIssues = array_merge($this->m_aCheckIssues, $aNewIssues);
  2591. }
  2592. }
  2593. // User rights
  2594. //
  2595. $aChanges = $this->ListChanges();
  2596. if (count($aChanges) > 0)
  2597. {
  2598. $aForbiddenFields = array();
  2599. foreach ($this->ListChanges() as $sAttCode => $value)
  2600. {
  2601. $bUpdateAllowed = UserRights::IsActionAllowedOnAttribute(get_class($this), $sAttCode, UR_ACTION_MODIFY, DBObjectSet::FromObject($this));
  2602. if (!$bUpdateAllowed)
  2603. {
  2604. $oAttCode = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
  2605. $aForbiddenFields[] = $oAttCode->GetLabel();
  2606. }
  2607. }
  2608. if (count($aForbiddenFields) > 0)
  2609. {
  2610. // Security issue
  2611. $this->m_bSecurityIssue = true;
  2612. $this->m_aCheckIssues[] = Dict::Format('UI:Delete:NotAllowedToUpdate_Fields',implode(', ', $aForbiddenFields));
  2613. }
  2614. }
  2615. }
  2616. protected function DoCheckToDelete(&$oDeletionPlan)
  2617. {
  2618. parent::DoCheckToDelete($oDeletionPlan);
  2619. // Plugins
  2620. //
  2621. foreach (MetaModel::EnumPlugins('iApplicationObjectExtension') as $oExtensionInstance)
  2622. {
  2623. $aNewIssues = $oExtensionInstance->OnCheckToDelete($this);
  2624. if (count($aNewIssues) > 0)
  2625. {
  2626. $this->m_aDeleteIssues = array_merge($this->m_aDeleteIssues, $aNewIssues);
  2627. }
  2628. }
  2629. // User rights
  2630. //
  2631. $bDeleteAllowed = UserRights::IsActionAllowed(get_class($this), UR_ACTION_DELETE, DBObjectSet::FromObject($this));
  2632. if (!$bDeleteAllowed)
  2633. {
  2634. // Security issue
  2635. $this->m_bSecurityIssue = true;
  2636. $this->m_aDeleteIssues[] = Dict::S('UI:Delete:NotAllowedToDelete');
  2637. }
  2638. }
  2639. /**
  2640. * Special display where the case log uses the whole "screen" at the bottom of the "Properties" tab
  2641. */
  2642. public function DisplayCaseLog(WebPage $oPage, $sAttCode, $sComment = '', $sPrefix = '', $bEditMode = false)
  2643. {
  2644. $oPage->SetCurrentTab(Dict::S('UI:PropertiesTab'));
  2645. $sClass = get_class($this);
  2646. if ($this->IsNew())
  2647. {
  2648. $iFlags = $this->GetInitialStateAttributeFlags($sAttCode);
  2649. }
  2650. else
  2651. {
  2652. $iFlags = $this->GetAttributeFlags($sAttCode);
  2653. }
  2654. if ( $iFlags & OPT_ATT_HIDDEN)
  2655. {
  2656. // The case log is hidden do nothing
  2657. }
  2658. else
  2659. {
  2660. $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
  2661. $sInputId = $this->m_iFormId.'_'.$sAttCode;
  2662. if ((!$bEditMode) || ($iFlags & (OPT_ATT_READONLY|OPT_ATT_SLAVE)))
  2663. {
  2664. // Check if the attribute is not read-only because of a synchro...
  2665. $aReasons = array();
  2666. $sSynchroIcon = '';
  2667. if ($iFlags & OPT_ATT_SLAVE)
  2668. {
  2669. $iSynchroFlags = $this->GetSynchroReplicaFlags($sAttCode, $aReasons);
  2670. $sSynchroIcon = "&nbsp;<img id=\"synchro_$sInputId\" src=\"../images/transp-lock.png\" style=\"vertical-align:middle\"/>";
  2671. $sTip = '';
  2672. foreach($aReasons as $aRow)
  2673. {
  2674. $sTip .= "<p>Synchronized with {$aRow['name']} - {$aRow['description']}</p>";
  2675. }
  2676. $sTip = addslashes($sTip);
  2677. $oPage->add_ready_script("$('#synchro_$sInputId').qtip( { content: '$sTip', show: 'mouseover', hide: 'mouseout', style: { name: 'dark', tip: 'leftTop' }, position: { corner: { target: 'rightMiddle', tooltip: 'leftTop' }} } );");
  2678. }
  2679. // Attribute is read-only
  2680. $sHTMLValue = $this->GetAsHTML($sAttCode);
  2681. $sHTMLValue .= '<input type="hidden" id="'.$sInputId.'" name="attr_'.$sPrefix.$sAttCode.'" value="'.htmlentities($this->Get($sAttCode), ENT_QUOTES, 'UTF-8').'"/>';
  2682. $aFieldsMap[$sAttCode] = $sInputId;
  2683. $sComment .= $sSynchroIcon;
  2684. }
  2685. else
  2686. {
  2687. $sValue = $this->Get($sAttCode);
  2688. $sDisplayValue = $this->GetEditValue($sAttCode);
  2689. $aArgs = array('this' => $this, 'formPrefix' => $sPrefix);
  2690. $sHTMLValue = '';
  2691. if ($sComment != '')
  2692. {
  2693. $sHTMLValue = '<span>'.$sComment.'</span><br/>';
  2694. }
  2695. $sHTMLValue .= "<span id=\"field_{$sInputId}\">".self::GetFormElementForField($oPage, $sClass, $sAttCode, $oAttDef, $sValue, $sDisplayValue, $sInputId, '', $iFlags, $aArgs).'</span>';
  2696. $aFieldsMap[$sAttCode] = $sInputId;
  2697. }
  2698. //$aVal = array('label' => '<span title="'.$oAttDef->GetDescription().'">'.$oAttDef->GetLabel().'</span>', 'value' => $sHTMLValue, 'comments' => $sComments, 'infos' => $sInfos);
  2699. $oPage->add('<fieldset><legend>'.$oAttDef->GetLabel().'</legend>');
  2700. $oPage->add($sHTMLValue);
  2701. $oPage->add('</fieldset>');
  2702. }
  2703. }
  2704. public function GetExpectedAttributes($sCurrentState, $sStimulus, $bOnlyNewOnes)
  2705. {
  2706. $aTransitions = $this->EnumTransitions();
  2707. $aStimuli = MetaModel::EnumStimuli(get_class($this));
  2708. if (!isset($aTransitions[$sStimulus]))
  2709. {
  2710. // Invalid stimulus
  2711. throw new ApplicationException(Dict::Format('UI:Error:Invalid_Stimulus_On_Object_In_State', $sStimulus, $oObj->GetName(), $oObj->GetStateLabel()));
  2712. }
  2713. $aTransition = $aTransitions[$sStimulus];
  2714. $sTargetState = $aTransition['target_state'];
  2715. $aTargetStates = MetaModel::EnumStates(get_class($this));
  2716. $aTargetState = $aTargetStates[$sTargetState];
  2717. $aCurrentState = $aTargetStates[$this->GetState()];
  2718. $aExpectedAttributes = $aTargetState['attribute_list'];
  2719. $aCurrentAttributes = $aCurrentState['attribute_list'];
  2720. $aComputedAttributes = array();
  2721. foreach($aExpectedAttributes as $sAttCode => $iExpectCode)
  2722. {
  2723. if (!array_key_exists($sAttCode, $aCurrentAttributes))
  2724. {
  2725. $aComputedAttributes[$sAttCode] = $iExpectCode;
  2726. }
  2727. else
  2728. {
  2729. if ( !($aCurrentAttributes[$sAttCode] & (OPT_ATT_HIDDEN|OPT_ATT_READONLY)) )
  2730. {
  2731. $iExpectCode = $iExpectCode & ~(OPT_ATT_MUSTPROMPT|OPT_ATT_MUSTCHANGE); // Already prompted/changed, reset the flags
  2732. }
  2733. //TODO: better check if the attribute is not *null*
  2734. if ( ($iExpectCode & OPT_ATT_MANDATORY) && ($this->Get($sAttCode) != ''))
  2735. {
  2736. $iExpectCode = $iExpectCode & ~(OPT_ATT_MANDATORY); // If the attribute is present, then no need to request its presence
  2737. }
  2738. $aComputedAttributes[$sAttCode] = $iExpectCode;
  2739. }
  2740. $aComputedAttributes[$sAttCode] = $aComputedAttributes[$sAttCode] & ~(OPT_ATT_READONLY|OPT_ATT_HIDDEN); // Don't care about this form now
  2741. if ($aComputedAttributes[$sAttCode] == 0)
  2742. {
  2743. unset($aComputedAttributes[$sAttCode]);
  2744. }
  2745. }
  2746. return $aComputedAttributes;
  2747. }
  2748. /**
  2749. * Display a form for modifying several objects at once
  2750. * The form will be submitted to the current page, with the specified additional values
  2751. */
  2752. public static function DisplayBulkModifyForm($oP, $sClass, $aSelectedObj, $sCustomOperation, $sCancelUrl, $aExcludeAttributes = array(), $aContextData = array())
  2753. {
  2754. if (count($aSelectedObj) > 0)
  2755. {
  2756. $iAllowedCount = count($aSelectedObj);
  2757. $sSelectedObj = implode(',', $aSelectedObj);
  2758. $sOQL = "SELECT $sClass WHERE id IN (".$sSelectedObj.")";
  2759. $oSet = new CMDBObjectSet(DBObjectSearch::FromOQL($sOQL));
  2760. // Compute the distribution of the values for each field to determine which of the "scalar" fields are homogenous
  2761. $aList = MetaModel::ListAttributeDefs($sClass);
  2762. $aValues = array();
  2763. foreach($aList as $sAttCode => $oAttDef)
  2764. {
  2765. if ($oAttDef->IsScalar())
  2766. {
  2767. $aValues[$sAttCode] = array();
  2768. }
  2769. }
  2770. while($oObj = $oSet->Fetch())
  2771. {
  2772. foreach($aList as $sAttCode => $oAttDef)
  2773. {
  2774. if ($oAttDef->IsScalar() && $oAttDef->IsWritable())
  2775. {
  2776. $currValue = $oObj->Get($sAttCode);
  2777. if ($oAttDef instanceof AttributeCaseLog)
  2778. {
  2779. $currValue = ' '; // Don't put an empty string, in case the field would be considered as mandatory...
  2780. }
  2781. if (is_object($currValue)) continue; // Skip non scalar values...
  2782. if(!array_key_exists($currValue, $aValues[$sAttCode]))
  2783. {
  2784. $aValues[$sAttCode][$currValue] = array('count' => 1, 'display' => $oObj->GetAsHTML($sAttCode));
  2785. }
  2786. else
  2787. {
  2788. $aValues[$sAttCode][$currValue]['count']++;
  2789. }
  2790. }
  2791. }
  2792. }
  2793. // Now create an object that has values for the homogenous values only
  2794. $oDummyObj = new $sClass(); // @@ What if the class is abstract ?
  2795. $aComments = array();
  2796. function MyComparison($a, $b) // Sort descending
  2797. {
  2798. if ($a['count'] == $b['count'])
  2799. {
  2800. return 0;
  2801. }
  2802. return ($a['count'] > $b['count']) ? -1 : 1;
  2803. }
  2804. $iFormId = cmdbAbstractObject::GetNextFormId(); // Identifier that prefixes all the form fields
  2805. $sReadyScript = '';
  2806. $aDependsOn = array();
  2807. $sFormPrefix = '2_';
  2808. foreach($aList as $sAttCode => $oAttDef)
  2809. {
  2810. $aPrerequisites = MetaModel::GetPrequisiteAttributes($sClass, $sAttCode); // List of attributes that are needed for the current one
  2811. if (count($aPrerequisites) > 0)
  2812. {
  2813. // When 'enabling' a field, all its prerequisites must be enabled too
  2814. $sFieldList = "['{$sFormPrefix}".implode("','{$sFormPrefix}", $aPrerequisites)."']";
  2815. $oP->add_ready_script("$('#enable_{$sFormPrefix}{$sAttCode}').bind('change', function(evt, sFormId) { return PropagateCheckBox( this.checked, $sFieldList, true); } );\n");
  2816. }
  2817. $aDependents = MetaModel::GetDependentAttributes($sClass, $sAttCode); // List of attributes that are needed for the current one
  2818. if (count($aDependents) > 0)
  2819. {
  2820. // When 'disabling' a field, all its dependent fields must be disabled too
  2821. $sFieldList = "['{$sFormPrefix}".implode("','{$sFormPrefix}", $aDependents)."']";
  2822. $oP->add_ready_script("$('#enable_{$sFormPrefix}{$sAttCode}').bind('change', function(evt, sFormId) { return PropagateCheckBox( this.checked, $sFieldList, false); } );\n");
  2823. }
  2824. if ($oAttDef->IsScalar() && $oAttDef->IsWritable())
  2825. {
  2826. if ($oAttDef->GetEditClass() == 'One Way Password')
  2827. {
  2828. $sTip = "Unknown values";
  2829. $sReadyScript .= "$('#multi_values_$sAttCode').qtip( { content: '$sTip', show: 'mouseover', hide: 'mouseout', style: { name: 'dark', tip: 'leftTop' }, position: { corner: { target: 'rightMiddle', tooltip: 'leftTop' }} } );";
  2830. $oDummyObj->Set($sAttCode, null);
  2831. $aComments[$sAttCode] = '<input type="checkbox" id="enable_'.$iFormId.'_'.$sAttCode.'" onClick="ToogleField(this.checked, \''.$iFormId.'_'.$sAttCode.'\')"/>';
  2832. $aComments[$sAttCode] .= '<div class="multi_values" id="multi_values_'.$sAttCode.'"> ? </div>';
  2833. $sReadyScript .= 'ToogleField(false, \''.$iFormId.'_'.$sAttCode.'\');'."\n";
  2834. }
  2835. else
  2836. {
  2837. $iCount = count($aValues[$sAttCode]);
  2838. if ($iCount == 1)
  2839. {
  2840. // Homogenous value
  2841. reset($aValues[$sAttCode]);
  2842. $aKeys = array_keys($aValues[$sAttCode]);
  2843. $currValue = $aKeys[0]; // The only value is the first key
  2844. //echo "<p>current value for $sAttCode : $currValue</p>";
  2845. $oDummyObj->Set($sAttCode, $currValue);
  2846. $aComments[$sAttCode] = '<input type="checkbox" checked id="enable_'.$iFormId.'_'.$sAttCode.'" onClick="ToogleField(this.checked, \''.$iFormId.'_'.$sAttCode.'\')"/>';
  2847. $aComments[$sAttCode] .= '<div class="mono_value">1</div>';
  2848. }
  2849. else
  2850. {
  2851. // Non-homogenous value
  2852. $aMultiValues = $aValues[$sAttCode];
  2853. uasort($aMultiValues, 'MyComparison');
  2854. $iMaxCount = 5;
  2855. $sTip = "<p><b>".Dict::Format('UI:BulkModify_Count_DistinctValues', $iCount)."</b><ul>";
  2856. $index = 0;
  2857. foreach($aMultiValues as $sCurrValue => $aVal)
  2858. {
  2859. $sDisplayValue = empty($aVal['display']) ? '<i>'.Dict::S('Enum:Undefined').'</i>' : str_replace(array("\n", "\r"), " ", $aVal['display']);
  2860. $sTip .= "<li>".Dict::Format('UI:BulkModify:Value_Exists_N_Times', $sDisplayValue, $aVal['count'])."</li>";
  2861. $index++;
  2862. if ($iMaxCount == $index)
  2863. {
  2864. $sTip .= "<li>".Dict::Format('UI:BulkModify:N_MoreValues', count($aMultiValues) - $iMaxCount)."</li>";
  2865. break;
  2866. }
  2867. }
  2868. $sTip .= "</ul></p>";
  2869. $sTip = addslashes($sTip);
  2870. $sReadyScript .= "$('#multi_values_$sAttCode').qtip( { content: '$sTip', show: 'mouseover', hide: 'mouseout', style: { name: 'dark', tip: 'leftTop' }, position: { corner: { target: 'rightMiddle', tooltip: 'leftTop' }} } );";
  2871. $oDummyObj->Set($sAttCode, null);
  2872. $aComments[$sAttCode] = '<input type="checkbox" id="enable_'.$iFormId.'_'.$sAttCode.'" onClick="ToogleField(this.checked, \''.$iFormId.'_'.$sAttCode.'\')"/>';
  2873. $aComments[$sAttCode] .= '<div class="multi_values" id="multi_values_'.$sAttCode.'">'.$iCount.'</div>';
  2874. }
  2875. $sReadyScript .= 'ToogleField('.(($iCount == 1) ? 'true': 'false').', \''.$iFormId.'_'.$sAttCode.'\');'."\n";
  2876. }
  2877. }
  2878. }
  2879. $sStateAttCode = MetaModel::GetStateAttributeCode($sClass);
  2880. if (($sStateAttCode != '') && ($oDummyObj->GetState() == ''))
  2881. {
  2882. // Hmmm, it's not gonna work like this ! Set a default value for the "state"
  2883. // Maybe we should use the "state" that is the most common among the objects...
  2884. $aMultiValues = $aValues[$sStateAttCode];
  2885. uasort($aMultiValues, 'MyComparison');
  2886. foreach($aMultiValues as $sCurrValue => $aVal)
  2887. {
  2888. $oDummyObj->Set($sStateAttCode, $sCurrValue);
  2889. break;
  2890. }
  2891. //$oStateAtt = MetaModel::GetAttributeDef($sClass, $sStateAttCode);
  2892. //$oDummyObj->Set($sStateAttCode, $oStateAtt->GetDefaultValue());
  2893. }
  2894. $oP->add("<div class=\"page_header\">\n");
  2895. $oP->add("<h1>".$oDummyObj->GetIcon()."&nbsp;".Dict::Format('UI:Modify_M_ObjectsOf_Class_OutOf_N', $iAllowedCount, $sClass, $iAllowedCount)."</h1>\n");
  2896. $oP->add("</div>\n");
  2897. $oP->add("<div class=\"wizContainer\">\n");
  2898. $sDisableFields = json_encode($aExcludeAttributes);
  2899. $aParams = array
  2900. (
  2901. 'fieldsComments' => $aComments,
  2902. 'noRelations' => true,
  2903. 'custom_operation' => $sCustomOperation,
  2904. 'custom_button' => Dict::S('UI:Button:PreviewModifications'),
  2905. 'selectObj' => $sSelectedObj,
  2906. 'preview_mode' => true,
  2907. 'disabled_fields' => $sDisableFields,
  2908. 'disable_plugins' => true
  2909. );
  2910. $aParams = $aParams + $aContextData; // merge keeping associations
  2911. $oDummyObj->DisplayModifyForm($oP, $aParams);
  2912. $oP->add("</div>\n");
  2913. $oP->add_ready_script($sReadyScript);
  2914. $oP->add_ready_script(
  2915. <<<EOF
  2916. $('.wizContainer button.cancel').unbind('click');
  2917. $('.wizContainer button.cancel').click( function() { window.location.href = '$sCancelUrl'; } );
  2918. EOF
  2919. );
  2920. } // Else no object selected ???
  2921. else
  2922. {
  2923. $oP->p("No object selected !, nothing to do");
  2924. }
  2925. }
  2926. /**
  2927. * Process the reply made from a form built with DisplayBulkModifyForm
  2928. */
  2929. public static function DoBulkModify($oP, $sClass, $aSelectedObj, $sCustomOperation, $bPreview, $sCancelUrl, $aContextData = array())
  2930. {
  2931. $aHeaders = array(
  2932. 'form::select' => array('label' => "<input type=\"checkbox\" onClick=\"CheckAll('.selectList:not(:disabled)', this.checked);\"></input>", 'description' => Dict::S('UI:SelectAllToggle+')),
  2933. 'object' => array('label' => MetaModel::GetName($sClass), 'description' => Dict::S('UI:ModifiedObject')),
  2934. 'status' => array('label' => Dict::S('UI:BulkModifyStatus'), 'description' => Dict::S('UI:BulkModifyStatus+')),
  2935. 'errors' => array('label' => Dict::S('UI:BulkModifyErrors'), 'description' => Dict::S('UI:BulkModifyErrors+')),
  2936. );
  2937. $aRows = array();
  2938. $oP->add("<div class=\"page_header\">\n");
  2939. $oP->add("<h1>".MetaModel::GetClassIcon($sClass)."&nbsp;".Dict::Format('UI:Modify_N_ObjectsOf_Class', count($aSelectedObj), MetaModel::GetName($sClass))."</h1>\n");
  2940. $oP->add("</div>\n");
  2941. $oP->set_title(Dict::Format('UI:Modify_N_ObjectsOf_Class', count($aSelectedObj), $sClass));
  2942. if (!$bPreview)
  2943. {
  2944. // Not in preview mode, do the update for real
  2945. $sTransactionId = utils::ReadPostedParam('transaction_id', '');
  2946. if (!utils::IsTransactionValid($sTransactionId, false))
  2947. {
  2948. throw new Exception(Dict::S('UI:Error:ObjectAlreadyUpdated'));
  2949. }
  2950. utils::RemoveTransaction($sTransactionId);
  2951. }
  2952. foreach($aSelectedObj as $iId)
  2953. {
  2954. $oObj = MetaModel::GetObject($sClass, $iId);
  2955. $aErrors = $oObj->UpdateObjectFromPostedForm('');
  2956. $bResult = (count($aErrors) == 0);
  2957. if ($bResult)
  2958. {
  2959. list($bResult, $aErrors) = $oObj->CheckToWrite(true /* Enforce Read-only fields */);
  2960. }
  2961. if ($bPreview)
  2962. {
  2963. $sStatus = $bResult ? Dict::S('UI:BulkModifyStatusOk') : Dict::S('UI:BulkModifyStatusError');
  2964. }
  2965. else
  2966. {
  2967. $sStatus = $bResult ? Dict::S('UI:BulkModifyStatusModified') : Dict::S('UI:BulkModifyStatusSkipped');
  2968. }
  2969. $sCSSClass = $bResult ? HILIGHT_CLASS_NONE : HILIGHT_CLASS_CRITICAL;
  2970. $sChecked = $bResult ? 'checked' : '';
  2971. $sDisabled = $bResult ? '' : 'disabled';
  2972. $aRows[] = array(
  2973. 'form::select' => "<input type=\"checkbox\" class=\"selectList\" $sChecked $sDisabled\"></input>",
  2974. 'object' => $oObj->GetHyperlink(),
  2975. 'status' => $sStatus,
  2976. 'errors' => '<p>'.($bResult ? '': implode('</p><p>', $aErrors)).'</p>',
  2977. '@class' => $sCSSClass,
  2978. );
  2979. if ($bResult && (!$bPreview))
  2980. {
  2981. $oObj->DBUpdate();
  2982. }
  2983. }
  2984. $oP->Table($aHeaders, $aRows);
  2985. if ($bPreview)
  2986. {
  2987. $sFormAction = $_SERVER['SCRIPT_NAME']; // No parameter in the URL, the only parameter will be the ones passed through the form
  2988. // Form to submit:
  2989. $oP->add("<form method=\"post\" action=\"$sFormAction\" enctype=\"multipart/form-data\">\n");
  2990. $aDefaults = utils::ReadParam('default', array());
  2991. $oAppContext = new ApplicationContext();
  2992. $oP->add($oAppContext->GetForForm());
  2993. foreach ($aContextData as $sKey => $value)
  2994. {
  2995. $oP->add("<input type=\"hidden\" name=\"{$sKey}\" value=\"$value\">\n");
  2996. }
  2997. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sCustomOperation\">\n");
  2998. $oP->add("<input type=\"hidden\" name=\"class\" value=\"$sClass\">\n");
  2999. $oP->add("<input type=\"hidden\" name=\"preview_mode\" value=\"0\">\n");
  3000. $oP->add("<input type=\"hidden\" name=\"transaction_id\" value=\"".utils::GetNewTransactionId()."\">\n");
  3001. $oP->add("<button type=\"button\" class=\"action cancel\" onClick=\"window.location.href='$sCancelUrl'\">".Dict::S('UI:Button:Cancel')."</button>&nbsp;&nbsp;&nbsp;&nbsp;\n");
  3002. $oP->add("<button type=\"submit\" class=\"action\"><span>".Dict::S('UI:Button:ModifyAll')."</span></button>\n");
  3003. foreach($_POST as $sKey => $value)
  3004. {
  3005. if (preg_match('/attr_(.+)/', $sKey, $aMatches))
  3006. {
  3007. // Beware: some values (like durations) are passed as arrays
  3008. if (is_array($value))
  3009. {
  3010. foreach($value as $vKey => $vValue)
  3011. {
  3012. $oP->add("<input type=\"hidden\" name=\"{$sKey}[$vKey]\" value=\"$vValue\">\n");
  3013. }
  3014. }
  3015. else
  3016. {
  3017. $oP->add("<input type=\"hidden\" name=\"$sKey\" value=\"$value\">\n");
  3018. }
  3019. }
  3020. }
  3021. $oP->add("</form>\n");
  3022. }
  3023. else
  3024. {
  3025. $oP->add("<button type=\"button\" onClick=\"window.location.href='$sCancelUrl'\" class=\"action\"><span>".Dict::S('UI:Button:Done')."</span></button>\n");
  3026. }
  3027. }
  3028. /**
  3029. * Perform all the needed checks to delete one (or more) objects
  3030. */
  3031. public static function DeleteObjects(WebPage $oP, $sClass, $aObjects, $bPreview, $sCustomOperation, $aContextData = array())
  3032. {
  3033. $oDeletionPlan = new DeletionPlan();
  3034. foreach($aObjects as $oObj)
  3035. {
  3036. if ($bPreview)
  3037. {
  3038. $oObj->CheckToDelete($oDeletionPlan);
  3039. }
  3040. else
  3041. {
  3042. $oObj->DBDeleteTracked(CMDBObject::GetCurrentChange(), null, $oDeletionPlan);
  3043. }
  3044. }
  3045. if ($bPreview)
  3046. {
  3047. if (count($aObjects) == 1)
  3048. {
  3049. $oObj = $aObjects[0];
  3050. $oP->add("<h1>".Dict::Format('UI:Delete:ConfirmDeletionOf_Name', $oObj->GetName())."</h1>\n");
  3051. }
  3052. else
  3053. {
  3054. $oP->add("<h1>".Dict::Format('UI:Delete:ConfirmDeletionOf_Count_ObjectsOf_Class', count($aObjects), MetaModel::GetName($sClass))."</h1>\n");
  3055. }
  3056. // Explain what should be done
  3057. //
  3058. $aDisplayData = array();
  3059. foreach ($oDeletionPlan->ListDeletes() as $sTargetClass => $aDeletes)
  3060. {
  3061. foreach ($aDeletes as $iId => $aData)
  3062. {
  3063. $oToDelete = $aData['to_delete'];
  3064. $bAutoDel = (($aData['mode'] == DEL_SILENT) || ($aData['mode'] == DEL_AUTO));
  3065. if (array_key_exists('issue', $aData))
  3066. {
  3067. if ($bAutoDel)
  3068. {
  3069. if (isset($aData['requested_explicitely']))
  3070. {
  3071. $sConsequence = Dict::Format('UI:Delete:CannotDeleteBecause', $aData['issue']);
  3072. }
  3073. else
  3074. {
  3075. $sConsequence = Dict::Format('UI:Delete:ShouldBeDeletedAtomaticallyButNotPossible', $aData['issue']);
  3076. }
  3077. }
  3078. else
  3079. {
  3080. $sConsequence = Dict::Format('UI:Delete:MustBeDeletedManuallyButNotPossible', $aData['issue']);
  3081. }
  3082. }
  3083. else
  3084. {
  3085. if ($bAutoDel)
  3086. {
  3087. if (isset($aData['requested_explicitely']))
  3088. {
  3089. $sConsequence = ''; // not applicable
  3090. }
  3091. else
  3092. {
  3093. $sConsequence = Dict::S('UI:Delete:WillBeDeletedAutomatically');
  3094. }
  3095. }
  3096. else
  3097. {
  3098. $sConsequence = Dict::S('UI:Delete:MustBeDeletedManually');
  3099. }
  3100. }
  3101. $aDisplayData[] = array(
  3102. 'class' => MetaModel::GetName(get_class($oToDelete)),
  3103. 'object' => $oToDelete->GetHyperLink(),
  3104. 'consequence' => $sConsequence,
  3105. );
  3106. }
  3107. }
  3108. foreach ($oDeletionPlan->ListUpdates() as $sRemoteClass => $aToUpdate)
  3109. {
  3110. foreach ($aToUpdate as $iId => $aData)
  3111. {
  3112. $oToUpdate = $aData['to_reset'];
  3113. if (array_key_exists('issue', $aData))
  3114. {
  3115. $sConsequence = Dict::Format('UI:Delete:CannotUpdateBecause_Issue', $aData['issue']);
  3116. }
  3117. else
  3118. {
  3119. $sConsequence = Dict::Format('UI:Delete:WillAutomaticallyUpdate_Fields', $aData['attributes_list']);
  3120. }
  3121. $aDisplayData[] = array(
  3122. 'class' => MetaModel::GetName(get_class($oToUpdate)),
  3123. 'object' => $oToUpdate->GetHyperLink(),
  3124. 'consequence' => $sConsequence,
  3125. );
  3126. }
  3127. }
  3128. $iImpactedIndirectly = $oDeletionPlan->GetTargetCount() - count($aObjects);
  3129. if ($iImpactedIndirectly > 0)
  3130. {
  3131. if (count($aObjects) == 1)
  3132. {
  3133. $oObj = $aObjects[0];
  3134. $oP->p(Dict::Format('UI:Delete:Count_Objects/LinksReferencing_Object', $iImpactedIndirectly, $oObj->GetName()));
  3135. }
  3136. else
  3137. {
  3138. $oP->p(Dict::Format('UI:Delete:Count_Objects/LinksReferencingTheObjects', $iImpactedIndirectly));
  3139. }
  3140. $oP->p(Dict::S('UI:Delete:ReferencesMustBeDeletedToEnsureIntegrity'));
  3141. }
  3142. if (($iImpactedIndirectly > 0) || $oDeletionPlan->FoundStopper())
  3143. {
  3144. $aDisplayConfig = array();
  3145. $aDisplayConfig['class'] = array('label' => 'Class', 'description' => '');
  3146. $aDisplayConfig['object'] = array('label' => 'Object', 'description' => '');
  3147. $aDisplayConfig['consequence'] = array('label' => 'Consequence', 'description' => Dict::S('UI:Delete:Consequence+'));
  3148. $oP->table($aDisplayConfig, $aDisplayData);
  3149. }
  3150. if ($oDeletionPlan->FoundStopper())
  3151. {
  3152. if ($oDeletionPlan->FoundSecurityIssue())
  3153. {
  3154. $oP->p(Dict::S('UI:Delete:SorryDeletionNotAllowed'));
  3155. }
  3156. elseif ($oDeletionPlan->FoundManualOperation())
  3157. {
  3158. $oP->p(Dict::S('UI:Delete:PleaseDoTheManualOperations'));
  3159. }
  3160. else // $bFoundManualOp
  3161. {
  3162. $oP->p(Dict::S('UI:Delete:PleaseDoTheManualOperations'));
  3163. }
  3164. $oAppContext = new ApplicationContext();
  3165. $oP->add("<form method=\"post\">\n");
  3166. $oP->add("<input type=\"hidden\" name=\"transaction_id\" value=\"".utils::ReadParam('transaction_id')."\">\n");
  3167. $oP->add("<input type=\"button\" onclick=\"window.history.back();\" value=\"".Dict::S('UI:Button:Back')."\">\n");
  3168. $oP->add("<input DISABLED type=\"submit\" name=\"\" value=\"".Dict::S('UI:Button:Delete')."\">\n");
  3169. $oP->add($oAppContext->GetForForm());
  3170. $oP->add("</form>\n");
  3171. }
  3172. else
  3173. {
  3174. if (count($aObjects) == 1)
  3175. {
  3176. $oObj = $aObjects[0];
  3177. $id = $oObj->GetKey();
  3178. $oP->p('<h1>'.Dict::Format('UI:Delect:Confirm_Object', $oObj->GetHyperLink()).'</h1>');
  3179. }
  3180. else
  3181. {
  3182. $oP->p('<h1>'.Dict::Format('UI:Delect:Confirm_Count_ObjectsOf_Class', count($aObjects), MetaModel::GetName($sClass)).'</h1>');
  3183. }
  3184. foreach($aObjects as $oObj)
  3185. {
  3186. $aKeys[] = $oObj->GetKey();
  3187. }
  3188. $oFilter = new DBObjectSearch($sClass);
  3189. $oFilter->AddCondition('id', $aKeys, 'IN');
  3190. $oSet = new CMDBobjectSet($oFilter);
  3191. $oP->add('<div id="0">');
  3192. CMDBAbstractObject::DisplaySet($oP, $oSet, array('display_limit' => false, 'menu' => false));
  3193. $oP->add("</div>\n");
  3194. $oP->add("<form method=\"post\">\n");
  3195. foreach ($aContextData as $sKey => $value)
  3196. {
  3197. $oP->add("<input type=\"hidden\" name=\"{$sKey}\" value=\"$value\">\n");
  3198. }
  3199. $oP->add("<input type=\"hidden\" name=\"transaction_id\" value=\"".utils::GetNewTransactionId()."\">\n");
  3200. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sCustomOperation\">\n");
  3201. $oP->add("<input type=\"hidden\" name=\"filter\" value=\"".$oFilter->Serialize()."\">\n");
  3202. $oP->add("<input type=\"hidden\" name=\"class\" value=\"$sClass\">\n");
  3203. foreach($aObjects as $oObj)
  3204. {
  3205. $oP->add("<input type=\"hidden\" name=\"selectObject[]\" value=\"".$oObj->GetKey()."\">\n");
  3206. }
  3207. $oP->add("<input type=\"button\" onclick=\"window.history.back();\" value=\"".Dict::S('UI:Button:Back')."\">\n");
  3208. $oP->add("<input type=\"submit\" name=\"\" value=\"".Dict::S('UI:Button:Delete')."\">\n");
  3209. $oAppContext = new ApplicationContext();
  3210. $oP->add($oAppContext->GetForForm());
  3211. $oP->add("</form>\n");
  3212. }
  3213. }
  3214. else // if ($bPreview)...
  3215. {
  3216. // Execute the deletion
  3217. //
  3218. if (count($aObjects) == 1)
  3219. {
  3220. $oObj = $aObjects[0];
  3221. $oP->add("<h1>".Dict::Format('UI:Title:DeletionOf_Object', $oObj->GetName())."</h1>\n");
  3222. }
  3223. else
  3224. {
  3225. $oP->add("<h1>".Dict::Format('UI:Title:BulkDeletionOf_Count_ObjectsOf_Class', count($aObjects), MetaModel::GetName($sClass))."</h1>\n");
  3226. }
  3227. // Security - do not allow the user to force a forbidden delete by the mean of page arguments...
  3228. if ($oDeletionPlan->FoundSecurityIssue())
  3229. {
  3230. throw new CoreException(Dict::S('UI:Error:NotEnoughRightsToDelete'));
  3231. }
  3232. if ($oDeletionPlan->FoundManualOperation())
  3233. {
  3234. throw new CoreException(Dict::S('UI:Error:CannotDeleteBecauseManualOpNeeded'));
  3235. }
  3236. if ($oDeletionPlan->FoundManualDelete())
  3237. {
  3238. throw new CoreException(Dict::S('UI:Error:CannotDeleteBecauseOfDepencies'));
  3239. }
  3240. // Report deletions
  3241. //
  3242. $aDisplayData = array();
  3243. foreach ($oDeletionPlan->ListDeletes() as $sTargetClass => $aDeletes)
  3244. {
  3245. foreach ($aDeletes as $iId => $aData)
  3246. {
  3247. $oToDelete = $aData['to_delete'];
  3248. if (isset($aData['requested_explicitely']))
  3249. {
  3250. $sMessage = Dict::S('UI:Delete:Deleted');
  3251. }
  3252. else
  3253. {
  3254. $sMessage = Dict::S('UI:Delete:AutomaticallyDeleted');
  3255. }
  3256. $aDisplayData[] = array(
  3257. 'class' => MetaModel::GetName(get_class($oToDelete)),
  3258. 'object' => $oToDelete->GetName(),
  3259. 'consequence' => $sMessage,
  3260. );
  3261. }
  3262. }
  3263. // Report updates
  3264. //
  3265. foreach ($oDeletionPlan->ListUpdates() as $sTargetClass => $aToUpdate)
  3266. {
  3267. foreach ($aToUpdate as $iId => $aData)
  3268. {
  3269. $oToUpdate = $aData['to_reset'];
  3270. $aDisplayData[] = array(
  3271. 'class' => MetaModel::GetName(get_class($oToUpdate)),
  3272. 'object' => $oToUpdate->GetHyperLink(),
  3273. 'consequence' => Dict::Format('UI:Delete:AutomaticResetOf_Fields', $aData['attributes_list']),
  3274. );
  3275. }
  3276. }
  3277. // Report automatic jobs
  3278. //
  3279. if ($oDeletionPlan->GetTargetCount() > 0)
  3280. {
  3281. if (count($aObjects) == 1)
  3282. {
  3283. $oObj = $aObjects[0];
  3284. $oP->p(Dict::Format('UI:Delete:CleaningUpRefencesTo_Object', $oObj->GetName()));
  3285. }
  3286. else
  3287. {
  3288. $oP->p(Dict::Format('UI:Delete:CleaningUpRefencesTo_Several_ObjectsOf_Class', count($aObjects), MetaModel::GetName($sClass)));
  3289. }
  3290. $aDisplayConfig = array();
  3291. $aDisplayConfig['class'] = array('label' => 'Class', 'description' => '');
  3292. $aDisplayConfig['object'] = array('label' => 'Object', 'description' => '');
  3293. $aDisplayConfig['consequence'] = array('label' => 'Done', 'description' => Dict::S('UI:Delete:Done+'));
  3294. $oP->table($aDisplayConfig, $aDisplayData);
  3295. }
  3296. }
  3297. }
  3298. }
  3299. ?>