GithubHelp home page GithubHelp logo

ogp's Introduction

Ogp

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
));

ogp's People

Contributors

monsat avatar muneando avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

ogp's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.