]> dev.renevier.net Git - syj.git/blob - application/views/scripts/idx/index.phtml
routes profile
[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                 </div>
100
101                 <?php if ($this->profileActive) { ?>
102                 <div id="path-profile-title" class="info-title"><?php echo $this->translate("altitude profile")?></div>
103                 <div id="path-profile-content" class="info-content"><?php
104                         $urlcomp = urlencode($this->path->urlcomp ?: $this->path->id);
105                         $href = $this->baseUrl() . '/profile/' . $urlcomp . '.png';
106                         $imgsrc =  $this->addParamToUrl($href, 'size', 'small', true);
107                         printf('<a href="%s"><img src="%s"></a>', $href, $imgsrc);
108                 ?></div>
109                 <?php }?>
110
111
112             </div>
113         </div>
114     <?php }?>
115
116     <div id="data_controls">
117         <div id="data_controls_btns">
118
119     <?php if (isset($this->path)) { ?>
120         <input id="clone-btn" name="clone-btn" type="button" value="<?php echo $this->translate('duplicate');?>">
121         <br>
122         <input id="edit-btn" name="edit-btn" type="button" value="<?php echo $this->translate('edit');?>">
123     <?php } else {?>
124
125         <form id="nominatim-form" action="nominatim" method="get">
126             <div><a id="nominatim-label" href=""><?php echo $this->translate('Search a place')?></a></div>
127             <div id="nominatim-message" class="message"></div>
128             <div id="nominatim-controls">
129             <input name="nominatim-search" id="nominatim-search">
130             <input type="submit" id="nominatim-submit" name="nominatim-submit" value="<?php echo $this->translate('Ok')?>">
131             <img id="nominatim-throbber" src="icons/throbber.gif">
132             </div>
133
134         </form>
135
136         <input id="create-btn" name="create-btn" type="button" value="<?php echo $this->translate('start a route');?>">
137     <?php } ?>
138         </div>
139
140     <?php
141         print $this->geomform;
142     ?>
143
144 </div>
145
146 <?php if (!isset($this->path)) {?>
147             <div id="nominatim-suggestions">
148             <div id="nominatim-suggestions-title"><?php echo $this->translate('more results')?></div>
149             <ul id="nominatim-suggestions-list"></ul>
150             </div>
151 <?php }?>
152
153
154 </div>
155
156 <div id="newpwd_area" class="modal">
157     <div id="newpwd_message" class="message"></div>
158     <?php
159         print $this->newpwdform;
160     ?>
161 </div>
162
163 <div id="user_area" class="modal">
164     <div id="user_message" class="message"></div>
165     <?php
166         print $this->userform;
167     ?>
168 </div>
169
170 <div id="login_area" class="modal">
171    <div id="login_message" class="message"></div>
172
173 <?php
174   print $this->loginform;
175 ?>
176
177 <p id="login_area_create"><a id="login_area_create_anchor" href=""><?php echo $this->translate('create an account')?></a></p>
178
179 </div>
180
181 <div id="termsofusearea" class="modal">
182   <iframe id="termsofuseiframe" width="100%" height="100%" frameborder="0"></iframe>
183 </div>