1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace Gedmo\Translatable\Mapping\Event;
- use Gedmo\Mapping\Event\AdapterInterface;
- /**
- * Doctrine event adapter interface
- * for Translatable behavior
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @package Gedmo\Translatable\Mapping\Event
- * @subpackage TranslatableAdapter
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- interface TranslatableAdapter extends AdapterInterface
- {
- /**
- * Get default LogEntry class used to store the logs
- *
- * @return string
- */
- function getDefaultTranslationClass();
- /**
- * Load the translations for a given object
- *
- * @param object $object
- * @param string $translationClass
- * @param string $locale
- * @return array
- */
- function loadTranslations($object, $translationClass, $locale);
- /**
- * Search for existing translation record
- *
- * @param mixed $objectId
- * @param string $objectClass
- * @param string $locale
- * @param string $field
- * @param string $translationClass
- * @return mixed - null if nothing is found, Translation otherwise
- */
- function findTranslation($objectId, $objectClass, $locale, $field, $translationClass);
- /**
- * Removes all associated translations for given object
- *
- * @param mixed $objectId
- * @param string $transClass
- * @param string $targetClass
- * @return void
- */
- function removeAssociatedTranslations($objectId, $transClass, $targetClass);
- /**
- * Inserts the translation record
- *
- * @param object $translation
- * @return void
- */
- function insertTranslationRecord($translation);
- /**
- * Get the transformed value for translation
- * storage
- *
- * @param object $object
- * @param string $field
- * @param mixed $value
- * @return mixed
- */
- function getTranslationValue($object, $field, $value = false);
- /**
- * Transform the value from database
- * for translation
- *
- * @param object $object
- * @param string $field
- * @param mixed $value
- */
- function setTranslationValue($object, $field, $value);
- }
|