';
$boxes[] = array(
'content' => $support_box,
'css' => 'border: none; padding: 0; background: none;'
);
$first_box = '
';
$boxes[] = array(
'content' => $first_box,
'css' => 'border: none; padding: 0; background: none;'
);
$second_box = '
';
$boxes[] = array(
'content' => $second_box,
'css' => 'border: none; padding: 0; background: none;'
);
$third_box = '' . __('Is this plugin is just what you needed? If so', 'a3-lazy-load' ) . '
';
$third_box .= '
';
$boxes[] = array(
'content' => $third_box,
'css' => 'border: none; padding: 0; background: none;'
);
$four_box = '' . __('Connect with us via','a3-lazy-load' ) . '
';
$four_box .= '
';
$four_box .= '
';
$boxes[] = array(
'content' => $four_box,
'css' => 'border-color: #3a5795;'
);
return $boxes;
}
public static function plugin_extra_links($links, $plugin_name) {
if ( $plugin_name != A3_LAZY_LOAD_NAME) {
return $links;
}
$links[] = ''.__('Support', 'a3-lazy-load' ).'';
return $links;
}
public static function settings_plugin_links( $actions ) {
$actions = array_merge( array( 'settings' => '' . __( 'Settings', 'a3-lazy-load' ) . '' ), $actions );
return $actions;
}
}
?>