PortableInfobox/services/Helpers/PagePropsProxy.php

16 lines
240 B
PHP
Raw Normal View History

2015-09-23 13:51:41 +00:00
<?php
namespace Wikia\PortableInfobox\Helpers;
class PagePropsProxy {
public function get( $id, $property ) {
return \Wikia::getProps( $id, $property );
}
public function set( $id, $data ) {
\Wikia::setProps( $id, $data );
}
}