]> dev.renevier.net Git - syj.git/blob - application/views/scripts/idx/index.phtml
1e34d35f8791c35b93e02c0f3d6247633366f2fa
[syj.git] / application / views / scripts / idx / index.phtml
1 <noscript>
2     <style type="text/css">
3         #map, #message, #data_controls, #login_controls, #user_area, #login_area, #newpwd_area {
4             display: none;
5         }
6     </style>
7
8     <p><?php echo $this->translate('SYJ needs javascript. Please activate scripts in your browser.');?></p>
9 </noscript>
10
11 <div id="map"></div>
12 <div id="map-overlay"></div>
13
14 <?php
15 $message = "";
16 $msgclass = "";
17 if ($this->errorMsg) {
18     $message .= $this->errorMsg;
19     $msgclass = "error";
20 } else if (!$this->path and !$this->loggedUser) {
21     $message .= $this->translate('To create a journey, press <strong>"start a route"</strong> button, then click on the map to add points. To delete a point, hold shift pressed while clicking on it.');
22     $message .= "<br>";
23     $message .= $this->translate('You can zoom and move the map with the controls in the top left corner.');
24     $message .= "<br>";
25     $message .= $this->translate('When you have finished a path, press "create", button.');
26     $msgclass = "info optional";
27 }
28 ?>
29
30 <div id="message" class="message <?php echo $msgclass?>">
31     <?php echo $message ?>
32 </div>
33
34
35 <div id="path-length" class="menu-group">
36     <div id="path-length-title" class="info-title"><?php echo $this->translate('route length')?></div>
37     <div id="path-length-content">
38     </div>
39 </div>
40
41 <div id="menu">
42
43     <?php echo $this->localeSwitcher(); ?>
44
45     <div id="login_controls" class="menu-group">
46         <div>
47             <div class="menu-item">
48             <?php
49                 echo $this->anchor('login', $this->translate('login'), array('id' => 'login_control_anchor'));
50                 $anchortext = sprintf("<span id=\"account-create-anchor\">%s</span><span id=\"account-info\"><br>%s</span>",
51                                       $this->translate('create an account'),
52                                       $this->translate('Whith an account, you can manage and modify your routes'));
53                 ?>
54                </div>
55                <div class="menu-item">
56                <?php
57                 echo $this->anchor('', $anchortext, array('id' => 'user_control_anchor'), false);
58             ?>
59             </div>
60         </div>
61         <div>
62             <?php echo $this->logoutLink(); ?>
63         </div>
64     </div>
65
66     <?php if (isset($this->path)) { ?>
67         <div id="path-infos" class="menu-group">
68             <div class="menu-item">
69                 <div id="path-infos-toggler"><a href="" id="path-infos-anchor"><?php echo $this->translate("route infos")?></a></div>
70              </div>
71                 <div id="path-infos-content" class="menu-item">
72
73                     <div id="path-directlink-title" class="info-title"><?php echo $this->translate("direct link")?></div>
74                     <div id="path-directlink-content" class="info-content"><?php
75                             $urlcomp = urlencode($this->path->urlcomp ?: $this->path->id);
76                             $href = $this->baseUrl() . '/idx/' . $urlcomp . '?format=raw';
77                             printf('<a href="%s" title="%s">%s</a>',
78                                         $href,
79                                         $this->translate('direct link'),
80                                         $this->escape($href));
81                         ?></div>
82
83                     <div id="path-export-title" class="info-title"><?php echo $this->translate("export")?></div>
84                     <div id="path-export-content" class="info-content"><?php
85                        $fileName = $this->path->title ?: $this->path->id;
86                        $href = $this->baseUrl() . '/geom/' . rawurlencode($fileName) . '.kml';
87                        printf('<a href="%s" title="%s">%s</a>',
88                                         $href,
89                                         $this->translate('kml export'),
90                                         $this->translate('kml export'));
91
92                         print '<br>';
93                        $href = $this->baseUrl() . '/geom/' . rawurlencode($fileName) . '.gpx';
94                        printf('<a href="%s" title="%s">%s</a>',
95                                         $href,
96                                         $this->translate('gpx export'),
97                                         $this->translate('gpx export'));
98                        ?>
99
100
101                 </div>
102             </div>
103         </div>
104     <?php }?>
105
106     <div id="data_controls">
107         <div id="data_controls_btns">
108
109     <?php if (isset($this->path)) { ?>
110         <input id="clone-btn" name="clone-btn" type="button" value="<?php echo $this->translate('duplicate');?>">
111         <br>
112         <input id="edit-btn" name="edit-btn" type="button" value="<?php echo $this->translate('edit');?>">
113     <?php } else {?>
114
115         <form id="nominatim-form" action="nominatim" method="get">
116             <div><a id="nominatim-label" href=""><?php echo $this->translate('Search a place')?></a></div>
117             <div id="nominatim-message" class="message"></div>
118             <div id="nominatim-controls">
119             <input name="nominatim-search" id="nominatim-search">
120             <input type="submit" id="nominatim-submit" name="nominatim-submit" value="<?php echo $this->translate('Ok')?>">
121             <img id="nominatim-throbber" src="icons/throbber.gif">
122             </div>
123
124         </form>
125
126         <input id="create-btn" name="create-btn" type="button" value="<?php echo $this->translate('start a route');?>">
127     <?php } ?>
128         </div>
129
130     <?php
131         print $this->geomform;
132     ?>
133
134 </div>
135
136 <?php if (!isset($this->path)) {?>
137             <div id="nominatim-suggestions">
138             <div id="nominatim-suggestions-title"><?php echo $this->translate('more results')?></div>
139             <ul id="nominatim-suggestions-list"></ul>
140             </div>
141 <?php }?>
142
143
144 </div>
145
146 <div id="newpwd_area" class="modal">
147     <div id="newpwd_message" class="message"></div>
148     <?php
149         print $this->newpwdform;
150     ?>
151 </div>
152
153 <div id="user_area" class="modal">
154     <div id="user_message" class="message"></div>
155     <?php
156         print $this->userform;
157     ?>
158 </div>
159
160 <div id="login_area" class="modal">
161    <div id="login_message" class="message"></div>
162
163 <?php
164   print $this->loginform;
165 ?>
166
167 <p id="login_area_create"><a id="login_area_create_anchor" href=""><?php echo $this->translate('create an account')?></a></p>
168
169 </div>
170
171 <div id="termsofusearea" class="modal">
172   <iframe id="termsofuseiframe" width="100%" height="100%" frameborder="0"></iframe>
173 </div>