monsat/ogp

CakePHP OGP Plugin

Maintainers

Details

github.com/monsat/Ogp

Source

Issues

Installs: 40 961

Dependents: 0

Suggesters: 0

Security: 0

Stars: 9

Watchers: 3

Forks: 2

Open Issues: 0

Type:cakephp-plugin

dev-master 2014-05-20 05:34 UTC

This package is not auto-updated.

Last update: 2025-07-01 10:58:11 UTC


README

CakePHP OGP Plugin

USAGE

# view
$this->Ogp->title('page title');     // add title tag
$this->Ogp->image($post['Post']['author_image_url']);
// the other property
$this->Ogp->set(
  'description',                     // name="og:description"
  "stripped \n and <b>tags</b>",     // content
  // options
  array(
    'meta' => true,                  // add normal meta tag
  ),
);

# layout
$this->fetch('meta');

INSTALL

Download this code

download this code. and put them your plugin directory.

cd your_app
ls Plugin

Ogp

or clone / submodule add

cd your_app
git clone git://github.com/monsat/Ogp.git Plugin/Ogp

Load plugin

# APP/Config/bootstrap.php
CakePlugin::load('Ogp');
# APP/Controller/AppController.php
$helpers = array( 'Html', 'Form', 'Ogp.Ogp');

Default settings

If you do not set values in views , default values are used.

# APP/Config/bootstrap.php
Configure::write('Site', array(
  'site_name' => 'My Site',
  'description' => 'My Site is awesome',
  'image' => '/img/image.png',
  'type' => 'website',
  'separator' => ' - ',
));

Settings

default settings

Configure::write('Ogp.settings', array(
  'base' => 'Site.',
  'autoKeys' => array('type'), // set by beforeLayout
));