Plugin Directory

Changeset 2386614


Ignore:
Timestamp:
09/22/2020 07:46:24 PM (5 years ago)
Author:
goliver79
Message:

version 2.0

Location:
hello-i-am-here
Files:
20 edited
1 copied

Legend:

Unmodified
Added
Removed
  • hello-i-am-here/tags/2.0/README.txt

    r2328301 r2386614  
    33Tags: video, conference, video conference, covid, covid19, jitsi
    44Requires at least: 4.6
    5 Tested up to: 5.4
     5Tested up to: 5.5.1
    66License: GPLv2 or later
    77License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1414
    1515Mantain communications in the actual COVID-19 crisis.
     16And maybe future COVID-XX :(
    1617
    1718How to:
     
    4142== Changelog ==
    4243
     44= 2.0 =
     45* Divi, Buddypress and others shortcode compatibility
     46* Removed page title
     47* Save last used Jitsi server. Good for people that have their own Jitsi servers
     48* Added translations
     49
    4350= 1.0 =
    4451* First version
  • hello-i-am-here/tags/2.0/admin/class-hello-here-admin.php

    r2328301 r2386614  
    125125        $position = 100;
    126126        add_menu_page(  $page_title, $menu_title, $capability, $slug, $callback, $icon, $position );
    127 
    128         $page_title = 'Instrucciones Banners';
    129         $menu_title = 'Instrucciones Banners';
    130         $capability = 'manage_options';
    131         $slug = 'logopedicum_instrucciones_banners';
    132         $callback = array( $this, 'logopedicum_instrucciones_banners_page_content' );
    133         $icon = 'dashicons-admin-plugins';
    134         $position = 100;
    135 //      add_submenu_page('meet_reunion', $page_title, $menu_title,$capability,$slug,$callback,$position);
    136127    }
    137128
     
    144135            'nonce'  => wp_create_nonce( 'my-ajax-nonce' ),
    145136            'slug'   => sanitize_title(get_bloginfo('name')),
    146             'action' => 'meetreunion_save_meetreunion'
     137            'action' => 'meetreunion_save_meetreunion',
     138            'domain' => get_option(HELLO_HERE_OPTIONS . 'domain'),
    147139        ) );
    148140        wp_enqueue_script( 'flatpickr-js', HELLO_HERE_PLUGIN_DIR_URL . 'js/flatpickr.js', array('jquery'), $this->version, true );
     
    184176        }
    185177
     178        // save domain for future uses
     179        update_option(HELLO_HERE_OPTIONS . 'domain', $data['domain']);
    186180        $message = $this->gmf->createGoMeet($data);
    187181        $response = [
  • hello-i-am-here/tags/2.0/admin/css/hello-here-admin.css

    r2328301 r2386614  
    1414    color: red;
    1515}
     16
     17#domainHelp code {
     18    cursor: pointer;
     19}
  • hello-i-am-here/tags/2.0/admin/js/hello-here-main.js

    r2328301 r2386614  
    2020    },
    2121    created() {
    22         this.domain = this.domain_default
     22        if(ajax_var.domain){
     23            this.domain = ajax_var.domain
     24        }else{
     25            this.domain = this.domain_default
     26        }
    2327        this.slug = ajax_var.slug
    2428        this.nonce = ajax_var.nonce
     
    8488                    vm.scheduled_date = ''
    8589                    vm.is_scheduled = false
    86                     vm.setDomainDefault()
     90                    // vm.setDomainDefault()
    8791                    vm.getGoMeets()
    8892                }
  • hello-i-am-here/tags/2.0/admin/partials/hello-here-admin-main.php

    r2328301 r2386614  
    44        <div v-if="is_loading"><?php _e('Loading', 'hello-here'); ?></div>
    55        <div v-else>
     6            <div class="meetreunion-section">
     7                <button class="btn btn-sm btn-info" type="button" data-toggle="collapse" data-target="#instructions-text" aria-expanded="false" aria-controls="collapseExample">
     8                    <?php _e('Instructions', 'hello-here'); ?>
     9                </button>
     10                <div class="collapse" id="instructions-text">
     11                    <br>
     12                    <ol>
     13                        <li><?php _e('Create a new Hello I am here! from this page', 'hello-here');?></li>
     14                        <li><?php _e('Insert shortcode <code>[show-meet]</code> in any page. Or create a new page and insert there.', 'hello-here'); ?></li>
     15                        <li><?php _e('Send your client/student/friend/... the meeting code and the page url', 'hello-here'); ?></li>
     16                        <li><?php _e('You and your client/studen/friend/... put the meeting code in the page', 'hello-here'); ?></li>
     17                    </ol>
     18                </div>
     19            </div>
    620            <div class="meetreunion-create meetreunion-section">
    721                <h5><?php _e('Create new meeting', 'hello-here'); ?></h5>
     
    1529                        <label for="domain"><?php _e('Domain', 'hello-here'); ?></label>
    1630                        <input v-model="domain" type="text" id="domain" name="domain">
    17                         <small id="domainHelp" class="form-text text-muted"><?php _e('If you are not using your own Jitsi servers, set it to ', 'hello-here');?> <code @click="setDomainDefault">meet.jit.si</code></small>
     31                        <small id="domainHelp" class="form-text text-muted">
     32                            <?php _e('If you are not using your own Jitsi servers, set it to ', 'hello-here');?>
     33                            <code @click="setDomainDefault">meet.jit.si (<?php _e('Click to set', 'hello-here'); ?>)</code>
     34                        </small>
    1835                    </div>
    1936                    <div class="form-group">
     
    4057                            <th><?php _e('Scheduled Date', "hello-here");?></th>
    4158                            <th><?php _e('Created at', "hello-here");?></th>
    42 <!--                            <th>--><?php //_e('Meeting Room', "hello-here");?><!--</th>-->
     59                            <th><?php _e('Domain', "hello-here");?></th>
    4360                        </tr>
    4461                    </thead>
     
    5976                           {{meet.created_at}}
    6077                       </td>
    61 <!--                       <td>-->
    62 <!--                           <small>{{meet.meeting_room}}</small>-->
    63 <!--                       </td>-->
     78                       <td>
     79                           <small><code>{{meet.domain}}</code></small>
     80                       </td>
    6481                    </tr>
    6582                </table>
  • hello-i-am-here/tags/2.0/hello-here.php

    r2328301 r2386614  
    44     * Plugin Name:     Hello I am here!
    55     * Description:     Create intsant meetings with your clients or potential clients.
    6      * Version:         1.0
     6     * Version:         2.0
    77     * Author:          [email protected]
    88     * Text Domain:     hello-here
     
    2121 * Rename this for your plugin and update it as you release new versions.
    2222 */
    23 define( 'HELLO_HERE_VERSION', '1.0' );
     23define( 'HELLO_HERE_VERSION', '2.0' );
    2424define ('HELLO_HERE_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ));
     25define( 'HELLO_HERE_OPTIONS', 'hello_i_am_here_' );
    2526
    2627/**
  • hello-i-am-here/tags/2.0/languages/hello-here-es_ES.po

    r2328301 r2386614  
    22msgstr ""
    33"Language: es_ES\n"
    4 "POT-Creation-Date: 2020-06-14 14:48+0000\n"
     4"POT-Creation-Date: 2020-09-21 11:54+0000\n"
    55"Plural-Forms: nplurals=2; plural=n != 1;\n"
    6 "PO-Revision-Date: 2020-06-14 14:48+0000\n"
     6"PO-Revision-Date: 2020-09-21 11:56+0000\n"
    77"X-Generator: Loco https://localise.biz/\n"
    88"Project-Id-Version: Hello I am here!\n"
    99"Report-Msgid-Bugs-To: \n"
    1010"Last-Translator: \n"
    11 "Language-Team: Español\n"
     11"Language-Team: Spanish (Spain)\n"
    1212"MIME-Version: 1.0\n"
    1313"Content-Type: text/plain; charset=UTF-8\n"
    1414"Content-Transfer-Encoding: 8bit\n"
    15 "X-Loco-Version: 2.4.0; wp-5.4.2"
     15"X-Loco-Version: 2.4.3; wp-5.5.1"
    1616
    1717#. Name of the plugin
    18 #: admin/class-hello-here-admin.php:152 public/class-hello-here-public.php:143
     18#: admin/class-hello-here-admin.php:144
    1919msgid "Hello I am here!"
    2020msgstr "Hello I am here!"
    2121
    22 #: admin/class-hello-here-admin.php:169 public/class-hello-here-public.php:156
     22#: admin/class-hello-here-admin.php:161 public/class-hello-here-public.php:157
    2323msgid ""
    2424"Hello I am here! not created for security reasons (WP \"nonce\"). Refresh "
     
    2828"¡Actualiza la página e inténtalo de nuevo!"
    2929
    30 #: admin/class-hello-here-admin.php:183
     30#: admin/class-hello-here-admin.php:175
    3131msgid "Meeting created at"
    3232msgstr "Reunión creada el"
    3333
    34 #: admin/class-hello-here-admin.php:189
     34#: admin/class-hello-here-admin.php:183
    3535msgid "Meeting created!"
    3636msgstr "¡Reunión creada!"
    3737
    38 #: admin/class-hello-here-admin.php:203
     38#: admin/class-hello-here-admin.php:197
    3939msgid "Can't get any meeting"
    4040msgstr "No existen reuniones"
     
    4949msgstr "Cargando"
    5050
    51 #: admin/partials/hello-here-admin-main.php:7
     51#: admin/partials/hello-here-admin-main.php:8
     52msgid "Instructions"
     53msgstr "Instrucciones"
     54
     55#: admin/partials/hello-here-admin-main.php:13
     56msgid "Create a new Hello I am here! from this page"
     57msgstr "Crea una nueva reunión desde esta página"
     58
     59#: admin/partials/hello-here-admin-main.php:14
     60msgid ""
     61"Insert shortcode <code>[show-meet]</code> in any page. Or create a new page "
     62"and insert there."
     63msgstr ""
     64"Inserta el shortcode <code>[show-meet]</code> en alguna página. O crea una "
     65"página nueva e insértalo ahí"
     66
     67#: admin/partials/hello-here-admin-main.php:15
     68msgid "Send your client/student/friend/... the meeting code and the page url"
     69msgstr ""
     70"Envía a tu cliente/estudiante/amigo/... el código de reunión y la dirección "
     71"de la página donde está el shortcode anterior"
     72
     73#: admin/partials/hello-here-admin-main.php:16
     74msgid "You and your client/studen/friend/... put the meeting code in the page"
     75msgstr "Tú y tu cliente/estudiante/amigo/... ponéis el código en la página"
     76
     77#: admin/partials/hello-here-admin-main.php:21
    5278msgid "Create new meeting"
    5379msgstr "Crear nueva reunión"
    5480
    55 #: admin/partials/hello-here-admin-main.php:10
    56 #: admin/partials/hello-here-admin-main.php:38
     81#: admin/partials/hello-here-admin-main.php:24
     82#: admin/partials/hello-here-admin-main.php:55
    5783msgid "Title"
    5884msgstr "Título"
    5985
    60 #: admin/partials/hello-here-admin-main.php:12
     86#: admin/partials/hello-here-admin-main.php:26
    6187msgid "Set meeting title (optional)."
    6288msgstr "Título de la reunión (opcional)."
    6389
    64 #: admin/partials/hello-here-admin-main.php:15
     90#: admin/partials/hello-here-admin-main.php:29
     91#: admin/partials/hello-here-admin-main.php:59
    6592msgid "Domain"
    6693msgstr "Dominio"
    6794
    68 #: admin/partials/hello-here-admin-main.php:17
     95#: admin/partials/hello-here-admin-main.php:32
    6996msgid "If you are not using your own Jitsi servers, set it to "
    7097msgstr "Si no estás usando tus propios servidores Jitsi, déjalo en"
    7198
    72 #: admin/partials/hello-here-admin-main.php:21
     99#: admin/partials/hello-here-admin-main.php:33
     100msgid "Click to set"
     101msgstr "Click para usar"
     102
     103#: admin/partials/hello-here-admin-main.php:38
    73104msgid "Schedule it"
    74105msgstr "Programar"
    75106
    76 #: admin/partials/hello-here-admin-main.php:24
     107#: admin/partials/hello-here-admin-main.php:41
    77108msgid "Date/Time"
    78109msgstr "Fecha/Hora"
    79110
    80 #: admin/partials/hello-here-admin-main.php:26
     111#: admin/partials/hello-here-admin-main.php:43
    81112msgid "Select date and time."
    82113msgstr "Selecciona fecha y hora"
    83114
    84 #: admin/partials/hello-here-admin-main.php:29
     115#: admin/partials/hello-here-admin-main.php:46
    85116msgid "Create meet!"
    86117msgstr "Crear reunión!"
    87118
    88 #: admin/partials/hello-here-admin-main.php:34
     119#: admin/partials/hello-here-admin-main.php:51
    89120msgid "Created meetings"
    90121msgstr "Reuniones creadas"
    91122
    92 #: admin/partials/hello-here-admin-main.php:39
     123#: admin/partials/hello-here-admin-main.php:56
    93124#: public/partials/hello-here-show-meet.php:11
    94125msgid "Code"
    95126msgstr "Código"
    96127
    97 #: admin/partials/hello-here-admin-main.php:40
     128#: admin/partials/hello-here-admin-main.php:57
    98129msgid "Scheduled Date"
    99130msgstr "Fecha programada"
    100131
    101 #: admin/partials/hello-here-admin-main.php:41
     132#: admin/partials/hello-here-admin-main.php:58
    102133msgid "Created at"
    103134msgstr "Creado el"
    104135
    105 #: admin/partials/hello-here-admin-main.php:49
     136#: admin/partials/hello-here-admin-main.php:66
    106137msgid "Delete"
    107138msgstr "Borrar"
  • hello-i-am-here/tags/2.0/languages/hello-here.pot

    r2328301 r2386614  
    33msgstr ""
    44"Language: \n"
    5 "POT-Creation-Date: 2020-06-14 14:48+0000\n"
     5"POT-Creation-Date: 2020-09-21 11:54+0000\n"
    66"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
     
    99
    1010#. Name of the plugin
    11 #: admin/class-hello-here-admin.php:152 public/class-hello-here-public.php:143
     11#: admin/class-hello-here-admin.php:144
    1212msgid "Hello I am here!"
    1313msgstr ""
    1414
    15 #: admin/class-hello-here-admin.php:169 public/class-hello-here-public.php:156
     15#: admin/class-hello-here-admin.php:161 public/class-hello-here-public.php:157
    1616msgid ""
    1717"Hello I am here! not created for security reasons (WP \"nonce\"). Refresh "
     
    1919msgstr ""
    2020
    21 #: admin/class-hello-here-admin.php:183
     21#: admin/class-hello-here-admin.php:175
    2222msgid "Meeting created at"
    2323msgstr ""
    2424
    25 #: admin/class-hello-here-admin.php:189
     25#: admin/class-hello-here-admin.php:183
    2626msgid "Meeting created!"
    2727msgstr ""
    2828
    29 #: admin/class-hello-here-admin.php:203
     29#: admin/class-hello-here-admin.php:197
    3030msgid "Can't get any meeting"
    3131msgstr ""
     
    4040msgstr ""
    4141
    42 #: admin/partials/hello-here-admin-main.php:7
     42#: admin/partials/hello-here-admin-main.php:8
     43msgid "Instructions"
     44msgstr ""
     45
     46#: admin/partials/hello-here-admin-main.php:13
     47msgid "Create a new Hello I am here! from this page"
     48msgstr ""
     49
     50#: admin/partials/hello-here-admin-main.php:14
     51msgid ""
     52"Insert shortcode <code>[show-meet]</code> in any page. Or create a new page "
     53"and insert there."
     54msgstr ""
     55
     56#: admin/partials/hello-here-admin-main.php:15
     57msgid "Send your client/student/friend/... the meeting code and the page url"
     58msgstr ""
     59
     60#: admin/partials/hello-here-admin-main.php:16
     61msgid "You and your client/studen/friend/... put the meeting code in the page"
     62msgstr ""
     63
     64#: admin/partials/hello-here-admin-main.php:21
    4365msgid "Create new meeting"
    4466msgstr ""
    4567
    46 #: admin/partials/hello-here-admin-main.php:10
    47 #: admin/partials/hello-here-admin-main.php:38
     68#: admin/partials/hello-here-admin-main.php:24
     69#: admin/partials/hello-here-admin-main.php:55
    4870msgid "Title"
    4971msgstr ""
    5072
    51 #: admin/partials/hello-here-admin-main.php:12
     73#: admin/partials/hello-here-admin-main.php:26
    5274msgid "Set meeting title (optional)."
    5375msgstr ""
    5476
    55 #: admin/partials/hello-here-admin-main.php:15
     77#: admin/partials/hello-here-admin-main.php:29
     78#: admin/partials/hello-here-admin-main.php:59
    5679msgid "Domain"
    5780msgstr ""
    5881
    59 #: admin/partials/hello-here-admin-main.php:17
     82#: admin/partials/hello-here-admin-main.php:32
    6083msgid "If you are not using your own Jitsi servers, set it to "
    6184msgstr ""
    6285
    63 #: admin/partials/hello-here-admin-main.php:21
     86#: admin/partials/hello-here-admin-main.php:33
     87msgid "Click to set"
     88msgstr ""
     89
     90#: admin/partials/hello-here-admin-main.php:38
    6491msgid "Schedule it"
    6592msgstr ""
    6693
    67 #: admin/partials/hello-here-admin-main.php:24
     94#: admin/partials/hello-here-admin-main.php:41
    6895msgid "Date/Time"
    6996msgstr ""
    7097
    71 #: admin/partials/hello-here-admin-main.php:26
     98#: admin/partials/hello-here-admin-main.php:43
    7299msgid "Select date and time."
    73100msgstr ""
    74101
    75 #: admin/partials/hello-here-admin-main.php:29
     102#: admin/partials/hello-here-admin-main.php:46
    76103msgid "Create meet!"
    77104msgstr ""
    78105
    79 #: admin/partials/hello-here-admin-main.php:34
     106#: admin/partials/hello-here-admin-main.php:51
    80107msgid "Created meetings"
    81108msgstr ""
    82109
    83 #: admin/partials/hello-here-admin-main.php:39
     110#: admin/partials/hello-here-admin-main.php:56
    84111#: public/partials/hello-here-show-meet.php:11
    85112msgid "Code"
    86113msgstr ""
    87114
    88 #: admin/partials/hello-here-admin-main.php:40
     115#: admin/partials/hello-here-admin-main.php:57
    89116msgid "Scheduled Date"
    90117msgstr ""
    91118
    92 #: admin/partials/hello-here-admin-main.php:41
     119#: admin/partials/hello-here-admin-main.php:58
    93120msgid "Created at"
    94121msgstr ""
    95122
    96 #: admin/partials/hello-here-admin-main.php:49
     123#: admin/partials/hello-here-admin-main.php:66
    97124msgid "Delete"
    98125msgstr ""
  • hello-i-am-here/tags/2.0/public/class-hello-here-public.php

    r2328301 r2386614  
    140140        ) );
    141141    ?>
     142        <?php ob_start(); ?>
    142143        <div class="wrap">
    143             <h2><?php _e('Hello I am here!', 'hello-here'); ?></h2>
    144144            <?php include( 'partials/hello-here-show-meet.php' ); ?>
    145145        </div>
     146        <?php return ob_get_clean(); ?>
    146147    <?php
    147148    }
  • hello-i-am-here/trunk/README.txt

    r2328301 r2386614  
    33Tags: video, conference, video conference, covid, covid19, jitsi
    44Requires at least: 4.6
    5 Tested up to: 5.4
     5Tested up to: 5.5.1
    66License: GPLv2 or later
    77License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1414
    1515Mantain communications in the actual COVID-19 crisis.
     16And maybe future COVID-XX :(
    1617
    1718How to:
     
    4142== Changelog ==
    4243
     44= 2.0 =
     45* Divi, Buddypress and others shortcode compatibility
     46* Removed page title
     47* Save last used Jitsi server. Good for people that have their own Jitsi servers
     48* Added translations
     49
    4350= 1.0 =
    4451* First version
  • hello-i-am-here/trunk/admin/class-hello-here-admin.php

    r2328301 r2386614  
    125125        $position = 100;
    126126        add_menu_page(  $page_title, $menu_title, $capability, $slug, $callback, $icon, $position );
    127 
    128         $page_title = 'Instrucciones Banners';
    129         $menu_title = 'Instrucciones Banners';
    130         $capability = 'manage_options';
    131         $slug = 'logopedicum_instrucciones_banners';
    132         $callback = array( $this, 'logopedicum_instrucciones_banners_page_content' );
    133         $icon = 'dashicons-admin-plugins';
    134         $position = 100;
    135 //      add_submenu_page('meet_reunion', $page_title, $menu_title,$capability,$slug,$callback,$position);
    136127    }
    137128
     
    144135            'nonce'  => wp_create_nonce( 'my-ajax-nonce' ),
    145136            'slug'   => sanitize_title(get_bloginfo('name')),
    146             'action' => 'meetreunion_save_meetreunion'
     137            'action' => 'meetreunion_save_meetreunion',
     138            'domain' => get_option(HELLO_HERE_OPTIONS . 'domain'),
    147139        ) );
    148140        wp_enqueue_script( 'flatpickr-js', HELLO_HERE_PLUGIN_DIR_URL . 'js/flatpickr.js', array('jquery'), $this->version, true );
     
    184176        }
    185177
     178        // save domain for future uses
     179        update_option(HELLO_HERE_OPTIONS . 'domain', $data['domain']);
    186180        $message = $this->gmf->createGoMeet($data);
    187181        $response = [
  • hello-i-am-here/trunk/admin/css/hello-here-admin.css

    r2328301 r2386614  
    1414    color: red;
    1515}
     16
     17#domainHelp code {
     18    cursor: pointer;
     19}
  • hello-i-am-here/trunk/admin/js/hello-here-main.js

    r2328301 r2386614  
    2020    },
    2121    created() {
    22         this.domain = this.domain_default
     22        if(ajax_var.domain){
     23            this.domain = ajax_var.domain
     24        }else{
     25            this.domain = this.domain_default
     26        }
    2327        this.slug = ajax_var.slug
    2428        this.nonce = ajax_var.nonce
     
    8488                    vm.scheduled_date = ''
    8589                    vm.is_scheduled = false
    86                     vm.setDomainDefault()
     90                    // vm.setDomainDefault()
    8791                    vm.getGoMeets()
    8892                }
  • hello-i-am-here/trunk/admin/partials/hello-here-admin-main.php

    r2328301 r2386614  
    44        <div v-if="is_loading"><?php _e('Loading', 'hello-here'); ?></div>
    55        <div v-else>
     6            <div class="meetreunion-section">
     7                <button class="btn btn-sm btn-info" type="button" data-toggle="collapse" data-target="#instructions-text" aria-expanded="false" aria-controls="collapseExample">
     8                    <?php _e('Instructions', 'hello-here'); ?>
     9                </button>
     10                <div class="collapse" id="instructions-text">
     11                    <br>
     12                    <ol>
     13                        <li><?php _e('Create a new Hello I am here! from this page', 'hello-here');?></li>
     14                        <li><?php _e('Insert shortcode <code>[show-meet]</code> in any page. Or create a new page and insert there.', 'hello-here'); ?></li>
     15                        <li><?php _e('Send your client/student/friend/... the meeting code and the page url', 'hello-here'); ?></li>
     16                        <li><?php _e('You and your client/studen/friend/... put the meeting code in the page', 'hello-here'); ?></li>
     17                    </ol>
     18                </div>
     19            </div>
    620            <div class="meetreunion-create meetreunion-section">
    721                <h5><?php _e('Create new meeting', 'hello-here'); ?></h5>
     
    1529                        <label for="domain"><?php _e('Domain', 'hello-here'); ?></label>
    1630                        <input v-model="domain" type="text" id="domain" name="domain">
    17                         <small id="domainHelp" class="form-text text-muted"><?php _e('If you are not using your own Jitsi servers, set it to ', 'hello-here');?> <code @click="setDomainDefault">meet.jit.si</code></small>
     31                        <small id="domainHelp" class="form-text text-muted">
     32                            <?php _e('If you are not using your own Jitsi servers, set it to ', 'hello-here');?>
     33                            <code @click="setDomainDefault">meet.jit.si (<?php _e('Click to set', 'hello-here'); ?>)</code>
     34                        </small>
    1835                    </div>
    1936                    <div class="form-group">
     
    4057                            <th><?php _e('Scheduled Date', "hello-here");?></th>
    4158                            <th><?php _e('Created at', "hello-here");?></th>
    42 <!--                            <th>--><?php //_e('Meeting Room', "hello-here");?><!--</th>-->
     59                            <th><?php _e('Domain', "hello-here");?></th>
    4360                        </tr>
    4461                    </thead>
     
    5976                           {{meet.created_at}}
    6077                       </td>
    61 <!--                       <td>-->
    62 <!--                           <small>{{meet.meeting_room}}</small>-->
    63 <!--                       </td>-->
     78                       <td>
     79                           <small><code>{{meet.domain}}</code></small>
     80                       </td>
    6481                    </tr>
    6582                </table>
  • hello-i-am-here/trunk/hello-here.php

    r2328301 r2386614  
    44     * Plugin Name:     Hello I am here!
    55     * Description:     Create intsant meetings with your clients or potential clients.
    6      * Version:         1.0
     6     * Version:         2.0
    77     * Author:          [email protected]
    88     * Text Domain:     hello-here
     
    2121 * Rename this for your plugin and update it as you release new versions.
    2222 */
    23 define( 'HELLO_HERE_VERSION', '1.0' );
     23define( 'HELLO_HERE_VERSION', '2.0' );
    2424define ('HELLO_HERE_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ));
     25define( 'HELLO_HERE_OPTIONS', 'hello_i_am_here_' );
    2526
    2627/**
  • hello-i-am-here/trunk/languages/hello-here-es_ES.po

    r2328301 r2386614  
    22msgstr ""
    33"Language: es_ES\n"
    4 "POT-Creation-Date: 2020-06-14 14:48+0000\n"
     4"POT-Creation-Date: 2020-09-21 11:54+0000\n"
    55"Plural-Forms: nplurals=2; plural=n != 1;\n"
    6 "PO-Revision-Date: 2020-06-14 14:48+0000\n"
     6"PO-Revision-Date: 2020-09-21 11:56+0000\n"
    77"X-Generator: Loco https://localise.biz/\n"
    88"Project-Id-Version: Hello I am here!\n"
    99"Report-Msgid-Bugs-To: \n"
    1010"Last-Translator: \n"
    11 "Language-Team: Español\n"
     11"Language-Team: Spanish (Spain)\n"
    1212"MIME-Version: 1.0\n"
    1313"Content-Type: text/plain; charset=UTF-8\n"
    1414"Content-Transfer-Encoding: 8bit\n"
    15 "X-Loco-Version: 2.4.0; wp-5.4.2"
     15"X-Loco-Version: 2.4.3; wp-5.5.1"
    1616
    1717#. Name of the plugin
    18 #: admin/class-hello-here-admin.php:152 public/class-hello-here-public.php:143
     18#: admin/class-hello-here-admin.php:144
    1919msgid "Hello I am here!"
    2020msgstr "Hello I am here!"
    2121
    22 #: admin/class-hello-here-admin.php:169 public/class-hello-here-public.php:156
     22#: admin/class-hello-here-admin.php:161 public/class-hello-here-public.php:157
    2323msgid ""
    2424"Hello I am here! not created for security reasons (WP \"nonce\"). Refresh "
     
    2828"¡Actualiza la página e inténtalo de nuevo!"
    2929
    30 #: admin/class-hello-here-admin.php:183
     30#: admin/class-hello-here-admin.php:175
    3131msgid "Meeting created at"
    3232msgstr "Reunión creada el"
    3333
    34 #: admin/class-hello-here-admin.php:189
     34#: admin/class-hello-here-admin.php:183
    3535msgid "Meeting created!"
    3636msgstr "¡Reunión creada!"
    3737
    38 #: admin/class-hello-here-admin.php:203
     38#: admin/class-hello-here-admin.php:197
    3939msgid "Can't get any meeting"
    4040msgstr "No existen reuniones"
     
    4949msgstr "Cargando"
    5050
    51 #: admin/partials/hello-here-admin-main.php:7
     51#: admin/partials/hello-here-admin-main.php:8
     52msgid "Instructions"
     53msgstr "Instrucciones"
     54
     55#: admin/partials/hello-here-admin-main.php:13
     56msgid "Create a new Hello I am here! from this page"
     57msgstr "Crea una nueva reunión desde esta página"
     58
     59#: admin/partials/hello-here-admin-main.php:14
     60msgid ""
     61"Insert shortcode <code>[show-meet]</code> in any page. Or create a new page "
     62"and insert there."
     63msgstr ""
     64"Inserta el shortcode <code>[show-meet]</code> en alguna página. O crea una "
     65"página nueva e insértalo ahí"
     66
     67#: admin/partials/hello-here-admin-main.php:15
     68msgid "Send your client/student/friend/... the meeting code and the page url"
     69msgstr ""
     70"Envía a tu cliente/estudiante/amigo/... el código de reunión y la dirección "
     71"de la página donde está el shortcode anterior"
     72
     73#: admin/partials/hello-here-admin-main.php:16
     74msgid "You and your client/studen/friend/... put the meeting code in the page"
     75msgstr "Tú y tu cliente/estudiante/amigo/... ponéis el código en la página"
     76
     77#: admin/partials/hello-here-admin-main.php:21
    5278msgid "Create new meeting"
    5379msgstr "Crear nueva reunión"
    5480
    55 #: admin/partials/hello-here-admin-main.php:10
    56 #: admin/partials/hello-here-admin-main.php:38
     81#: admin/partials/hello-here-admin-main.php:24
     82#: admin/partials/hello-here-admin-main.php:55
    5783msgid "Title"
    5884msgstr "Título"
    5985
    60 #: admin/partials/hello-here-admin-main.php:12
     86#: admin/partials/hello-here-admin-main.php:26
    6187msgid "Set meeting title (optional)."
    6288msgstr "Título de la reunión (opcional)."
    6389
    64 #: admin/partials/hello-here-admin-main.php:15
     90#: admin/partials/hello-here-admin-main.php:29
     91#: admin/partials/hello-here-admin-main.php:59
    6592msgid "Domain"
    6693msgstr "Dominio"
    6794
    68 #: admin/partials/hello-here-admin-main.php:17
     95#: admin/partials/hello-here-admin-main.php:32
    6996msgid "If you are not using your own Jitsi servers, set it to "
    7097msgstr "Si no estás usando tus propios servidores Jitsi, déjalo en"
    7198
    72 #: admin/partials/hello-here-admin-main.php:21
     99#: admin/partials/hello-here-admin-main.php:33
     100msgid "Click to set"
     101msgstr "Click para usar"
     102
     103#: admin/partials/hello-here-admin-main.php:38
    73104msgid "Schedule it"
    74105msgstr "Programar"
    75106
    76 #: admin/partials/hello-here-admin-main.php:24
     107#: admin/partials/hello-here-admin-main.php:41
    77108msgid "Date/Time"
    78109msgstr "Fecha/Hora"
    79110
    80 #: admin/partials/hello-here-admin-main.php:26
     111#: admin/partials/hello-here-admin-main.php:43
    81112msgid "Select date and time."
    82113msgstr "Selecciona fecha y hora"
    83114
    84 #: admin/partials/hello-here-admin-main.php:29
     115#: admin/partials/hello-here-admin-main.php:46
    85116msgid "Create meet!"
    86117msgstr "Crear reunión!"
    87118
    88 #: admin/partials/hello-here-admin-main.php:34
     119#: admin/partials/hello-here-admin-main.php:51
    89120msgid "Created meetings"
    90121msgstr "Reuniones creadas"
    91122
    92 #: admin/partials/hello-here-admin-main.php:39
     123#: admin/partials/hello-here-admin-main.php:56
    93124#: public/partials/hello-here-show-meet.php:11
    94125msgid "Code"
    95126msgstr "Código"
    96127
    97 #: admin/partials/hello-here-admin-main.php:40
     128#: admin/partials/hello-here-admin-main.php:57
    98129msgid "Scheduled Date"
    99130msgstr "Fecha programada"
    100131
    101 #: admin/partials/hello-here-admin-main.php:41
     132#: admin/partials/hello-here-admin-main.php:58
    102133msgid "Created at"
    103134msgstr "Creado el"
    104135
    105 #: admin/partials/hello-here-admin-main.php:49
     136#: admin/partials/hello-here-admin-main.php:66
    106137msgid "Delete"
    107138msgstr "Borrar"
  • hello-i-am-here/trunk/languages/hello-here.pot

    r2328301 r2386614  
    33msgstr ""
    44"Language: \n"
    5 "POT-Creation-Date: 2020-06-14 14:48+0000\n"
     5"POT-Creation-Date: 2020-09-21 11:54+0000\n"
    66"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
     
    99
    1010#. Name of the plugin
    11 #: admin/class-hello-here-admin.php:152 public/class-hello-here-public.php:143
     11#: admin/class-hello-here-admin.php:144
    1212msgid "Hello I am here!"
    1313msgstr ""
    1414
    15 #: admin/class-hello-here-admin.php:169 public/class-hello-here-public.php:156
     15#: admin/class-hello-here-admin.php:161 public/class-hello-here-public.php:157
    1616msgid ""
    1717"Hello I am here! not created for security reasons (WP \"nonce\"). Refresh "
     
    1919msgstr ""
    2020
    21 #: admin/class-hello-here-admin.php:183
     21#: admin/class-hello-here-admin.php:175
    2222msgid "Meeting created at"
    2323msgstr ""
    2424
    25 #: admin/class-hello-here-admin.php:189
     25#: admin/class-hello-here-admin.php:183
    2626msgid "Meeting created!"
    2727msgstr ""
    2828
    29 #: admin/class-hello-here-admin.php:203
     29#: admin/class-hello-here-admin.php:197
    3030msgid "Can't get any meeting"
    3131msgstr ""
     
    4040msgstr ""
    4141
    42 #: admin/partials/hello-here-admin-main.php:7
     42#: admin/partials/hello-here-admin-main.php:8
     43msgid "Instructions"
     44msgstr ""
     45
     46#: admin/partials/hello-here-admin-main.php:13
     47msgid "Create a new Hello I am here! from this page"
     48msgstr ""
     49
     50#: admin/partials/hello-here-admin-main.php:14
     51msgid ""
     52"Insert shortcode <code>[show-meet]</code> in any page. Or create a new page "
     53"and insert there."
     54msgstr ""
     55
     56#: admin/partials/hello-here-admin-main.php:15
     57msgid "Send your client/student/friend/... the meeting code and the page url"
     58msgstr ""
     59
     60#: admin/partials/hello-here-admin-main.php:16
     61msgid "You and your client/studen/friend/... put the meeting code in the page"
     62msgstr ""
     63
     64#: admin/partials/hello-here-admin-main.php:21
    4365msgid "Create new meeting"
    4466msgstr ""
    4567
    46 #: admin/partials/hello-here-admin-main.php:10
    47 #: admin/partials/hello-here-admin-main.php:38
     68#: admin/partials/hello-here-admin-main.php:24
     69#: admin/partials/hello-here-admin-main.php:55
    4870msgid "Title"
    4971msgstr ""
    5072
    51 #: admin/partials/hello-here-admin-main.php:12
     73#: admin/partials/hello-here-admin-main.php:26
    5274msgid "Set meeting title (optional)."
    5375msgstr ""
    5476
    55 #: admin/partials/hello-here-admin-main.php:15
     77#: admin/partials/hello-here-admin-main.php:29
     78#: admin/partials/hello-here-admin-main.php:59
    5679msgid "Domain"
    5780msgstr ""
    5881
    59 #: admin/partials/hello-here-admin-main.php:17
     82#: admin/partials/hello-here-admin-main.php:32
    6083msgid "If you are not using your own Jitsi servers, set it to "
    6184msgstr ""
    6285
    63 #: admin/partials/hello-here-admin-main.php:21
     86#: admin/partials/hello-here-admin-main.php:33
     87msgid "Click to set"
     88msgstr ""
     89
     90#: admin/partials/hello-here-admin-main.php:38
    6491msgid "Schedule it"
    6592msgstr ""
    6693
    67 #: admin/partials/hello-here-admin-main.php:24
     94#: admin/partials/hello-here-admin-main.php:41
    6895msgid "Date/Time"
    6996msgstr ""
    7097
    71 #: admin/partials/hello-here-admin-main.php:26
     98#: admin/partials/hello-here-admin-main.php:43
    7299msgid "Select date and time."
    73100msgstr ""
    74101
    75 #: admin/partials/hello-here-admin-main.php:29
     102#: admin/partials/hello-here-admin-main.php:46
    76103msgid "Create meet!"
    77104msgstr ""
    78105
    79 #: admin/partials/hello-here-admin-main.php:34
     106#: admin/partials/hello-here-admin-main.php:51
    80107msgid "Created meetings"
    81108msgstr ""
    82109
    83 #: admin/partials/hello-here-admin-main.php:39
     110#: admin/partials/hello-here-admin-main.php:56
    84111#: public/partials/hello-here-show-meet.php:11
    85112msgid "Code"
    86113msgstr ""
    87114
    88 #: admin/partials/hello-here-admin-main.php:40
     115#: admin/partials/hello-here-admin-main.php:57
    89116msgid "Scheduled Date"
    90117msgstr ""
    91118
    92 #: admin/partials/hello-here-admin-main.php:41
     119#: admin/partials/hello-here-admin-main.php:58
    93120msgid "Created at"
    94121msgstr ""
    95122
    96 #: admin/partials/hello-here-admin-main.php:49
     123#: admin/partials/hello-here-admin-main.php:66
    97124msgid "Delete"
    98125msgstr ""
  • hello-i-am-here/trunk/public/class-hello-here-public.php

    r2328301 r2386614  
    140140        ) );
    141141    ?>
     142        <?php ob_start(); ?>
    142143        <div class="wrap">
    143             <h2><?php _e('Hello I am here!', 'hello-here'); ?></h2>
    144144            <?php include( 'partials/hello-here-show-meet.php' ); ?>
    145145        </div>
     146        <?php return ob_get_clean(); ?>
    146147    <?php
    147148    }
Note: See TracChangeset for help on using the changeset viewer.