setDescription method

setDescription method is for set meta description value for a page, this method only suitable with getDescription method.

Basic Usage

The basic usage for setDescription method is:

setDescription(string $description): $this

Parameters

setDescription method has 1 required parameter.

$description

This parameter value allowed to set the meta description for a page

Example Usage

Here is the full example of setDescription method.

<?php
class Blog extends SENE_Controller {
  public function __construct(){
    parent::__construct();
  }
  public function index(){
    ...
    $this->setDescription('This page explain about Seme Framework documentation');
    ...
  }
}