File size: 401 Bytes
76a7a50 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <?php
namespace Piwik\Plugins\ExampleLogTables\Columns;
use Piwik\Columns\Dimension;
class UserAttributeGender extends Dimension
{
protected $dbTableName = 'log_custom';
protected $category = 'General_Visitors';
protected $type = self::TYPE_TEXT;
protected $columnName = 'gender';
protected $segmentName = 'attrgender';
protected $nameSingular = 'Gender';
}
|