Inventory_Presser_Carfax_Widget::images()
Creates an array that defines the available images the widget can display
Return Return
(array)
Source Source
File: includes/widget/class-widget-carfax.php
protected function images() {
return array(
'default' => array(
'text' => __( 'Simple Show Me Logo', 'inventory-presser' ),
'img' => 'show-me-carfax.svg',
),
'advantage' => array(
'text' => __( 'Advantage Dealer Badge', 'inventory-presser' ),
'img' => 'carfax-advantage-dealer.png',
),
'dealership' => array(
'text' => __( 'Car Fox Dealership', 'inventory-presser' ),
'img' => 'carfax-portrait-blue.jpg',
),
'foxleft' => array(
'text' => __( 'Car Fox Left', 'inventory-presser' ),
'img' => 'carfax-show-me-blue.png',
),
'foxoval' => array(
'text' => __( 'Car Fox Oval', 'inventory-presser' ),
'img' => 'carfax-show-me-blue-oval.png',
),
'landscape' => array(
'text' => __( 'Landscape Blue', 'inventory-presser' ),
'img' => 'carfax-show-me-landscape.jpg',
),
);
}
Expand full source codeCollapse full source codeView on Github