2017 © Pedro Peláez
 

cakephp-plugin ogp

CakePHP OGP Plugin

image

monsat/ogp

CakePHP OGP Plugin

  • Tuesday, May 20, 2014
  • by mon_sat
  • Repository
  • 4 Watchers
  • 12 Stars
  • 10,162 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 1 Versions
  • 6 % Grown

The README.md

Ogp

CakePHP OGP Plugin, (*1)

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., (*2)

cd your_app
ls Plugin

Ogp

or clone / submodule add, (*3)

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., (*4)

# 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, (*5)

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

The Versions

20/05 2014

dev-master

9999999-dev

CakePHP OGP Plugin

  Sources   Download

MIT

The Requires

 

cakephp facebook ogp