Subversion Repositories PHPX

Rev

Rev 14 | Rev 17 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14 Rev 16
Line 106... Line 106...
106
   
106
   
107
    foreach ($this->items as $feature)
107
    foreach ($this->items as $feature)
108
    {
108
    {
109
      if ($feature instanceof Feature)
109
      if ($feature instanceof Feature)
110
      {
110
      {
-
 
111
        /*
-
 
112
         * TODO: Disabled header repetition until footnote ref. name/ID
-
 
113
         * problem has been solved
-
 
114
         */
111
        if ($repeatHeaders
115
//        if ($repeatHeaders
112
            && $counter > 1
116
//            && $counter > 1
113
            && $counter % $headerRepeat === 0)
117
//            && $counter % $headerRepeat === 0)
114
        {
118
//        {
115
?>
119
//          echo <<<HTML
116
        <tr class="header">
120
//        <tr class="header">
117
          <th>Feature</th>
121
//          <th>Feature</th>
118
          <?php $this->printHeaders(); ?>
122
//          {$this->printHeaders()}
119
        </tr>
123
//        </tr>
120
<?php
124
//HTML;
121
        }
125
//        }
122
       
126
       
123
        $feature->printMe();
127
        $feature->printMe();
124
       
128
       
125
        $counter++;
129
        $counter++;
126
      }
130
      }