Plugin Directory

Changeset 1971708


Ignore:
Timestamp:
11/09/2018 05:31:25 PM (7 years ago)
Author:
radius314
Message:

Preparing for 1.8.0 release

Location:
bread/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • bread/trunk/Dockerfile

    r1964355 r1971708  
    1 FROM radius314/wordpress:5.0.0-nightly-php7.3-rc-apache
     1FROM wordpress:4.9.8-php7.2-apache
    22
    33RUN apt-get update && \
    44    apt-get install -y  --no-install-recommends ssl-cert && \
    55    rm -r /var/lib/apt/lists/* && \
    6     a2enmod ssl && \
     6    a2enmod ssl rewrite expires && \
    77    a2ensite default-ssl
     8
     9ENV PHP_INI_PATH "/usr/local/etc/php/php.ini"
     10
     11RUN pecl install xdebug-2.6.1 \
     12    && docker-php-ext-enable xdebug \
     13    && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" >> ${PHP_INI_PATH} \
     14    && echo "xdebug.remote_port=9000" >> ${PHP_INI_PATH} \
     15    && echo "xdebug.remote_enable=1" >> ${PHP_INI_PATH} \
     16    && echo "xdebug.remote_connect_back=0" >> ${PHP_INI_PATH} \
     17    && echo "xdebug.remote_host=docker.for.mac.localhost" >> ${PHP_INI_PATH} \
     18    && echo "xdebug.idekey=IDEA_DEBUG" >> ${PHP_INI_PATH} \
     19    && echo "xdebug.remote_autostart=1" >> ${PHP_INI_PATH} \
     20    && echo "xdebug.remote_log=/tmp/xdebug.log" >> ${PHP_INI_PATH} \
     21    && echo "log_errors = On" >> ${PHP_INI_PATH} \
     22    && echo "error_reporting = E_ALL" >> ${PHP_INI_PATH} \
     23    && echo "error_log=/var/www/php_error.log" >> ${PHP_INI_PATH}
    824
    925EXPOSE 80
  • bread/trunk/bmlt-meeting-list.php

    r1966875 r1971708  
    55Description: Maintains and generates a PDF Meeting List from BMLT.
    66Author: odathp, radius314, pjaudiomv, klgrimley
    7 Version: 1.7.7
     7Version: 1.8.0
    88*/
    99/* Disallow direct access to the plugin file */
     
    7575            global $my_admin_page;
    7676            $screen = get_current_screen();
    77             if ( $screen->id == $my_admin_page ) {
     77            if ( isset($screen) && $screen->id == $my_admin_page ) {
    7878                if ( get_option($this->optionsName) === false ) {
    7979                    $url = plugin_dir_url(__FILE__) . "includes/nalogo.jpg";
     
    178178            global $my_admin_page;
    179179            $screen = get_current_screen();
    180             if ( $screen->id == $my_admin_page ) {
     180            if ( isset($screen) && $screen->id == $my_admin_page ) {
    181181                add_editor_style( plugin_dir_url(__FILE__) . "css/editor-style.css" );
    182182            }
     
    636636   
    637637            $this->mpdf = new mPDF(array_merge($mpdf_init_options, $page_type_settings));
     638            $this->mpdf->setAutoBottomMargin = 'pad';
    638639
    639640            // TODO: Adding a page number really could just be an option or tag.
    640641            if ( $this->options['page_fold'] == 'half' &&
    641642                 ($this->options['page_size'] == '5inch' || $this->options['page_size'] == 'A5')) {
    642                 $this->mpdf->DefHTMLFooterByName('MyFooter','<div style="text-align: center; font-size:' . $this->options['pagenumbering_font_size'] . 'pt; font-style: italic;">Page {PAGENO}</div>');
     643                $this->mpdf->DefHTMLFooterByName('MyFooter','<div style="text-align:center;font-size:' . $this->options['pagenumbering_font_size'] . 'pt;font-style: italic;">Page {PAGENO}</div>');
    643644            }
    644645
     
    12591260                            $ph_footer_fix_top = 5 - $this->options['top'];
    12601261                        }
    1261                             $PH_FOOTER_MM_HEIGHT_ADJUST = 22;
    1262                             $PH_FOOTER_MM = $PH_FOOTER_MM_HEIGHT_ADJUST + $ph_footer_fix_top + $ph_footer_fix_bot;
     1262                            $PH_FOOTER_MM = $ph_footer_fix_top + $ph_footer_fix_bot;
    12631263
    12641264                        if ( strpos($this->options['front_page_content'], 'sethtmlpagefooter') !== false ) {
     
    16851685                $this->options['include_meeting_email'] = boolval($_POST['include_meeting_email']);
    16861686                $this->options['recurse_service_bodies'] = intval($_POST['recurse_service_bodies']);
     1687                $this->options['extra_meetings_enabled'] = intval($_POST['extra_meetings_enabled']);
    16871688                $this->options['include_protection'] = boolval($_POST['include_protection']);
    16881689                $this->options['weekday_language'] = sanitize_text_field($_POST['weekday_language']);
     
    17131714                }
    17141715                echo '</div>';
    1715             } elseif ( $_COOKIE['pwsix_action'] == "import_settings" ) {
     1716            } elseif ( isset($_COOKIE['pwsix_action']) && $_COOKIE['pwsix_action'] == "import_settings" ) {
    17161717                echo '<div class="updated"><p style="color: #F00;">Your file was successfully imported!</p></div>';
    17171718                setcookie('pwsix_action', NULL, -1);
    17181719                $num = $this->delete_transient_cache();
    1719             } elseif ( $_COOKIE['pwsix_action'] == "default_settings_success" ) {
     1720            } elseif ( isset($_COOKIE['pwsix_action']) && $_COOKIE['pwsix_action'] == "default_settings_success" ) {
    17201721                echo '<div class="updated"><p style="color: #F00;">Your default settings were successfully updated!</p></div>';
    17211722                setcookie('pwsix_action', NULL, -1);
     
    18481849                $this->options['recurse_service_bodies'] = 1;
    18491850            }
     1851            if ( !isset($this->options['extra_meetings_enabled']) || strlen(trim($this->options['extra_meetings_enabled'])) == 0) {
     1852                $this->options['extra_meetings_enabled'] = 0;
     1853            }
    18501854            if ( !isset($this->options['include_protection']) || strlen(trim($this->options['include_protection'])) == 0 ) {
    18511855                $this->options['include_protection'] = 0;
     
    18721876                $this->options['cache_time'] = 0;
    18731877            }
    1874             if ( !isset($this->options['extra_meetings']) ) {
     1878            if ( !isset($this->options['extra_meetings']) || $this->options['extra_meetings'] == '' ) {
    18751879                $this->options['extra_meetings'] = '';
    1876                
     1880            } else {
     1881                $this->options['extra_meetings_enabled'] = 1;
    18771882            }
    18781883           
     
    19761981         */
    19771982        function pwsix_process_settings_export() {
    1978             if ( $_POST['bmltmeetinglistsave'] == 'Save Changes' )
     1983            if ( isset($_POST['bmltmeetinglistsave']) && $_POST['bmltmeetinglistsave'] == 'Save Changes' )
    19791984                return;
    19801985            if( empty( $_POST['pwsix_action'] ) || 'export_settings' != $_POST['pwsix_action'] )
     
    20092014         */
    20102015        function pwsix_process_settings_import() {
    2011             if ( $_POST['bmltmeetinglistsave'] == 'Save Changes' )
     2016            if ( isset($_POST['bmltmeetinglistsave']) && $_POST['bmltmeetinglistsave'] == 'Save Changes' )
    20122017                return;
    20132018            if( empty( $_POST['pwsix_action'] ) || 'import_settings' != $_POST['pwsix_action'] )
     
    20402045         */
    20412046        function pwsix_process_default_settings() {
    2042             if ( ! current_user_can( 'manage_options' ) || $_POST['bmltmeetinglistsave'] == 'Save Changes' ) {
     2047            if ( ! current_user_can( 'manage_options' ) ||
     2048                (isset($_POST['bmltmeetinglistsave']) && $_POST['bmltmeetinglistsave'] == 'Save Changes' )) {
    20432049                return;
    2044             } elseif ( 'three_column_default_settings' == $_POST['pwsix_action'] ) {
     2050            } elseif ( isset($_POST['pwsix_action']) && 'three_column_default_settings' == $_POST['pwsix_action'] ) {
    20452051                if( ! wp_verify_nonce( $_POST['pwsix_submit_three_column'], 'pwsix_submit_three_column' ) )
    20462052                    die('Whoops! There was a problem with the data you posted. Please go back and try again.');
    20472053                $import_file = plugin_dir_path(__FILE__) . "includes/three_column_settings.json";
    2048             } elseif ( 'four_column_default_settings' == $_POST['pwsix_action'] ) {
     2054            } elseif ( isset($_POST['pwsix_action']) && 'four_column_default_settings' == $_POST['pwsix_action'] ) {
    20492055                if( ! wp_verify_nonce( $_POST['pwsix_submit_four_column'], 'pwsix_submit_four_column' ) )
    20502056                    die('Whoops! There was a problem with the data you posted. Please go back and try again.');
    20512057                $import_file = plugin_dir_path(__FILE__) . "includes/four_column_settings.json";
    2052             } elseif ( 'booklet_default_settings' == $_POST['pwsix_action'] ) {
     2058            } elseif ( isset($_POST['pwsix_action']) && 'booklet_default_settings' == $_POST['pwsix_action'] ) {
    20532059                if( ! wp_verify_nonce( $_POST['pwsix_submit_booklet'], 'pwsix_submit_booklet' ) )
    20542060                    die('Whoops! There was a problem with the data you posted. Please go back and try again.');
  • bread/trunk/includes/booklet_settings.json

    r1966859 r1971708  
    1 {"root_server":"","service_body_1":"","service_body_2":"Not Used","service_body_3":"Not Used","header_font_size":9.5,"area_service_meetings":null,"helplines":null,"helplines_line_height":null,"front_page_content":"<p style=\"text-align: center\"><span style=\"font-size: 26pt\"><strong>NARCOTICS ANONYMOUS<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 26pt\">[service_body_1]<\/span><\/strong><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 26pt\"><strong>MEETING LIST<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><a href=\"https:\/\/bmlt.app\/wp-content\/uploads\/2018\/10\/default_nalogo.jpg\"><img src=\"https:\/\/bmlt.app\/wp-content\/uploads\/2018\/10\/default_nalogo.jpg\" alt=\"NALogo\" \/><\/a>\u00a0<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 26pt\"><strong>[date]<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 12pt\"><strong>To The Newcomer\u00a0<\/strong><\/span><\/p>\r\n<p style=\"text-align: justify\"><span style=\"font-size: 10pt\"><span style=\"font-size: 12pt\">This meeting list is dedicated to you and is produced to help you find meetings throughout the\u00a0<\/span><\/span>[service_body_1]<span style=\"font-size: 10pt\"><span style=\"font-size: 12pt\">. The information in this book was as accurate as possible at the time of printing. Sometimes groups have to move or change their time. If you go to a listed meeting and it is not there, go to another meeting. If you can, please call our office at: (555) 555-5555, so that we can correct our meeting list for future printings. At Narcotics Anonymous, YOU are the most important person.<\/span>\u00a0<\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 12pt\"><strong>We Do Recover\u00a0<\/strong><\/span><\/p>\r\n<p style=\"text-align: justify\"><span style=\"font-size: 12pt\">\u00a0\u201cWhen at the end of the road we find that we can no longer function as a human being, either with or without drugs, we all face the same dilemma. What is there to do? There seems to be this alternative: Either to go on as best we can to the bitter ends - Jails, Institution, or Death - or find a new way to live. In years gone by, very few addicts had this last choice. Those who are addicted today are more fortunate. For the first time in man\\'s entire history, a simple way has been proving itself in the lives of many addicts. It is a simple spiritual, (not religious) program known as NARCOTICS ANONYMOUS.\u201d<\/span><\/p>\r\n<p>[page_break][start_page_numbers]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 16pt\"><strong><span style=\"color: #fff\">THE TWELVE STEPS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"6\" cellpadding=\"6\">\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">1.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We admitted that we were powerless over our addiction, that our lives had become unmanageable.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">2.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We came to believe that a Power greater than ourselves could restore us to sanity.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">3.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We made a decision to turn our will and our lives over to the care of God as we understood Him.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">4.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We made a searching and fearless moral inventory of ourselves.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">5.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We admitted to God, to ourselves, and to another human being the exact nature of our wrongs.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">6.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We were entirely ready to have God remove all these defects of character.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">7.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We humbly asked Him to remove our shortcomings.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">8.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We made a list of all persons we had harmed and became willing to make amends to them all.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">9.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We made direct amends to such people wherever possible, except when to do so would injure them or others.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">10.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We continued to take personal inventory and when we were wrong promptly admitted it.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">11.\u00a0<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We sought through prayer and meditation to improve our conscious contact with God as we understood Him, praying only for knowledge of His will for us and the power to carry that out.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">12.\u00a0<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Having had a spiritual awakening as a result of these steps, we tried to carry this message to addicts, and to practice these principles in all our affairs. \u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>&nbsp;<\/p>\r\n<p>[page_break]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><strong><span style=\"color: #fff\">Meeting Format Legend<\/span><\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[format_codes_used_basic]<\/p>\r\n<p>&nbsp;<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><strong><span style=\"color: #fff\">Helplines<\/span><\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Service Body 1<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">Number 1<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Service Body 2<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">Number 2<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\u00a0<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\u00a0<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">\u00a0<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[page_break]<\/p>","front_line_height":"1.4","area_service_meetings_line_height":null,"content_font_size":9,"content_line_height":1.2,"front_page_font_size":11.4,"service_body_4":"Not Used","service_body_5":"Not Used","page_layout":null,"last_page_content":"<p>[page_break]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 16pt\"><strong><span style=\"color: #fff\">THE TWELVE TRADITIONS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%;font-size: 16pt !important\" width=\"100%\" cellspacing=\"6\" cellpadding=\"6\">\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">1.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Our common welfare should come first; personal recovery depends on NA unity.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">2.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">For our group purpose there is but one ultimate authority\u2014 a loving God as He may express Himself in our group conscience. Our leaders are but trusted servants; they do not govern.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">3.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">The only requirement for membership is a desire to stop using.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">4.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Each group should be autonomous except in matters affecting other groups or NA as a whole.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">5.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Each group has but one primary purpose\u2014to carry the message to the addict who still suffers.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">6.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">An NA group ought never endorse, finance, or lend the NA name to any related facility or outside enterprise, lest problems of money, property, or prestige divert us from our primary purpose.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">7.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Every NA group ought to be fully self-supporting, declining outside contributions.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">8.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Narcotics Anonymous should remain forever nonprofessional, but our service centers may employ special workers.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">9.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">NA, as such, ought never be organized, but we may create service boards or committees directly responsible to those they serve.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">10.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Narcotics Anonymous has no opinion on outside issues; hence the NA name ought never be drawn into public controversy.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">11.\u00a0<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Our public relations policy is based on attraction rather than promotion; we need always maintain personal anonymity at the level of press, radio, and films.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">12.\u00a0<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Anonymity is the spiritual foundation of all our Traditions, ever reminding us to place principles before personalities.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[page_break]<\/p>\r\n<table style=\"width: 100%\" border=\"1\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 50%\"><strong><span style=\"font-size: 12pt\">Name<\/span><\/strong><\/td>\r\n<td style=\"width: 50%\"><strong><span style=\"font-size: 12pt\">Phone Number<\/span><\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","front_page_line_height":"1.1","last_page_line_height":1.2,"time_option":1,"remove_space":true,"helplines_font_size":null,"format_codes":null,"format_codes_font_size":null,"format_codes_line_height":null,"page_size":"5inch","page_fold":"half","meeting_sort":"city","cache_time":0,"include_zip":false,"show_status":null,"use_custom_section":null,"custom_section_content":"","custom_section_line_height":1,"page_orientation":"L","meeting_template":"","area_service_meetings_font_size":null,"which_format_codes":null,"custom_section_font_size":9,"include_meeting_email":false,"bmlt_login_id":"","bmlt_login_password":"","last_page_font_size":12,"column_line":false,"used_format_1":"","page_height":"250","column_gap":5,"margin_right":5,"margin_left":5,"margin_bottom":5,"margin_top":5,"meeting_template_content":"<table style=\"width: 100%;padding: 0\" cellspacing=\"0\" cellpadding=\"1\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 4%;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\"><span style=\"font-family: courier\"><strong>day_abbr<\/strong><\/span><\/td>\r\n<td style=\"width: 9%;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\"><span style=\"font-family: courier\"><strong>time<\/strong><\/span><\/td>\r\n<td style=\"border-bottom: 1px solid #dddddd;vertical-align: top\"><strong>group<\/strong>, location, info, street, city, state, zip (formats)\u00a0<em>comments<\/em><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","col_color":"#bfbfbf","time_clock":"12","header_text_color":"#ffffff","header_background_color":"#000000","header_uppercase":1,"header_bold":1,"logo_copied":"done","weekday_language":"en","include_asm":false,"sub_header_shown":1,"page_height_fix":0,"borough_suffix":"Borough","county_suffix":"County","neighborhood_suffix":"Neighborhood","city_suffix":"City","pagenumbering_font_size":9,"recurse_service_bodies":1,"include_protection":false,"base_font":"dejavusanscondensed","protection_password":"","custom_query":"","extra_meetings":""}
     1{"root_server":"","service_body_1":"","service_body_2":"Not Used","service_body_3":"Not Used","header_font_size":9.5,"area_service_meetings":null,"helplines":null,"helplines_line_height":null,"front_page_content":"<p style=\"text-align: center\"><span style=\"font-size: 26pt\"><strong>NARCOTICS ANONYMOUS<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 26pt\">[service_body_1]<\/span><\/strong><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 26pt\"><strong>MEETING LIST<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><a href=\"https:\/\/bmlt.app\/wp-content\/uploads\/2018\/10\/default_nalogo.jpg\"><img src=\"https:\/\/bmlt.app\/wp-content\/uploads\/2018\/10\/default_nalogo.jpg\" alt=\"NALogo\" \/><\/a>\u00a0<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 26pt\"><strong>[date]<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 12pt\"><strong>To The Newcomer\u00a0<\/strong><\/span><\/p>\r\n<p style=\"text-align: justify\"><span style=\"font-size: 10pt\"><span style=\"font-size: 12pt\">This meeting list is dedicated to you and is produced to help you find meetings throughout the\u00a0<\/span><\/span>[service_body_1]<span style=\"font-size: 10pt\"><span style=\"font-size: 12pt\">. The information in this book was as accurate as possible at the time of printing. Sometimes groups have to move or change their time. If you go to a listed meeting and it is not there, go to another meeting. If you can, please call our office at: (555) 555-5555, so that we can correct our meeting list for future printings. At Narcotics Anonymous, YOU are the most important person.<\/span>\u00a0<\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 12pt\"><strong>We Do Recover\u00a0<\/strong><\/span><\/p>\r\n<p style=\"text-align: justify\"><span style=\"font-size: 12pt\">\u00a0\u201cWhen at the end of the road we find that we can no longer function as a human being, either with or without drugs, we all face the same dilemma. What is there to do? There seems to be this alternative: Either to go on as best we can to the bitter ends - Jails, Institution, or Death - or find a new way to live. In years gone by, very few addicts had this last choice. Those who are addicted today are more fortunate. For the first time in man\\'s entire history, a simple way has been proving itself in the lives of many addicts. It is a simple spiritual, (not religious) program known as NARCOTICS ANONYMOUS.\u201d<\/span><\/p>\r\n<p>[page_break][start_page_numbers]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 16pt\"><strong><span style=\"color: #fff\">THE TWELVE STEPS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"6\" cellpadding=\"6\">\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">1.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We admitted that we were powerless over our addiction, that our lives had become unmanageable.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">2.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We came to believe that a Power greater than ourselves could restore us to sanity.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">3.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We made a decision to turn our will and our lives over to the care of God as we understood Him.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">4.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We made a searching and fearless moral inventory of ourselves.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">5.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We admitted to God, to ourselves, and to another human being the exact nature of our wrongs.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">6.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We were entirely ready to have God remove all these defects of character.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">7.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We humbly asked Him to remove our shortcomings.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">8.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We made a list of all persons we had harmed and became willing to make amends to them all.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">9.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We made direct amends to such people wherever possible, except when to do so would injure them or others.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">10.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We continued to take personal inventory and when we were wrong promptly admitted it.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">11.\u00a0<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">We sought through prayer and meditation to improve our conscious contact with God as we understood Him, praying only for knowledge of His will for us and the power to carry that out.\u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">12.\u00a0<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Having had a spiritual awakening as a result of these steps, we tried to carry this message to addicts, and to practice these principles in all our affairs. \u00a0<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>&nbsp;<\/p>\r\n<p>[page_break]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><strong><span style=\"color: #fff\">Meeting Format Legend<\/span><\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[format_codes_used_basic]<\/p>\r\n<p>&nbsp;<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><strong><span style=\"color: #fff\">Helplines<\/span><\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Service Body 1<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">Number 1<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Service Body 2<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">Number 2<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\u00a0<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\u00a0<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;text-align: right;vertical-align: top\">\u00a0<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[page_break]<\/p>","front_line_height":"1.4","area_service_meetings_line_height":null,"content_font_size":9,"content_line_height":1.2,"front_page_font_size":11.4,"service_body_4":"Not Used","service_body_5":"Not Used","page_layout":null,"last_page_content":"<p>[page_break]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 16pt\"><strong><span style=\"color: #fff\">THE TWELVE TRADITIONS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%;font-size: 16pt !important\" width=\"100%\" cellspacing=\"6\" cellpadding=\"6\">\r\n<tbody>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">1.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Our common welfare should come first; personal recovery depends on NA unity.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">2.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">For our group purpose there is but one ultimate authority\u2014 a loving God as He may express Himself in our group conscience. Our leaders are but trusted servants; they do not govern.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">3.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">The only requirement for membership is a desire to stop using.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">4.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Each group should be autonomous except in matters affecting other groups or NA as a whole.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">5.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Each group has but one primary purpose\u2014to carry the message to the addict who still suffers.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">6.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">An NA group ought never endorse, finance, or lend the NA name to any related facility or outside enterprise, lest problems of money, property, or prestige divert us from our primary purpose.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">7.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Every NA group ought to be fully self-supporting, declining outside contributions.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">8.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Narcotics Anonymous should remain forever nonprofessional, but our service centers may employ special workers.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">9.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">NA, as such, ought never be organized, but we may create service boards or committees directly responsible to those they serve.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">10.<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Narcotics Anonymous has no opinion on outside issues; hence the NA name ought never be drawn into public controversy.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">11.\u00a0<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Our public relations policy is based on attraction rather than promotion; we need always maintain personal anonymity at the level of press, radio, and films.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">12.\u00a0<\/span><\/p>\r\n<\/td>\r\n<td style=\"vertical-align: top\">\r\n<p><span style=\"font-size: 16pt\">Anonymity is the spiritual foundation of all our Traditions, ever reminding us to place principles before personalities.<\/span><\/p>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[page_break]<\/p>\r\n<table style=\"width: 100%\" border=\"1\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 50%\"><strong><span style=\"font-size: 12pt\">Name<\/span><\/strong><\/td>\r\n<td style=\"width: 50%\"><strong><span style=\"font-size: 12pt\">Phone Number<\/span><\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td>\u00a0<\/td>\r\n<td>\u00a0<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","front_page_line_height":"1.1","last_page_line_height":1.2,"time_option":1,"remove_space":true,"helplines_font_size":null,"format_codes":null,"format_codes_font_size":null,"format_codes_line_height":null,"page_size":"5inch","page_fold":"half","meeting_sort":"city","cache_time":0,"include_zip":false,"show_status":null,"use_custom_section":null,"custom_section_content":"","custom_section_line_height":1,"page_orientation":"L","meeting_template":"","area_service_meetings_font_size":null,"which_format_codes":null,"custom_section_font_size":9,"include_meeting_email":false,"bmlt_login_id":"","bmlt_login_password":"","last_page_font_size":12,"column_line":false,"used_format_1":"","page_height":"250","column_gap":5,"margin_right":5,"margin_left":5,"margin_bottom":5,"margin_top":5,"meeting_template_content":"<table style=\"width: 100%;padding: 0\" cellspacing=\"0\" cellpadding=\"1\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 4%;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\"><span style=\"font-family: courier\"><strong>day_abbr<\/strong><\/span><\/td>\r\n<td style=\"width: 9%;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\"><span style=\"font-family: courier\"><strong>time<\/strong><\/span><\/td>\r\n<td style=\"border-bottom: 1px solid #dddddd;vertical-align: top\"><strong>group<\/strong>, location, info, street, city, state, zip (formats)\u00a0<em>comments<\/em><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","col_color":"#bfbfbf","time_clock":"12","header_text_color":"#ffffff","header_background_color":"#000000","header_uppercase":1,"header_bold":1,"logo_copied":"done","weekday_language":"en","include_asm":false,"sub_header_shown":1,"page_height_fix":0,"borough_suffix":"Borough","county_suffix":"County","neighborhood_suffix":"Neighborhood","city_suffix":"City","pagenumbering_font_size":9,"recurse_service_bodies":1,"extra_meetings_enabled":0,"include_protection":false,"base_font":"dejavusanscondensed","protection_password":"","custom_query":"","extra_meetings":""}
  • bread/trunk/includes/four_column_settings.json

    r1966859 r1971708  
    1 {"root_server":"","service_body_1":"","service_body_2":"Not Used","service_body_3":"Not Used","service_body_4":"Not Used","service_body_5":"Not Used","area_service_meetings":null,"helplines":null,"helplines_line_height":null,"helplines_font_size":null,"format_codes":null,"format_codes_font_size":"9","format_codes_line_height":"1.0","front_page_content":"<p style=\"text-align: center\">\u00a0<img class=\"aligncenter wp-image-76 size-full\" src=\"https:\/\/bmlt.app\/wp-content\/uploads\/2018\/10\/default_nalogo.jpg\" alt=\"NALogo-1\" width=\"150\" height=\"150\" \/><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><b>[area]<\/b><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><strong>NARCOTICS ANONYMOUS<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><strong>MEETING LIST<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><b>[date]<\/b><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><b>24 HOUR HELPLINE<\/b><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\">NUMBER<br \/><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\">\u00a0<\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 14pt\"><b>www.na.org<\/b><\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 12pt\">SUGGESTIONS FOR EVERYONE<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">DON\\'T USE no matter what<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Ask your Higher Power to keep you clean<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Come early and stay late<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Get a home group<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Go to 90 meetings in 90 days<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Read NA literature daily<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Get and use a sponsor<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Use the PHONE<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">KEEP COMING BACK. IT WORKS<\/span><\/strong><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\">Meetings Weekly:\u00a0[meeting_count]<\/p>","front_page_line_height":"1.4","last_page_content":"","last_page_line_height":1.2,"area_service_meetings_line_height":"1.0","content_font_size":7,"page_layout":null,"time_option":1,"remove_space":true,"content_line_height":1.2,"page_size":"legal","page_fold":"quad","meeting_sort":"day","cache_time":0,"include_zip":false,"page_orientation":"L","show_status":null,"use_custom_section":null,"custom_section_content":"<p>[new_column]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 9pt\"><strong><span style=\"color: #fff\">MEETING FORMAT LEGEND<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[format_codes_used_basic]<\/p>\r\n<p>&nbsp;<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 9pt\"><strong><span style=\"color: #fff\">SERVICE MEETINGS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[service_meetings]<\/p>\r\n<p>[new_column]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 9pt\"><strong><span style=\"color: #fff\">NARCOTICS ANONYMOUS HELPLINES<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%;font-size: 8pt;line-height: 1.4\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Service Body 1<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Number 1<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Service Body 2<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Number 2<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div>[new_column]<\/div>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 9pt\"><strong><span style=\"color: #fff\">PHONE NUMBERS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%\" cellspacing=\"10\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"text-decoration: underline;font-size: 12pt\"><strong>The Narcotics Anonymous Message:<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 11pt\">\u201cThat an addict, any addict, can stop using drugs, lose the desire to use\u00a0and find a new way to live.\\\"<\/span><\/p>","custom_section_line_height":1,"which_format_codes":"used","meeting_template":"","area_service_meetings_font_size":"10","custom_section_font_size":8,"front_page_font_size":10,"include_meeting_email":false,"bmlt_login_id":"","bmlt_login_password":"","last_page_font_size":10,"column_line":false,"used_format_1":"","page_height":"195","column_gap":5,"margin_right":2,"margin_left":2,"margin_bottom":2,"margin_top":2,"meeting_template_content":"<table style=\"width: 100%;padding: 0\" cellspacing=\"0\" cellpadding=\"1\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 15%;border-bottom: 1px solid #dddddd;vertical-align: top;text-align: center\"><strong>time<\/strong><\/td>\r\n<td style=\"border-bottom: 1px solid #dddddd;vertical-align: top\"><strong>group<\/strong>, location, info, street,\u00a0city, state,\u00a0zip\u00a0(formats)\u00a0<em>comments<\/em><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","col_color":"#bfbfbf","time_clock":"12","header_font_size":7.5,"header_text_color":"#ffffff","header_background_color":"#000000","header_uppercase":1,"header_bold":1,"weekday_language":"en","include_asm":false,"logo_copied":"done","sub_header_shown":1,"page_height_fix":0,"borough_suffix":"Borough","county_suffix":"County","neighborhood_suffix":"Neighborhood","city_suffix":"City","pagenumbering_font_size":9,"recurse_service_bodies":1,"include_protection":false,"base_font":"dejavusanscondensed","protection_password":"","custom_query":"","extra_meetings":["none"]}
     1{"root_server":"","service_body_1":"","service_body_2":"Not Used","service_body_3":"Not Used","service_body_4":"Not Used","service_body_5":"Not Used","area_service_meetings":null,"helplines":null,"helplines_line_height":null,"helplines_font_size":null,"format_codes":null,"format_codes_font_size":"9","format_codes_line_height":"1.0","front_page_content":"<p style=\"text-align: center\">\u00a0<img class=\"aligncenter wp-image-76 size-full\" src=\"https:\/\/bmlt.app\/wp-content\/uploads\/2018\/10\/default_nalogo.jpg\" alt=\"NALogo-1\" width=\"150\" height=\"150\" \/><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><b>[area]<\/b><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><strong>NARCOTICS ANONYMOUS<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><strong>MEETING LIST<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><b>[date]<\/b><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\"><b>24 HOUR HELPLINE<\/b><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\">NUMBER<br \/><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 16pt\">\u00a0<\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 14pt\"><b>www.na.org<\/b><\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 12pt\">SUGGESTIONS FOR EVERYONE<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">DON\\'T USE no matter what<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Ask your Higher Power to keep you clean<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Come early and stay late<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Get a home group<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Go to 90 meetings in 90 days<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Read NA literature daily<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Get and use a sponsor<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">Use the PHONE<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 10pt\">KEEP COMING BACK. IT WORKS<\/span><\/strong><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\">Meetings Weekly:\u00a0[meeting_count]<\/p>","front_page_line_height":"1.4","last_page_content":"","last_page_line_height":1.2,"area_service_meetings_line_height":"1.0","content_font_size":7,"page_layout":null,"time_option":1,"remove_space":true,"content_line_height":1.2,"page_size":"legal","page_fold":"quad","meeting_sort":"day","cache_time":0,"include_zip":false,"page_orientation":"L","show_status":null,"use_custom_section":null,"custom_section_content":"<p>[new_column]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 9pt\"><strong><span style=\"color: #fff\">MEETING FORMAT LEGEND<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[format_codes_used_basic]<\/p>\r\n<p>&nbsp;<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 9pt\"><strong><span style=\"color: #fff\">SERVICE MEETINGS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[service_meetings]<\/p>\r\n<p>[new_column]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 9pt\"><strong><span style=\"color: #fff\">NARCOTICS ANONYMOUS HELPLINES<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%;font-size: 8pt;line-height: 1.4\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Service Body 1<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Number 1<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Service Body 2<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>Number 2<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<td style=\"border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #555555;vertical-align: top\">\r\n<p>&nbsp;<\/p>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<div>[new_column]<\/div>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 9pt\"><strong><span style=\"color: #fff\">PHONE NUMBERS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%\" cellspacing=\"10\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"text-decoration: underline;font-size: 12pt\"><strong>The Narcotics Anonymous Message:<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 11pt\">\u201cThat an addict, any addict, can stop using drugs, lose the desire to use\u00a0and find a new way to live.\\\"<\/span><\/p>","custom_section_line_height":1,"which_format_codes":"used","meeting_template":"","area_service_meetings_font_size":"10","custom_section_font_size":8,"front_page_font_size":10,"include_meeting_email":false,"bmlt_login_id":"","bmlt_login_password":"","last_page_font_size":10,"column_line":false,"used_format_1":"","page_height":"195","column_gap":5,"margin_right":2,"margin_left":2,"margin_bottom":2,"margin_top":2,"meeting_template_content":"<table style=\"width: 100%;padding: 0\" cellspacing=\"0\" cellpadding=\"1\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 15%;border-bottom: 1px solid #dddddd;vertical-align: top;text-align: center\"><strong>time<\/strong><\/td>\r\n<td style=\"border-bottom: 1px solid #dddddd;vertical-align: top\"><strong>group<\/strong>, location, info, street,\u00a0city, state,\u00a0zip\u00a0(formats)\u00a0<em>comments<\/em><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","col_color":"#bfbfbf","time_clock":"12","header_font_size":7.5,"header_text_color":"#ffffff","header_background_color":"#000000","header_uppercase":1,"header_bold":1,"weekday_language":"en","include_asm":false,"logo_copied":"done","sub_header_shown":1,"page_height_fix":0,"borough_suffix":"Borough","county_suffix":"County","neighborhood_suffix":"Neighborhood","city_suffix":"City","pagenumbering_font_size":9,"recurse_service_bodies":1,"extra_meetings_enabled":0,"include_protection":false,"base_font":"dejavusanscondensed","protection_password":"","custom_query":"","extra_meetings":["none"]}
  • bread/trunk/includes/three_column_settings.json

    r1966859 r1971708  
    1 {"root_server":"","service_body_1":"","service_body_2":"Not Used","service_body_3":"Not Used","header_font_size":6.5,"area_service_meetings":null,"front_page_content":"<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><img src=\"https:\/\/bmlt.app\/wp-content\/uploads\/2018\/10\/default_nalogo.jpg\" alt=\"default_nalogo\" \/><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 15pt\"><strong>[service_body_1]<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 15pt\"><strong>MEETING LIST<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 15pt\"><strong>[date]<\/strong>\u00a0<\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 14pt\"><b>24 HOUR HELPLINE<\/b><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 14pt\">NUMBER <br \/><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><strong>\u00a0<\/strong><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><b>https:\/\/na.org<\/b><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 12pt\"><strong>SUGGESTIONS FOR EVERYONE<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\"><strong>DON\\'T USE no matter what<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Ask your Higher Power to keep you clean<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Come early and stay late<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Get a home group<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Go to 90 meetings in 90 days<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Read NA literature daily<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Get and use a sponsor<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Use the PHONE<\/strong><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 12pt\"><strong>KEEP COMING BACK. IT WORKS<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">Meetings Weekly:\u00a0[meeting_count]<\/p>","front_line_height":"1.0","area_service_meetings_line_height":null,"content_font_size":6,"content_line_height":1.2,"front_page_font_size":10,"last_page_content":"","front_page_line_height":"1.0","last_page_line_height":1,"page_layout":null,"service_body_4":"Not Used","service_body_5":"Not Used","time_option":1,"remove_space":true,"helplines_font_size":null,"format_codes":null,"format_codes_font_size":null,"format_codes_line_height":null,"page_size":"letter","page_fold":"tri","meeting_sort":"day","cache_time":0,"include_zip":false,"page_orientation":"L","show_status":null,"use_custom_section":null,"custom_section_content":"<p>[new_column]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 7pt\"><strong><span style=\"color: #fff\">MEETING FORMAT LEGEND<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[format_codes_used_basic]<\/p>\r\n<p>&nbsp;<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 7pt\"><strong><span style=\"color: #fff\">HELPLINES<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\">Area 1<\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\">Number 1<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\">Area 2<\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\">Number 2<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\"><\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\"><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\"><\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\"><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\"><\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\"><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>&nbsp;<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 7pt\"><strong><span style=\"color: #fff\">SERVICE MEETINGS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[service_meetings]<\/p>\r\n<p>[new_column]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 7pt\"><strong><span style=\"color: #fff\">PHONE NUMBERS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%\" cellspacing=\"10\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">\u00a0<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\"><span style=\"font-size: 13pt\">What is our message?<\/span><\/span><\/strong><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">The message is that an addict, <\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">any addict,\u00a0<\/span><\/strong><strong><span style=\"font-size: 11pt\">can stop using drugs,<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">\u00a0<\/span><\/strong><strong><span style=\"font-size: 11pt\">lose the desire to use,<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">and find a new way to live.<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">Our message is hope<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\"> and the promise of freedom.\u00a0<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 9pt\">Basic Text<\/span><em><span style=\"font-size: 9pt\">, page 65<\/span><\/em><\/p>\r\n<p>[new_column]<\/p>","custom_section_line_height":1,"area_service_meetings_font_size":null,"which_format_codes":null,"meeting_template":"","custom_section_font_size":6.5,"include_meeting_email":false,"bmlt_login_id":"","bmlt_login_password":"","last_page_font_size":10,"column_line":false,"used_format_1":"","used_format_2":null,"time_clock":"12","page_height":"200","column_gap":6,"margin_right":2,"margin_left":2,"margin_bottom":2,"margin_top":2,"meeting_template_content":"<table style=\"margin-top: 0px;width: 100%;padding: 0px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 11%;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\"><span style=\"font-family: courier\"><strong>time<\/strong><\/span><\/td>\r\n<td style=\"width: 2pt;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\">\u00a0<\/td>\r\n<td style=\"width: 8%;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\"><span style=\"font-family: courier\"><strong>hrsHR<\/strong><\/span><\/td>\r\n<td style=\"width: 4pt;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\">\u00a0<\/td>\r\n<td style=\"border-bottom: 1px solid #dddddd;vertical-align: top\"><strong>group<\/strong>, location,\u00a0info,\u00a0street, city, state, zip <strong>(formats)<\/strong>\u00a0<em>comments<\/em><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","col_color":"#274fae","header_text_color":"#ffffff","header_background_color":"#000000","header_uppercase":1,"header_bold":1,"include_asm":false,"weekday_language":"both","sub_header_shown":1,"page_height_fix":0,"borough_suffix":"Borough","county_suffix":"County","neighborhood_suffix":"Neighborhood","city_suffix":"City","pagenumbering_font_size":9,"recurse_service_bodies":1,"include_protection":false,"base_font":"dejavusanscondensed","protection_password":"","custom_query":"","extra_meetings":["none"]}
     1{"root_server":"","service_body_1":"","service_body_2":"Not Used","service_body_3":"Not Used","header_font_size":6.5,"area_service_meetings":null,"front_page_content":"<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><img src=\"https:\/\/bmlt.app\/wp-content\/uploads\/2018\/10\/default_nalogo.jpg\" alt=\"default_nalogo\" \/><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 15pt\"><strong>[service_body_1]<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 15pt\"><strong>MEETING LIST<\/strong><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 15pt\"><strong>[date]<\/strong>\u00a0<\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 14pt\"><b>24 HOUR HELPLINE<\/b><\/span><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 14pt\">NUMBER <br \/><\/span><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><strong>\u00a0<\/strong><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><b>https:\/\/na.org<\/b><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 12pt\"><strong>SUGGESTIONS FOR EVERYONE<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\"><strong>DON\\'T USE no matter what<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Ask your Higher Power to keep you clean<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Come early and stay late<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Get a home group<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Go to 90 meetings in 90 days<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Read NA literature daily<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Get and use a sponsor<\/strong><\/p>\r\n<p style=\"text-align: center\"><strong>Use the PHONE<\/strong><\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 12pt\"><strong>KEEP COMING BACK. IT WORKS<\/strong><\/span><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\">Meetings Weekly:\u00a0[meeting_count]<\/p>","front_line_height":"1.0","area_service_meetings_line_height":null,"content_font_size":6,"content_line_height":1.2,"front_page_font_size":10,"last_page_content":"","front_page_line_height":"1.0","last_page_line_height":1,"page_layout":null,"service_body_4":"Not Used","service_body_5":"Not Used","time_option":1,"remove_space":true,"helplines_font_size":null,"format_codes":null,"format_codes_font_size":null,"format_codes_line_height":null,"page_size":"letter","page_fold":"tri","meeting_sort":"day","cache_time":0,"include_zip":false,"page_orientation":"L","show_status":null,"use_custom_section":null,"custom_section_content":"<p>[new_column]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 7pt\"><strong><span style=\"color: #fff\">MEETING FORMAT LEGEND<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[format_codes_used_basic]<\/p>\r\n<p>&nbsp;<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 7pt\"><strong><span style=\"color: #fff\">HELPLINES<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\">Area 1<\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\">Number 1<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\">Area 2<\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\">Number 2<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\"><\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\"><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\"><\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\"><\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom: 1px solid #555\"><\/td>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #555555;text-align: right\"><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>&nbsp;<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 7pt\"><strong><span style=\"color: #fff\">SERVICE MEETINGS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p>[service_meetings]<\/p>\r\n<p>[new_column]<\/p>\r\n<table style=\"width: 100%\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 2pt;text-align: center;background-color: #000000\"><span style=\"font-size: 7pt\"><strong><span style=\"color: #fff\">PHONE NUMBERS<\/span><\/strong><\/span><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<table style=\"width: 100%\" cellspacing=\"10\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<tr>\r\n<td style=\"border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #111111\">\u00a0<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">\u00a0<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\"><span style=\"font-size: 13pt\">What is our message?<\/span><\/span><\/strong><\/p>\r\n<p>&nbsp;<\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">The message is that an addict, <\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">any addict,\u00a0<\/span><\/strong><strong><span style=\"font-size: 11pt\">can stop using drugs,<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">\u00a0<\/span><\/strong><strong><span style=\"font-size: 11pt\">lose the desire to use,<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">and find a new way to live.<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\">Our message is hope<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\"><strong><span style=\"font-size: 11pt\"> and the promise of freedom.\u00a0<\/span><\/strong><\/p>\r\n<p style=\"text-align: center\">\u00a0<\/p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 9pt\">Basic Text<\/span><em><span style=\"font-size: 9pt\">, page 65<\/span><\/em><\/p>\r\n<p>[new_column]<\/p>","custom_section_line_height":1,"area_service_meetings_font_size":null,"which_format_codes":null,"meeting_template":"","custom_section_font_size":6.5,"include_meeting_email":false,"bmlt_login_id":"","bmlt_login_password":"","last_page_font_size":10,"column_line":false,"used_format_1":"","used_format_2":null,"time_clock":"12","page_height":"200","column_gap":6,"margin_right":2,"margin_left":2,"margin_bottom":2,"margin_top":2,"meeting_template_content":"<table style=\"margin-top: 0px;width: 100%;padding: 0px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 11%;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\"><span style=\"font-family: courier\"><strong>time<\/strong><\/span><\/td>\r\n<td style=\"width: 2pt;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\">\u00a0<\/td>\r\n<td style=\"width: 8%;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\"><span style=\"font-family: courier\"><strong>hrsHR<\/strong><\/span><\/td>\r\n<td style=\"width: 4pt;border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #dddddd;vertical-align: top;text-align: center\">\u00a0<\/td>\r\n<td style=\"border-bottom: 1px solid #dddddd;vertical-align: top\"><strong>group<\/strong>, location,\u00a0info,\u00a0street, city, state, zip <strong>(formats)<\/strong>\u00a0<em>comments<\/em><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>","col_color":"#274fae","header_text_color":"#ffffff","header_background_color":"#000000","header_uppercase":1,"header_bold":1,"include_asm":false,"weekday_language":"both","sub_header_shown":1,"page_height_fix":0,"borough_suffix":"Borough","county_suffix":"County","neighborhood_suffix":"Neighborhood","city_suffix":"City","pagenumbering_font_size":9,"recurse_service_bodies":1,"extra_meetings_enabled":0,"include_protection":false,"base_font":"dejavusanscondensed","protection_password":"","custom_query":"","extra_meetings":["none"]}
  • bread/trunk/partials/_bmlt_server_setup.php

    r1919438 r1971708  
    4040                                    <?php $option_description = $area_name . " (" . $area_id . ") " . $area_parent_name . " (" . $area_parent . ")" ?></option>
    4141                                    <?php $is_data = explode(',',esc_html($this->options['service_body_1'])); ?>
    42                                     <?php if ( $area_id == $is_data[1] ) { ?>
     42                                    <?php if ( $is_data[0] != "Not Used" && $area_id == $is_data[1] ) { ?>
    4343                                        <option selected="selected" value="<?php echo $unique_area ?>"><?php echo $option_description ?></option>
    4444                                    <?php } else { ?>
     
    6464                                    <?php $option_description = $area_name . " (" . $area_id . ") " . $area_parent_name . " (" . $area_parent . ")" ?></option>
    6565                                    <?php $is_data = explode(',',esc_html($this->options['service_body_2'])); ?>
    66                                     <?php if ( $area_id == $is_data[1] ) { ?>
     66                                    <?php if ( $is_data[0] != "Not Used" && $area_id == $is_data[1] ) { ?>
    6767                                        <option selected="selected" value="<?php echo $unique_area ?>"><?php echo $option_description ?></option>
    6868                                    <?php } else { ?>
     
    8888                                    <?php $option_description = $area_name . " (" . $area_id . ") " . $area_parent_name . " (" . $area_parent . ")" ?></option>
    8989                                    <?php $is_data = explode(',',esc_html($this->options['service_body_3'])); ?>
    90                                     <?php if ( $area_id == $is_data[1] ) { ?>
     90                                    <?php if ( $is_data[0] != "Not Used" && $area_id == $is_data[1] ) { ?>
    9191                                        <option selected="selected" value="<?php echo $unique_area ?>"><?php echo $option_description ?></option>
    9292                                    <?php } else { ?>
     
    112112                                    <?php $option_description = $area_name . " (" . $area_id . ") " . $area_parent_name . " (" . $area_parent . ")" ?></option>
    113113                                    <?php $is_data = explode(',',esc_html($this->options['service_body_4'])); ?>
    114                                     <?php if ( $area_id == $is_data[1] ) { ?>
     114                                    <?php if ( $is_data[0] != "Not Used" && $area_id == $is_data[1] ) { ?>
    115115                                        <option selected="selected" value="<?php echo $unique_area ?>"><?php echo $option_description ?></option>
    116116                                    <?php } else { ?>
     
    136136                                    <?php $option_description = $area_name . " (" . $area_id . ") " . $area_parent_name . " (" . $area_parent . ")" ?></option>
    137137                                    <?php $is_data = explode(',',esc_html($this->options['service_body_5'])); ?>
    138                                     <?php if ( $area_id == $is_data[1] ) { ?>
     138                                    <?php if ( $is_data[0] != "Not Used" && $area_id == $is_data[1] ) { ?>
    139139                                        <option selected="selected" value="<?php echo $unique_area ?>"><?php echo $option_description ?></option>
    140140                                    <?php } else { ?>
     
    149149                    </ul>
    150150                    <div>
    151                         <input type="checkbox" name="recurse_service_bodies" value="1" <?php echo ($this->options['recurse_service_bodies'] == 1 ? 'checked' : '') ?> /></td> Recurse Service Bodies
     151                        <input type="checkbox" name="recurse_service_bodies" value="1" <?php echo ($this->options['recurse_service_bodies'] == 1 ? 'checked' : '') ?> /> Recurse Service Bodies
    152152                    </div>
    153153                </div>
     
    163163                <h3 class="hndle">Include Extra Meetings<span title='<p>Include Extra Meetings from Another Service Body.</p><p>All Meetings from your BMLT Server are shown in the list.</p><p>The Meetings you select will be merged into your meeting list.</p><p><em>Note: Be sure to select all meetings for each group.</em>' class="tooltip"></span></h3>
    164164                <div class="inside">
    165                     <?php if ($this_connected) { ?>
    166                         <?php $extra_meetings_array = $this->get_all_meetings(); ?>
    167                     <?php } ?>
    168165                    <p class="ctrl_key" style="display:none; color: #00AD00;">Hold CTRL Key down to select multiple meetings.</p>
    169                     <select class="chosen-select" style="width: 100%;" data-placeholder="Select Extra Meetings" id="extra_meetings" name="extra_meetings[]" multiple="multiple">
    170                     <?php if ($this_connected) { ?>                             
    171                         <?php foreach($extra_meetings_array as $extra_meeting){ ?>
    172                             <?php $extra_meeting_x = explode('|||',$extra_meeting); ?>
    173                             <?php $extra_meeting_id = $extra_meeting_x[3]; ?>                                   
    174                             <?php $extra_meeting_display = substr($extra_meeting_x[0], 0, 30) . ';' . $extra_meeting_x[1] . ';' . $extra_meeting_x[2]; ?>
     166                    <select class="chosen-select" style="width: 100%;" data-placeholder="<?php
     167                        if ($this->options['extra_meetings_enabled'] == 0) {
     168                            echo 'Not Enabled';
     169                        } elseif (!$this_connected) {
     170                            echo 'Not Connected';
     171                        } else {
     172                            echo 'Select Extra Meetings';
     173                        } ?>" id="extra_meetings" name="extra_meetings[]" multiple="multiple">
     174                    <?php
     175                        if ($this_connected && $this->options['extra_meetings_enabled'] == 1) {
     176                            $extra_meetings_array = $this->get_all_meetings();
     177                            foreach($extra_meetings_array as $extra_meeting) {
     178                                $extra_meeting_x = explode('|||',$extra_meeting);
     179                                $extra_meeting_id = $extra_meeting_x[3];
     180                                $extra_meeting_display = substr($extra_meeting_x[0], 0, 30) . ';' . $extra_meeting_x[1] . ';' . $extra_meeting_x[2]; ?>
    175181                            <option <?php echo ($this->options['extra_meetings'] != '' && in_array($extra_meeting_id, $this->options['extra_meetings']) ? 'selected="selected"' : '') ?> value="<?php echo $extra_meeting_id ?>"><?php echo esc_html($extra_meeting_display) ?></option>
    176                         <?php } ?>
    177                     <?php } else { ?>
    178                         <option selected="selected" value="none"><?php echo 'Not Connected - Can not get Extra Meetings'; ?></option>
    179                     <?php } ?>
     182                            <?php
     183                            }
     184                        } ?>
    180185                    </select>
    181                        
    182186                    <p>Hint: Type a group name, weekday or area to narrow down your choices.</p>
     187                    <div>
     188                        <input type="checkbox" name="extra_meetings_enabled" value="1" <?php echo ($this->options['extra_meetings_enabled'] == 1 ? 'checked' : '') ?> /> Extra Meetings Enabled
     189                    </div>
    183190                </div>
    184191               
  • bread/trunk/readme.txt

    r1966875 r1971708  
    55Requires at least: 4.0
    66Requires PHP: 5.6
    7 Tested up to: 4.9.8
    8 Stable tag: 1.7.7
     7Tested up to: 5.0.0
     8Stable tag: 1.8.0
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5454
    5555== Changelog ==
     56
     57= 1.8.0 =
     58* Toggle added for extra meetings, improves plugin page load time by not fetching all meetings unless the feature is required.
     59* Improved handling for page numbering margins [#46]
     60* Compatible with Wordpress 5.0.0. [#38]
     61* Added debugging capabilities
    5662
    5763= 1.7.7 =
Note: See TracChangeset for help on using the changeset viewer.