Skip to content

Instantly share code, notes, and snippets.

@armed
Created January 16, 2011 14:18
Show Gist options
  • Save armed/781817 to your computer and use it in GitHub Desktop.
Save armed/781817 to your computer and use it in GitHub Desktop.
package controllers;
import play.*;
import play.mvc.*;
import java.util.*;
import java.lang.annotation.*;
import models.*;
public class Interceptor extends Controller {
@Before
static void addFooter() {
String someData = "Hello World";
renderArgs.put("footerData", someData);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment