Back to PageController class

Method _makeId

protected string
_makeId
()
Generate a page cache id
Returns
  • string MD5 Hash
Since
  • 1.7.0
-
  • Discuss whether this should be coupled to a data hash or a request hash ... perhaps hashed with a serialized request

Method _makeId - Source code

/**
 * Generate a page cache id
 *
 * @return  string  MD5 Hash
 *
 * @since   1.7.0
 * @todo    Discuss whether this should be coupled to a data hash or a request hash ... perhaps hashed with a serialized request
 */
protected function _makeId()
{
    return Cache::makeId();
}