Changeset 252 for trunk/aktuality


Ignore:
Timestamp:
Oct 2, 2009, 7:53:41 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Upraven styl aktualit.
Location:
trunk/aktuality
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/aktuality/index.php

    r236 r252  
    3838            if($Row['Name'] == '') $Author = $Row['Author'];
    3939              else $Author = $Row['Name'];
    40             $Output .= '<div style="border: thin dotted #97ADFF;  background: #F6F7FF; margin-top: 5px; padding: 0px 5px 5px 5px;"><div style="padding-bottom: 1px; border-bottom-width: 1; border-bottom-style: solid; border-bottom-color: silver;"><strong>'.$Row['Title'].' ('.HumanDate($Row['Date']).', '.$Author.')</strong>';
     40            $Output .= '<div class="Panel"><div class="Title">'.$Row['Title'].' ('.HumanDate($Row['Date']).', '.$Author.')';
    4141            if($this->System->Modules['User']->User['Id'] == $Row['User'])
    4242            {
     43              $Output .= '<div class="Action">';
    4344              $Output .= '&nbsp;<a href="index.php?action=del&amp;category='.$Category.'&amp;id='.$Row['Id'].'">Smazat</a>';
    4445              $Output .= '&nbsp;<a href="index.php?action=edit&amp;category='.$Category.'&amp;id='.$Row['Id'].'">Editovat</a>';
    45             }
    46             $Output .= '</div>'.$News->ModifyContent($Row['Content']).'<br />';
     46              $Output .= '</div>';
     47            }
     48            $Output .= '</div><div class="Content">'.$News->ModifyContent($Row['Content']).'<br />';
    4749            if($Row['Enclosure'] != '')
    4850            {
     
    5456              }
    5557            }
    56             $Output .= '</div>';
     58            $Output .= '</div></div>';
    5759          } else $Output .= 'Položka nenalezena.';
    5860        }
     
    181183            if($Row['Name'] == '') $Author = $Row['Author'];
    182184              else $Author = $Row['Name'];
    183             $Output .= '<div style="border: thin dotted #97ADFF; background: #F6F7FF; margin-top: 5px; padding: 0px 5px 5px 5px;"><div style="padding-bottom: 1px; border-bottom-width: 1; border-bottom-style: solid; border-bottom-color: silver;"><strong><a href="?action=view&amp;id='.$Row['Id'].'">'.$Row['Title'].'</a> ('.HumanDate($Row['Date']).', '.$Author.')</strong>';
     185            $Output .= '<div class="Panel"><div class="Title"><a href="?action=view&amp;id='.$Row['Id'].'">'.$Row['Title'].'</a> ('.HumanDate($Row['Date']).', '.$Author.')';
    184186            if($this->System->Modules['User']->User['Id'] == $Row['User'])
    185187            {
     188              $Output .= '<div class="Action">';
    186189              $Output .= '&nbsp;<a href="index.php?action=del&amp;category='.$Category.'&amp;id='.$Row['Id'].'">Smazat</a>';
    187190              $Output .= '&nbsp;<a href="index.php?action=edit&amp;category='.$Category.'&amp;id='.$Row['Id'].'">Editovat</a>';
    188             }
    189             $Output .= '</div>'.$News->ModifyContent($Row['Content']).'<br />';
     191              $Output .= '</div>';
     192            }
     193            $Output .= '</div><div class="Content">'.$News->ModifyContent($Row['Content']).'<br />';
    190194            if($Row['Enclosure'] != '')
    191195            {
     
    197201              }
    198202            }
    199             $Output .= '</div>';
     203            $Output .= '</div></div>';
    200204          }
    201205          $Output .= PagesList('?category='.$Category.'&amp;page=', $Page, $PageMax, $PerPage);
  • trunk/aktuality/news.php

    r251 r252  
    4949    $DbResult = $Database->select('NewsCategory', '*', 'Id='.$Category);
    5050    $Row = $DbResult->fetch_array();
    51     $Output = '<table class="NewsBaseTable"><tr>';
    52     $Output .= '<td>'.$Row['Caption'].'</td><td align="right">';
    53     $Output .= '<a href="aktuality/index.php?category='.$Category.'">Zobrazit všechny aktuality</a>&nbsp;';
     51    $Output = '<div class="NewsPanel"><div class="Title">'.$Row['Caption'];     
     52    $Output .= '<div class="Action"><a href="aktuality/index.php?category='.$Category.'">Zobrazit</a>';
    5453    if($this->System->Modules['User']->CheckPermission('News', 'Insert', 'Group', $Category))
    55       $Output .= '<a href="aktuality/index.php?action=add&amp;category='.$Category.'">Přidat aktualitu</a>&nbsp;';
    56     $Output .= '</td></tr><tr><td colspan="2">';
     54      $Output .= ' <a href="aktuality/index.php?action=add&amp;category='.$Category.'">Přidat</a>';
     55    $Output .= '</div></div><div class="Content">';
    5756    $DbResult = $Database->query('SELECT `News`.*, `User`.`Name` FROM `News` LEFT JOIN `User` ON `User`.`Id`=`News`.`User` WHERE (`News`.`Category`='.$Category.') AND (DATE_SUB(NOW(), INTERVAL '.$DaysAgo.' DAY) < `News`.`Date`) ORDER BY `News`.`Date` DESC LIMIT 0,'.$ItemCount);
    5857    //echo($Database->error.'<br />');
     
    8685      $Output .= '</table>';
    8786    }
    88     $Output .= '</td></tr></table>';
     87    $Output .= '</div></div>';
    8988    return($Output);
    9089  }
     
    157156      $I++;
    158157    }
    159     $Output .= '</table><input type="hidden" name="NewsCategoryCount" value="'.count($this->NewsSetting).'" /><input type="submit" value="Uložit" /></form></td></tr></table>';
     158    $Output .= '</table><input type="hidden" name="NewsCategoryCount" value="'.count($this->NewsSetting).'" /><input type="submit" value="Uložit" /></form></td></tr></table><br>';
    160159    return($Output);
    161160  }
Note: See TracChangeset for help on using the changeset viewer.