X-Git-Url: https://dev.renevier.net/?a=blobdiff_plain;f=application%2Fcontrollers%2FIdxController.php;h=d3c4bcb20238c6f7727d6b1392cdb806fb3f4664;hb=ecc2a5e8ea444b4a0f2384355e4fa21c6571ab2e;hp=9dc4300fbd634c2de2c77ea6e9d776b51d9eae90;hpb=ce001229accb2aff799560eec402344f0dbb1762;p=syj.git diff --git a/application/controllers/IdxController.php b/application/controllers/IdxController.php index 9dc4300..d3c4bcb 100644 --- a/application/controllers/IdxController.php +++ b/application/controllers/IdxController.php @@ -39,8 +39,9 @@ class IdxController extends Zend_Controller_Action $title = $path->displayTitle; $this->view->path = $path; $geomform->geom_title->setValue($path->title); - $geomform->geom_data->setValue((string)$path->geom); $loginform->login_geom_id->setValue((string)$path->id); + $jsgeom = new phptojs\JsObject('gInitialGeom', array('data' => (string) $path->geom)); + $this->view->headScript()->prependScript((string) $jsgeom); } else { $geomform->setAction('path'); $extent = new phptojs\JsObject('gMaxExtent', $this->_helper->syjGeoip($this->getRequest()->getClientIp(true))); @@ -73,6 +74,7 @@ class IdxController extends Zend_Controller_Action if ($path->creator) { $loggedinfo->creatorname = $this->view->escape((string)$path->creator->pseudo); } + $loggedinfo->pathid = (string)$path->id; } else { $loggedinfo->iscreator = true; } @@ -106,6 +108,10 @@ class IdxController extends Zend_Controller_Action 'pseudoChecking' => __("checking availibilty"), 'availablePseudo' => __("available pseudo"), 'unavailablePseudo' => __("unavailable pseudo"), + 'editAction' => __("edit"), + 'createAction' => __("create"), + 'cloneAction' => __("duplicate"), + 'unsavedConfirmExit' => __("You have an unsaved route"), ); }