Files
piratepoet/lib/Newsletter/Renderer/Columns/ColumnsHelper.php
Vlad 2590967183 - Formats new line identation
- Formats identations in general
2016-01-08 09:00:09 -05:00

22 lines
352 B
PHP

<?php
namespace MailPoet\Newsletter\Renderer\Columns;
class ColumnsHelper {
static $columns_width = array(
1 => 660,
2 => 330,
3 => 220
);
static $columns_class = array(
1 => 'cols-one',
2 => 'cols-two',
3 => 'cols-three'
);
static $columns_alignment = array(
1 => null,
2 => 'left',
3 => 'right'
);
}