31require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
42 public $module =
'hrm';
47 public $element =
'job';
52 public $table_element =
'hrm_job';
57 public $picto =
'technic';
60 const STATUS_DRAFT = 0;
61 const STATUS_VALIDATED = 1;
62 const STATUS_CANCELED = 9;
95 public $fields = array(
96 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'enabled' => 1,
'position' => 1,
'notnull' => 1,
'visible' => 0,
'noteditable' => 1,
'index' => 1,
'css' =>
'left',
'comment' =>
"Id"),
97 'label' => array(
'type' =>
'varchar(128)',
'label' =>
'Label',
'enabled' => 1,
'position' => 20,
'notnull' => 1,
'visible' => 1,
'index' => 1,
'searchall' => 1,
'showoncombobox' => 1,
'comment' =>
"Label of object"),
98 'description' => array(
'type' =>
'text',
'label' =>
'Description',
'enabled' => 1,
'position' => 21,
'notnull' => 0,
'visible' => 1,),
99 'date_creation' => array(
'type' =>
'datetime',
'label' =>
'DateCreation',
'enabled' => 1,
'position' => 500,
'notnull' => 1,
'visible' => -2,),
100 'tms' => array(
'type' =>
'timestamp',
'label' =>
'DateModification',
'enabled' => 1,
'position' => 501,
'notnull' => 0,
'visible' => -2,),
101 'deplacement' => array(
'type' =>
'select',
'required' => 1,
'label' =>
'NeedBusinessTravels',
'enabled' => 1,
'position' => 90,
'notnull' => 1,
'visible' => 1,
'arrayofkeyval' => array(0 =>
"No", 1 =>
"Yes"),
'default' =>
'0'),
102 'note_public' => array(
'type' =>
'html',
'label' =>
'NotePublic',
'enabled' => 1,
'position' => 70,
'notnull' => 0,
'visible' => 0,),
103 'note_private' => array(
'type' =>
'html',
'label' =>
'NotePrivate',
'enabled' => 1,
'position' => 71,
'notnull' => 0,
'visible' => 0,),
104 'fk_user_creat' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'UserAuthor',
'enabled' => 1,
'position' => 510,
'notnull' => 1,
'visible' => -2,
'foreignkey' =>
'user.rowid',),
105 'fk_user_modif' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'UserModif',
'enabled' => 1,
'position' => 511,
'notnull' => -1,
'visible' => -2,),
130 public $fk_user_creat;
134 public $fk_user_modif;
141 public $fk_element =
'fk_job';
146 protected $childtables = array(
147 'hrm_evaluation' => [
'name' =>
'Evaluation'],
148 'hrm_job_user' => [
'name' =>
'Job'],
156 protected $childtablesoncascade = array(
"@SkillRank:hrm/class/skillrank.class.php:fk_object:(objecttype:=:'job')");
172 global
$conf, $langs;
176 $this->ismultientitymanaged = 0;
177 $this->isextrafieldmanaged = 1;
180 $this->fields[
'rowid'][
'visible'] = 0;
182 if (!
isModEnabled(
'multicompany') && isset($this->fields[
'entity'])) {
183 $this->fields[
'entity'][
'enabled'] = 0;
193 foreach ($this->fields as $key => $val) {
194 if (isset($val[
'enabled']) && empty($val[
'enabled'])) {
195 unset($this->fields[$key]);
200 if (is_object($langs)) {
201 foreach ($this->fields as $key => $val) {
202 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
203 foreach ($val[
'arrayofkeyval'] as $key2 => $val2) {
204 $this->fields[$key][
'arrayofkeyval'][$key2] = $langs->trans($val2);
224 return $resultcreate;
236 global $langs, $extrafields;
246 $result =
$object->fetchCommon($fromid);
254 $object->ref = empty($this->fields[
'ref'][
'default']) ?
"Copy_Of_".$object->ref : $this->fields[
'ref'][
'default'];
257 $object->date_modification =
null;
260 if (is_array(
$object->array_options) && count(
$object->array_options) > 0) {
261 $extrafields->fetch_name_optionals_label($this->table_element);
262 foreach (
$object->array_options as $key => $option) {
263 $shortkey = preg_replace(
'/options_/',
'', $key);
264 if (!empty($extrafields->attributes[$this->table_element][
'unique'][$shortkey])) {
265 unset(
$object->array_options[$key]);
271 $object->context[
'createfromclone'] =
'createfromclone';
272 $result =
$object->createCommon($user);
287 if (property_exists($this,
'fk_soc') && $this->fk_soc ==
$object->socid) {
294 unset(
$object->context[
'createfromclone']);
301 $this->db->rollback();
313 public function fetch($id, $ref =
null)
327 $this->lines = array();
346 public function fetchAll($sortorder =
'', $sortfield =
'', $limit = 0, $offset = 0, $filter =
'', $filtermode =
'AND')
354 $sql .=
' FROM '.MAIN_DB_PREFIX.$this->table_element.
' as t';
355 if (isset($this->ismultientitymanaged) && $this->ismultientitymanaged == 1) {
356 $sql .=
' WHERE t.entity IN ('.getEntity($this->element).
')';
358 $sql .=
' WHERE 1 = 1';
363 $sql .= forgeSQLFromUniversalSearchCriteria($filter, $errormessage);
365 $this->errors[] = $errormessage;
366 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
370 if (!empty($sortfield)) {
371 $sql .= $this->db->order($sortfield, $sortorder);
373 if (!empty($limit)) {
374 $sql .=
' '.$this->db->plimit($limit, $offset);
377 $resql = $this->db->query($sql);
379 $num = $this->db->num_rows($resql);
381 while ($i < ($limit ? min($limit, $num) : $num)) {
382 $obj = $this->db->fetch_object($resql);
384 $record =
new self($this->db);
385 $record->setVarsFromFetchObj($obj);
387 $records[$record->id] = $record;
391 $this->db->free($resql);
395 $this->errors[] =
'Error '.$this->db->lasterror();
396 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
421 public function delete(
User $user, $notrigger = 0)
438 $this->error =
'ErrorDeleteLineNotAllowedByObjectStatus';
455 global
$conf, $langs;
457 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
462 if ($this->
status == self::STATUS_VALIDATED) {
463 dol_syslog(get_class($this).
"::validate action abandoned: already validated", LOG_WARNING);
480 if (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref)) {
481 $num = $this->getNextNumRef();
485 $this->newref = $num;
489 $sql =
"UPDATE ".MAIN_DB_PREFIX.$this->table_element;
490 $sql .=
" SET ref = '".$this->db->escape($num).
"',";
491 $sql .=
" status = ".self::STATUS_VALIDATED;
492 if (!empty($this->fields[
'date_validation'])) {
493 $sql .=
", date_validation = '".$this->db->idate($now).
"'";
495 if (!empty($this->fields[
'fk_user_valid'])) {
496 $sql .=
", fk_user_valid = ".((int) $user->id);
498 $sql .=
" WHERE rowid = ".((int) $this->
id);
500 dol_syslog(get_class($this).
"::validate()", LOG_DEBUG);
501 $resql = $this->db->query($sql);
504 $this->error = $this->db->lasterror();
508 if (!$error && !$notrigger) {
510 $result = $this->call_trigger(
'HRM_JOB_VALIDATE', $user);
519 $this->oldref = $this->ref;
522 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
524 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filename = CONCAT('".$this->db->escape($this->newref).
"', SUBSTR(filename, ".(strlen($this->
ref) + 1).
")), filepath = 'job/".$this->db->escape($this->newref).
"'";
525 $sql .=
" WHERE filename LIKE '".$this->db->escape($this->
ref).
"%' AND filepath = 'job/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
526 $resql = $this->db->query($sql);
529 $this->error = $this->db->lasterror();
531 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'job/".$this->db->escape($this->newref).
"'";
532 $sql .=
" WHERE filepath = 'job/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
533 $resql = $this->db->query($sql);
536 $this->error = $this->db->lasterror();
542 $dirsource =
$conf->hrm->dir_output.
'/job/'.$oldref;
543 $dirdest =
$conf->hrm->dir_output.
'/job/'.$newref;
544 if (!$error && file_exists($dirsource)) {
545 dol_syslog(get_class($this).
"::validate() rename dir ".$dirsource.
" into ".$dirdest);
547 if (@rename($dirsource, $dirdest)) {
550 $listoffiles =
dol_dir_list(
$conf->hrm->dir_output.
'/job/'.$newref,
'files', 1,
'^'.preg_quote($oldref,
'/'));
551 foreach ($listoffiles as $fileentry) {
552 $dirsource = $fileentry[
'name'];
553 $dirdest = preg_replace(
'/^'.preg_quote($oldref,
'/').
'/', $newref, $dirsource);
554 $dirsource = $fileentry[
'path'].
'/'.$dirsource;
555 $dirdest = $fileentry[
'path'].
'/'.$dirdest;
556 @rename($dirsource, $dirdest);
566 $this->
status = self::STATUS_VALIDATED;
573 $this->db->rollback();
592 $lastpos = array_shift($Tab);
609 $TPosition = $position->getForUser($userid);
610 foreach ($TPosition as $UPosition) {
611 $TReturn[$UPosition->Job->rowid] = $UPosition->Job->ref;
626 if ($this->
status <= self::STATUS_DRAFT) {
637 return $this->
setStatusCommon($user, self::STATUS_DRAFT, $notrigger,
'JOB_UNVALIDATE');
647 public function cancel($user, $notrigger = 0)
650 if ($this->
status != self::STATUS_VALIDATED) {
661 return $this->
setStatusCommon($user, self::STATUS_CANCELED, $notrigger,
'JOB_CANCEL');
671 public function reopen($user, $notrigger = 0)
674 if ($this->
status != self::STATUS_CANCELED) {
685 return $this->
setStatusCommon($user, self::STATUS_VALIDATED, $notrigger,
'JOB_REOPEN');
698 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
700 global
$conf, $langs, $hookmanager;
702 if (!empty(
$conf->dol_no_mouse_hover)) {
708 $label =
img_picto(
'', $this->picto).
' <u>'.$langs->trans(
"JobProfile").
'</u>';
709 if (isset($this->
status)) {
710 $label .=
' '.$this->getLibStatut(5);
713 $label .=
'<b>'.$langs->trans(
'Label').
':</b> '.$this->label;
715 $url =
dol_buildpath(
'/hrm/job_card.php', 1).
'?id='.$this->id;
717 if ($option !=
'nolink') {
719 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
720 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
721 $add_save_lastsearch_values = 1;
723 if ($add_save_lastsearch_values) {
724 $url .=
'&save_lastsearch_values=1';
729 if (empty($notooltip)) {
731 $label = $langs->trans(
"ShowJob");
732 $linkclose .=
' alt="'.dolPrintHTMLForAttribute($label).
'"';
734 $linkclose .=
' title="'.dolPrintHTMLForAttribute($label).
'"';
735 $linkclose .=
' class="classfortooltip'.($morecss ?
' '.$morecss :
'').
'"';
737 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
740 if ($option ==
'nolink') {
741 $linkstart =
'<span';
743 $linkstart =
'<a href="'.$url.
'"';
745 $linkstart .= $linkclose.
'>';
746 if ($option ==
'nolink') {
747 $linkend =
'</span>';
752 $result .= $linkstart;
754 if (empty($this->showphoto_on_popup)) {
756 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
760 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
762 list($class, $module) = explode(
'@', $this->picto);
765 $filename = $filearray[0][
'name'];
766 if (!empty($filename)) {
767 $pospoint = strpos($filearray[0][
'name'],
'.');
769 $pathtophoto = $class.
'/'.$this->label.
'/thumbs/'.substr($filename, 0, $pospoint).
'_mini'.substr($filename, $pospoint);
771 $result .=
'<div class="floatleft inline-block valignmiddle divphotoref"><div class="photoref"><img class="photo'.$module.
'" alt="No photo" border="0" src="'.DOL_URL_ROOT.
'/viewimage.php?modulepart='.$module.
'&entity='.
$conf->entity.
'&file='.urlencode($pathtophoto).
'"></div></div>';
773 $result .=
'<div class="floatleft inline-block valignmiddle divphotoref"><img class="photouserphoto userphoto" alt="No photo" border="0" src="'.DOL_URL_ROOT.
'/viewimage.php?modulepart='.$module.
'&entity='.
$conf->entity.
'&file='.urlencode($pathtophoto).
'"></div>';
778 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
783 if ($withpicto != 2) {
784 $result .= $this->label;
790 global $action, $hookmanager;
791 $hookmanager->initHooks(array(
'jobdao'));
792 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
793 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
795 $result = $hookmanager->resPrint;
797 $result .= $hookmanager->resPrint;
837 $sql =
'SELECT rowid, date_creation as datec, tms as datem,';
838 $sql .=
' fk_user_creat, fk_user_modif';
839 $sql .=
' FROM '.MAIN_DB_PREFIX.$this->table_element.
' as t';
840 $sql .=
' WHERE t.rowid = '.((int) $id);
841 $result = $this->db->query($sql);
843 if ($this->db->num_rows($result)) {
844 $obj = $this->db->fetch_object($result);
846 $this->
id = $obj->rowid;
848 $this->user_creation_id = $obj->fk_user_creat;
849 $this->user_modification_id = $obj->fk_user_modif;
850 $this->date_creation = $this->db->jdate($obj->datec);
851 $this->date_modification = empty($obj->datem) ?
'' : $this->db->jdate($obj->datem);
854 $this->db->free($result);
882 $this->lines = array();
884 $objectline =
new JobLine($this->db);
885 $result = $objectline->fetchAll(
'ASC',
'position', 0, 0,
'(fk_job:=:'.((
int) $this->
id).
')');
887 if (is_numeric($result)) {
891 $this->lines = $result;
901 public function getNextNumRef()
903 global $langs,
$conf;
907 $conf->global->hrm_JOB_ADDON =
'mod_job_standard';
917 $dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
918 foreach ($dirmodels as $reldir) {
922 $mybool = ((bool) @include_once $dir.$file) || $mybool;
930 if (class_exists($classname)) {
931 $obj =
new $classname();
932 '@phan-var-force ModeleNumRefEvaluation $obj';
934 $numref = $obj->getNextValue($this);
936 if ($numref !=
'' && $numref !=
'-1') {
939 $this->error = $obj->error;
944 print $langs->trans(
"Error").
" ".$langs->trans(
"ClassNotFound").
' '.$classname;
948 print $langs->trans(
"ErrorNumberingModuleNotSetup", $this->element);
964 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
966 global
$conf, $langs;
973 $modele =
'standard_job';
975 if (!empty($this->model_pdf)) {
976 $modele = $this->model_pdf;
982 $modelpath =
"core/modules/hrm/doc/";
984 if (!empty($modele)) {
985 $result = $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
1000 global $selected, $langs;
1002 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
1004 $return =
'<div class="box-flex-item box-flex-grow-zero">';
1005 $return .=
'<div class="info-box info-box-sm">';
1006 $return .=
'<span class="info-box-icon bg-infobox-action">';
1008 $return .=
'</span>';
1009 $return .=
'<div class="info-box-content">';
1010 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">' . $this->
getNomUrl(0) .
'</span>';
1011 if ($selected >= 0) {
1012 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1020 $return .=
'<br><span class="info-box-label ">' .
dol_trunc($this->
description, 25) .
'</span>';
1022 $return .=
'</div>';
1023 $return .=
'</div>';
1024 $return .=
'</div>';
1038 $skillranks = array();
1039 $sql =
"SELECT rowid";
1040 $sql .=
" FROM ".MAIN_DB_PREFIX.
"hrm_skillrank";
1041 $sql .=
" WHERE fk_object = ".((int) $id);
1043 $resql = $this->db->query($sql);
1045 $num = $this->db->num_rows($resql);
1048 $obj = $this->db->fetch_object($resql);
1049 $skillranks[] = $obj->rowid;
1052 $this->db->free($resql);
1061require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobjectline.class.php';
1080 $this->isextrafieldmanaged = 0;
if(! $sortfield) if(! $sortorder) $object
Parent class of all other business classes (invoices, contracts, proposals, orders,...
deleteLineCommon(User $user, $idline, $notrigger=0)
Delete a line of object in database.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
setErrorsFromObject($object)
setErrorsFromObject
createCommon(User $user, $notrigger=0)
Create object in the database.
getFieldList($alias='', $excludefields=array())
Function to concat keys of fields.
updateCommon(User $user, $notrigger=0)
Update object into database.
setStatusCommon($user, $status, $notrigger=0, $triggercode='')
Set to a status.
initAsSpecimenCommon()
Initialise object with example values Id must be 0 if object instance is a specimen.
copy_linked_contact($objFrom, $source='internal')
Copy contact from one element to current.
fetchLinesCommon($morewhere='', $noextrafields=0)
Load object in memory from the database.
fetchCommon($id, $ref=null, $morewhere='', $noextrafields=0)
Load object in memory from the database.
deleteCommon(User $user, $notrigger=0, $forcechilddeletion=0)
Delete object in database.
Parent class for class inheritance lines of business objects This class is useless for the moment so ...
Class to manage Dolibarr database access.
getLastJobForUser($fk_user)
Get the last occupied position for a user.
fetchLines()
Load object lines in memory from the database.
cancel($user, $notrigger=0)
Set cancel status.
__construct(DoliDB $db)
Constructor.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
setDraft($user, $notrigger=0)
Set draft status.
update(User $user, $notrigger=0)
Update object into database.
validate($user, $notrigger=0)
Validate object.
getLibStatut($mode=0)
Return the label of the status.
getLinesArray()
Create an array of lines.
fetch($id, $ref=null)
Load object in memory from the database.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
LibStatut($status, $mode=0)
Return the status.
deleteLine(User $user, $idline, $notrigger=0)
Delete a line of object in database.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionally the picto)
createFromClone(User $user, $fromid)
Clone an object into another one.
reopen($user, $notrigger=0)
Set back to validated status.
getSkillRankForJob($id)
function for get required skills associate to job object
create(User $user, $notrigger=0)
Create object into database.
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load list of objects in memory from the database.
getForUser($userid)
Get array of occupied positions for a user.
getKanbanView($option='', $arraydata=null)
Return clickable link of object (with eventually picto)
info($id)
Load the info information in the object.
__construct(DoliDB $db)
Constructor.
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php