27 lines
594 B
PHP
27 lines
594 B
PHP
<?php
|
|
/**
|
|
* Copyright 2008-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
|
* @license http://www.horde.org/licenses/bsd BSD
|
|
* @category Horde
|
|
* @package Horde_Content
|
|
*/
|
|
|
|
/**
|
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
|
* @license http://www.horde.org/licenses/bsd BSD
|
|
* @category Horde
|
|
* @package Horde_Content
|
|
*
|
|
* @todo Change name to Content_Objects_Mapper
|
|
*/
|
|
class Content_ObjectMapper extends Horde_Rdo_Mapper
|
|
{
|
|
/**
|
|
* Inflector doesn't support Horde-style tables yet
|
|
*/
|
|
protected $_table = 'rampage_objects';
|
|
|
|
}
|