Plugin Directory

Changeset 2446231


Ignore:
Timestamp:
12/26/2020 07:02:58 PM (5 years ago)
Author:
michaellow
Message:

feat: made ready for aaq2021

Location:
alleaktien-quantitativ
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • alleaktien-quantitativ/trunk/README.txt

    r2320476 r2446231  
    33Tags: alleaktien, aktie, aktien, dividende, dividenden, finanzen, boerse
    44Requires at least: 4.6
    5 Tested up to: 5.4
     5Tested up to: 5.6
    66Stable tag: 4.6
    77Requires PHP: 5.2.4
    88License: Proprietary
    99
    10 AlleAktien Quantitativ | 10.000 Aktien, 20 Jahre Aktien-Kennzahlen, 100% kostenlos, und interaktiv
     10AlleAktien Quantitativ | 20 Jahre Aktien-Kennzahlen, 2.000+ Aktien, 100% kostenlos
    1111
    1212== Description ==
     
    1919* Interaktive Charts - einzigartiger Mehrwert für die Besucher
    2020* 20 Jahre fundamentale Kennzahlen
    21 * 10.000+ Aktien weltweit
     21* 2.000+ Aktien weltweit
    2222* 100% kostenlos
    2323* 100% iPhone und iPad optimiert
     
    44447. **PayoutRatioChart**: Ausschüttungsquote (Dividenden / Gewinn pro Aktie)
    45458. **SharesOutstandingChart**: Anzahl ausstehender Aktien
    46 9. **DebtChart**: Zinsdeckungsquote
    47 10. **ValuationChart**: KGV, KUV, und EBIT-Multiple
     469. **ValuationChart**: KGV, KUV, und EBIT-Multiple
    4847
    4948
  • alleaktien-quantitativ/trunk/aaq-fundamentals-plugin.php

    r2323961 r2446231  
    33    Plugin Name: AlleAktien Quantitativ
    44    Plugin URI: https://www.alleaktien.de/quantitativ/
    5     Description: AlleAktien Quantitativ | 10.000 Aktien, 20 Jahre Aktien-Kennzahlen, 100% kostenlos, interaktiv
     5    Description: AlleAktien Quantitativ | 20 Jahre Aktien-Kennzahlen, 2.000+ Aktien, 100% kostenlos
    66    Author: AlleAktien
    7     Version: 3.2.3
     7    Version: 3.3.0
    88    Author URI: https://www.alleaktien.de/quantitativ/impressum
    99*/
    1010
    11 //Add the shortcode
     11// Add the shortcode
    1212add_shortcode('aaq', 'aaq_fundamentals' );
    1313add_shortcode('aaq-fundamentals', 'aaq_fundamentals' );
    1414
    15 //Execute the shortcode with $atts arguments
     15// Execute the shortcode with $atts arguments
    1616function aaq_fundamentals($atts) {
    1717
     
    2727    $chart = $aaq_atts['chart'];
    2828   
    29     //make main html output
    30    
    31     $source = "<div class='aaq-source' style='text-align: right;font-size:initial;color:rgb(160, 174, 192);'>
     29    // make main html output
     30    $sourceLabel = "<div class='aaq-source' style='text-align: right;font-size:initial;color:rgb(160, 174, 192);'>
    3231        Quelle: <a style='color: rgb(160, 174, 192); text-decoration: underline;' href='https://www.alleaktien.de/quantitativ/$isin' target='_blank' rel='noopener' title='AlleAktien Quantitativ: historische Aktien-Kennzahlen, Aktien finden, Aktienanalysen, Beste Aktien'>AlleAktien Quantitativ</a>
    3332    </div>";
    3433
    35     $output = "<iframe class='aaq-chart aaq-isin-$isin aaq-chart-$chart'
     34    $aaqIframe = "<iframe class='aaq-chart aaq-isin-$isin aaq-chart-$chart'
    3635    frameborder='0'
    3736    scrolling='no'
    3837    width='800'
    3938    height='400'
    40     src='https://www.alleaktien.de/quantitativ/api/$isin/$chart'></iframe>";
     39    src='https://www.alleaktien.de/quantitativ/chart-api/$isin/$chart'></iframe>";
    4140   
    42     return "<div class='aaq-plugin' style='width:inherit;margin:auto'>" . $source . $output . "</div>";
     41    return "<div class='aaq-plugin' style='width:inherit;margin:auto'>" . $sourceLabel . $aaqIframe . "</div>";
    4342}   
    4443
Note: See TracChangeset for help on using the changeset viewer.