/** * Base class of options */ class Publisher_Theme_Styles_Manager { /** * Contains list of current active styles * * @var array */ public static $styles = array( 'default' ); /** * Contains instance of styles classes * * @var array */ public $style_instances = array(); /** * Contains current active style ID * * @var string */ public static $current_style = 'default'; /** * Contains current active demo ID * * @var mixed|string */ public static $current_demo = ''; /** * Contains styles dir path * * @var string */ public static $style_dir = ''; /** * Contains styles directory URI * * @var string */ public static $style_uri = ''; /** * Base theme styles initializer */ public function __construct() { // Adds general page templates add_filter( 'publisher-theme-core/page-templates/config', array( $this, 'general_page_templates' ), 100 ); // // Cache current state // self::$current_style = publisher_get_style(); self::$current_demo = publisher_get_demo_id(); self::$style_dir = PUBLISHER_THEME_PATH . 'includes/styles/'; self::$style_uri = PUBLISHER_THEME_URI . 'includes/styles/'; // loads all styles when bf panel is saving to fix issues! if ( defined( 'DOING_AJAX' ) && isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'bf_ajax' && ( ! isset( $_REQUEST['reqID'] ) || $_REQUEST['reqID'] !== 'fetch-panel-tab' ) ) { $all_styles = publisher_styles_config(); $styles = array_keys( $all_styles ); } else { if ( self::$current_style === 'default' ) { $styles = array( 'default' ); } else { $styles = array( 'default', self::$current_style ); } } // Set styles self::set_styles( $styles ); foreach ( $styles as $style ) { // default style is in base fields and there is no preparation for that if ( $style === 'default' ) { continue; } // Unknown bug // todo find the reason for this values { $_check = array( 'default-' => 'clean-magazine', 'clean-clean-magazine' => 'clean-magazine', 'clean-magazine-magazine' => 'clean-magazine', 'clean-magazine-clean-magazine' => 'clean-magazine', 'classic-classic-magazine' => 'classic-magazine', 'classic-magazine-magazine' => 'classic-magazine', 'pure-pure-magazine' => 'pure-magazine', 'pure-magazine-magazine' => 'pure-magazine', 'pure-magazine-pure-magazine' => 'pure-magazine', ); if ( isset( $_check[ $style ] ) ) { $lang = bf_get_current_language_option_code(); $style = $_check[ $style ]; $options = get_option( publisher_get_theme_panel_id() . $lang ); $options['style'] = $style; update_option( publisher_get_theme_panel_id(), $options ); update_option( publisher_get_theme_panel_id() . $lang . '_current_style', $style ); update_option( publisher_get_theme_panel_id() . $lang . '_current_demo', $style ); } } // // Compatibility for versions before 1.7 because in that versions the style and demo id was separeate // and the compatibility runs after this so we should make it temporarily work the first time // todo remove this after v2 // { $_check = array( 'pure' => 'pure', 'clean' => 'clean', 'classic' => 'classic', 'pure-' => 'pure', 'clean-' => 'clean', 'classic-' => 'classic', ); // // Fix style id // if ( isset( $_check[ $style ] ) ) { $_demo = self::$current_demo; if ( empty( $_demo ) ) { $_demo = 'magazine'; } else { $_demo = explode( '-', $_demo ); if ( ! empty( $_demo[1] ) ) { $_demo = $_demo[1]; } else { $_demo = 'magazine'; } } if ( $_check[ $style ] === 'pure' ) { if ( $_demo != 'magazine' ) { $_demo = 'magazine'; } } elseif ( $_check[ $style ] === 'classic' ) { if ( $_demo != 'magazine' && $_demo != 'blog' ) { $_demo = 'magazine'; } } $style = $_check[ $style ] . '-' . $_demo; } } // comp fix $class = $this->get_class_name( $style ); if ( ! class_exists( $class ) && file_exists( self::get_path( $style . '/bs-theme-style-' . $style . '.php' ) ) ) { include self::get_path( $style . '/bs-theme-style-' . $style . '.php' ); } if ( class_exists( $class ) ) { $this->add_style_instance( new $class ); } } } /** * Used to get path of styles directory * * @param $append * * @return string */ public static function get_path( $append ) { return self::$style_dir . $append; } /** * Used to get path of styles URI * * @param $append * * @return string */ public static function get_uri( $append ) { return self::$style_uri . $append; } /** * Convert string to class name * * @param string $name * * @return string */ public function convert_class_name( $name = '' ) { $class = str_replace( array( '/', '-', ' ' ), '_', $name ); $class = explode( '_', $class ); $class = array_map( 'ucwords', $class ); return implode( '_', $class ); } /** * Creates class name from style and demo ID's * * @param string $style * @param string $demo * * @return string */ public function get_class_name( $style = '', $demo = '' ) { $class = 'Publisher_Theme_Style_' . $this->convert_class_name( $style ); if ( ! empty( $demo ) ) { $class .= '_' . $this->convert_class_name( $demo ); } return $class; } /** * Used to set styles from outside * * @param array $styles */ public static function set_styles( $styles ) { if ( is_array( $styles ) ) { self::$styles = $styles; } else { self::$styles = array( $styles ); } } /** * Used to get current active styles * * @return array */ public static function get_styles() { return self::$styles; } /** * @param $instance */ public function add_style_instance( $instance ) { $this->style_instances[] = $instance; } /** * Adds general page templates to all demos * * @hooked publisher-theme-core/page-templates/config * * @param $page_templates * * @return mixed */ public function general_page_templates( $page_templates ) { $page_templates['our-contributors-1'] = array( 'name' => __( 'Our Contributors 1', 'publisher' ), 'screenshot' => 'http://cdn.betterstudio.com/publisher/page-templates/general/our-contributors-1.png?v=' . PUBLISHER_THEME_VERSION, 'preview' => 'http://demo.betterstudio.com/publisher/our-contributors-1/', 'category' => array( __( '2 Column', 'publisher' ), ), 'type' => array( __( 'Contributors', 'publisher' ), ), 'post_meta' => array( array( 'meta_key' => 'page_layout', 'meta_value' => '1-col', ), array( 'meta_key' => '_hide_title', 'meta_value' => 1, ), array( 'meta_key' => '_bs_imported_template', 'meta_value' => 'our-contributors-1', ), array( 'meta_key' => '_custom_css_code', 'meta_value' => '.our-contributors-title h4{ font-size: 26px; } .our-contributors-title { margin-bottom: 20px !important; } .wpb_text_column{ margin-bottom: 22px !important; } .vc_btn3-container{ margin-bottom: 35px !important; }', ), array( 'meta_key' => 'bam_disable_all', 'meta_value' => 1, ), ), 'prepare_vc_css' => true, ); $page_templates['our-contributors-2'] = array( 'name' => __( 'Our Contributors 2', 'publisher' ), 'screenshot' => 'http://cdn.betterstudio.com/publisher/page-templates/general/our-contributors-2.png?v=' . PUBLISHER_THEME_VERSION, 'preview' => 'http://demo.betterstudio.com/publisher/our-contributors-2/', 'category' => array( __( '2 Column', 'publisher' ), ), 'type' => array( __( 'Contributors', 'publisher' ), ), 'post_meta' => array( array( 'meta_key' => 'page_layout', 'meta_value' => '1-col', ), array( 'meta_key' => '_hide_title', 'meta_value' => 1, ), array( 'meta_key' => '_bs_imported_template', 'meta_value' => 'our-contributors-2', ), array( 'meta_key' => '_custom_css_code', 'meta_value' => '.wpb_text_column{ margin-bottom: 12px!important; } .wpb_text_column h1{ font-size: 28px!important; margin: 0 0 10px; } .vc_btn3-container{ margin-bottom: 28px !important; } .vc_separator { margin-bottom: 28px !important; }', ), array( 'meta_key' => 'bam_disable_all', 'meta_value' => 1, ), ), 'prepare_vc_css' => true, ); $page_templates['our-contributors-3'] = array( 'name' => __( 'Our Contributors 3', 'publisher' ), 'screenshot' => 'http://cdn.betterstudio.com/publisher/page-templates/general/our-contributors-3.png?v=' . PUBLISHER_THEME_VERSION, 'preview' => 'http://demo.betterstudio.com/publisher/our-contributors-3/', 'category' => array( __( '2 Column', 'publisher' ), ), 'type' => array( __( 'Contributors', 'publisher' ), ), 'post_meta' => array( array( 'meta_key' => 'page_layout', 'meta_value' => '1-col', ), array( 'meta_key' => '_hide_title', 'meta_value' => 1, ), array( 'meta_key' => '_bs_imported_template', 'meta_value' => 'our-contributors-3', ), array( 'meta_key' => '_custom_css_code', 'meta_value' => '.wpb_text_column h1{ font-size: 28px!important; margin: 0 0 10px; } .wpb_text_column{ margin-bottom: 30px !important; }', ), array( 'meta_key' => 'bam_disable_all', 'meta_value' => 1, ), ), 'prepare_vc_css' => true, ); return $page_templates; } } // Publisher_Theme_Styles_Manager Padma Bank opened its premier stall at the 10th National SME Fair - DeaLFunia
Modern technology gives us many things.

Padma Bank opened its premier stall at the 10th National SME Fair

Padma Bank’s stall number 207 (Hall-D) was inaugurated at the 10th National SME Fair, which began at the Bangabandhu International Conference Center (BICC) in the capital’s Shere Bangla Nagar. 

Tarek Reaz Khan, Managing Director and CEO of Padma Bank, inaugurated the stall. In the ceremony he said that without the development of the SME sector, the overall development of a country is impossible. The SME sector contributes 25% of our country’s GDP. Furthermore, this sector accounts for two-third of all job opportunities in the country’s private sector. Therefore, Padma Bank is committed to delivering banking services to customers for the development of the SME sector. He also said that it is possible to deliver banking services to the grass-roots level through SME product services.

The ceremony was also attended by Deputy Managing Director Zabed Amin, Chief Human Resource Officer & CCO M Ahsan Ullah Khan, Syed Towhid Hossain, EVP & Head of Operation Rokibul Hasan Chowdhury, Head of Retail and SME Banking, and VP and Head of SME Business Asaduzzaman Khan. 

A férfiak szexuális egészsége rendkívül fontos, és bármilyen probléma, amely ezt befolyásolja, komoly hatással lehet az életminőségükre. Sok férfi tapasztalhat a szexuális teljesítmény csökkenésével járó nehézségeket, amelyek pszichológiai és szociális következményekkel is járhatnak. A betegek számára a támogató környezet és a nyílt kommunikáció elengedhetetlen, hogy kezelni tudják ezt a helyzetet. Az orvosi kezelés mellett alternatív megoldások is elérhetők, például különböző étrend-kiegészítők, amelyek segíthetnek a problémákon. Érdemes megvizsgálni a lehetséges lehetőségeket, mint például a különböző online forrásokat, amelyek információkat nyújtanak és termékeket ajánlanak. Ilyen például a, ahol a férfiak számára hasznos termékeket találhatnak.

A férfiak szexuális egészsége rendkívül fontos, és bármilyen probléma, amely ezt befolyásolja, komoly hatással lehet az életminőségükre. Sok férfi tapasztalhat a szexuális teljesítmény csökkenésével járó nehézségeket, amelyek pszichológiai és szociális következményekkel is járhatnak. A betegek számára a támogató környezet és a nyílt kommunikáció elengedhetetlen, hogy kezelni tudják ezt a helyzetet. Az orvosi kezelés mellett alternatív megoldások is elérhetők, például különböző étrend-kiegészítők, amelyek segíthetnek a problémákon. Érdemes megvizsgálni a lehetséges lehetőségeket, mint például a különböző online forrásokat, amelyek információkat nyújtanak és termékeket ajánlanak. Ilyen például a, ahol a férfiak számára hasznos termékeket találhatnak.

Padma Bank Limited has participated in the SME fair to increase its foothold in financial inclusion program and to give small and medium entrepreneurs a proper idea about the loan products and services.

Padma Bank Limited has modernized SME banking services in a completely new and comprehensive way. It has a number of products and services for different segment.

Padma Udyog Loan: Under the slogan, Change the Fortuneof the Business– Padma Udyog has made loan facilities available to SME customers on simple terms. There are loan facilities from taka 5 lac to a maximum of 3 crore for the purchase of additional working capital and fixed assets for the expansion of the customer’s business. This loan facility is available across the country. 70 to 100 percent of the business expansion expenses can be financed by this loan.

Padma Sahaj Loan: Sahaj Loan will be very simple—a loan facility of up to 400% on the customer’s deposit. Padma Easy Loans of taka 5 to 20 lac can also be obtained for a term of one to three years through simple and quick loan processing.  

Padma Nirman Loan: Shwapner Bari Nije Gori under this banner, SME customers will be able to obtain a loan for the construction of a ready or semi-pucca ghar for commercial use. Loan facility is up to 70% of construction costs.

Padma Goti Loan: Apart from auto loan facilities for official use by SME customers, this loan facility is available for the purchase of pickup vans for carrying goods and machinery for business expansion. This product will be eligible for a loan ranging from TK 5 lac to TK 2 croretaka. 

Padma Commercial Space Loan: This loan facility is available for the purchase or construction of commercial space in commercial areas. A loan of up to 70% of the purchase price or construction cost is available.

The fourth generation Padma Bank Limited, which is under the sole ownership of Sonali, Janata, Agrani, Rupali Bank, and ICB (Investment Corporation of Bangladesh), has been providing banking services to customers through 59 branches, 3 sub-branches, and 7 agent banking outlets.