phpDocumentor templates
[ class tree: templates ] [ index: templates ] [ all elements ]
Prev Next

Blog->method() info/samples

Intra-page navigation (TOC)

theoretically helpful text

lorem ipsum

Blog->contact_link

Minimum params with defaults shown >> chasing $params <<

  1. <?php
  2. // display a link to contact the current blog owner
  3. $Blog->contact_linkarray(
  4.     'before' => '',
  5.     'after' => ' ',
  6.     'text' => T_('Contact'),
  7.     'title' => T_('Send a message to the owner of this blog...'),
  8. ) );
  9. ?>

⇑ top of page ⇑


Blog->credits_link

Minimum params with defaults shown >> chasing $params <<

  1. <?php
  2. // display a link to this blog's credits page
  3. $Blog->credits_linkarray(
  4.     'before' => '',
  5.     'after' => ' ',
  6.     'text' => T_('software credits'),
  7.     'title' => T_('See who wrote the code that helps make this website'),
  8.     'class' => '',
  9. ) );
  10. ?>

⇑ top of page ⇑


Blog->footer_text

Minimum params with defaults shown >> chasing $params <<

  1. <?php
  2. // displays current blog's footer text
  3. $Blog->footer_textarray(
  4.     'before' => '',
  5.     'after' => ' ',
  6. ) );
  7. ?>

⇑ top of page ⇑


Blog->longdesc

Minimum params with defaults shown >> chasing $params <<

  1. <?php
  2. // displays current blog's long description
  3. $Blog->longdescarray(
  4.     'before' => '',
  5.     'after' => ' ',
  6.     'format' => 'htmlbody',
  7. ) );
  8. ?>

⇑ top of page ⇑


Blog->name

Minimum params with defaults shown >> chasing $params <<

  1. <?php
  2. // displays current blog's (full) name
  3. $Blog->namearray(
  4.     'before' => '',
  5.     'after' => ' ',
  6.     'format' => 'htmlbody',
  7. ) );
  8. ?>

⇑ top of page ⇑


Blog->tagline

Minimum params with defaults shown >> chasing $params <<

  1. <?php
  2. // display the current blog's tagline
  3. $Blog->taglinearray(
  4.     'before' => '',
  5.     'after' => ' ',
  6.     'format' => 'htmlbody',
  7. ) );
  8. ?>

⇑ top of page ⇑


Prev Up Next
template_********() info/samples Templates Tutorials Comment->method() info/samples