Posts Tagged "Patterns"

  • A new buzzword in the PHP circles is Fluent Interfaces, which is not really new, but a way to chain methods of an object together. Here’s an example from Mike Naberezny which shows the regular way and the Fluent way: < ?php private function makeNormal(Customer $customer) { $o1 = new Order(); $customer->addOrder($o1); $line1 = new [...]

    Read More...
  • Yahoo’s UI Blog and Design pattern Library have interesting topics on patterns to follow while designing UI’s for Web 2.0 applications. In the old web, an action almost always followed a page reload or an intrusive Javascript pop-up, indicating that the action was complete. In the age of Ajax, how do we communicate the action [...]

    Read More...