Entity API Wrapper

Categories

Component ID

2504325

Component name

Entity API Wrapper

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Component created

Component changed

Component body

Wraps basic Drupal entities for some OOP goodness.

Example usage:

use Drupalentity_class_generatorEntityWrapperNodeArticleWrapper;

$test = new ArticleWrapper(1);
// This nicely autocompletes and returns body of the article.
$test->getBodyText();