You are here

function example_placeholder in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_upgrade/tests/old/samples/example.module \example_placeholder()

File

coder_upgrade/tests/old/samples/example.module, line 1533

Code

function example_placeholder() {

  // theme('placeholder') -- Change the next line but leave this alone
  $placeholder = theme('placeholder');
  $placeholder = theme("placeholder");
  $placeholder = theme('placeholder', array(
    'text' => $format->name,
  ));
  $placeholder = theme("placeholder", array(
    "text" => $format->name,
  ));
}