NewsFeaturesDownloadsDevelopmentSupportAbout Us
Plugin blogtimes

Plugin blogtimes

From LifeType Wiki

(Redirected from PLog 1.0/Plugins/blogtimes)


Name: blogtimes

Latest version: 20070301

Download link: http://prdownloads.sourceforge.net/lifetype/1.2_blogtimes.zip?download

License: GPL

Author: Mark Wu

Description

This plugin will generate the blog times image. An example of how this message could look like when used in a real blog can be seen in Mark Wu's blog:

http://blog.markplace.net/blogtimes/blogtimes.png

Configuration

The plugin configuration page can be found under Control Center->Appearance Management.

You can use:

  1. $blogtimes->isEnabled() to check the plugin is enabled or not.
  2. $blogtimes->show() to get the blog times image.

In order to install the plugin, add the following to the bottom of main.template:

{if !empty($blogtimes)}
  {if $blogtimes->isEnabled()}
    {$blogtimes->show()}
  {/if}
{/if}

Notes