]> git.rkrishnan.org Git - .emacs.d.git/blob - emacs/nxhtml/tests/in/400415-index.phtml
remove toolbar and menubar
[.emacs.d.git] / emacs / nxhtml / tests / in / 400415-index.phtml
1 <h2>CLEO Memorandum Assignment #1. What&apos;s Next?</h2>
2 <table cellpadding="0" cellspacing="0">
3         <thead>
4                 <tr>
5                         <th class="first author">Activity</th>
6 <!--                    <th class="time">Progress</th> -->
7                 </tr>
8         </thead>
9
10         <tbody>
11                 <?php
12                 $AM = $this->activity_model; 
13                 foreach ($this->focus_transitions as $tran => $satisfied) {
14                         $props = $AM->getTransitionProps($tran);
15                         $url_params = $props['url_params'];
16                         $link_text = $props['link_text'];
17                         if (null !== $url_params and null !== $link_text) {
18                                 // TODO Add $sat class to <td>, style accordingly.
19                 ?>
20                         <tr>
21                                 <td class="first author"><a href="<?= 
22                                         $this->url($url_params) ?>"><?= $link_text ?></a></td>
23 <!--                            <td><?=
24                                 // TODO $props['allotted']
25                                 $satisfied ? '&#x2714;' : '&nbsp;'
26                                 ?></td> -->
27                         </tr>
28                 <?php }} ?>
29         </tbody>
30 </table>
31 <!--
32 <?php
33 print_r($this->acts);
34 print_r($this->states);
35 print_r($this->payload);
36 print_r($this->activity_model);
37 ?>
38 -->
39 <?php
40 $foo = <<<MY_FOO
41 I am a heredoc
42 MY_FOO;
43 ?>