Changeset 2446231
- Timestamp:
- 12/26/2020 07:02:58 PM (5 years ago)
- Location:
- alleaktien-quantitativ
- Files:
-
- 6 edited
-
assets/banner-1544x500.png (modified) (previous)
-
assets/banner-1544x500.psd (modified) (previous)
-
assets/icon-256x256.png (modified) (previous)
-
assets/screenshot-1.png (modified) (previous)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/aaq-fundamentals-plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
alleaktien-quantitativ/trunk/README.txt
r2320476 r2446231 3 3 Tags: alleaktien, aktie, aktien, dividende, dividenden, finanzen, boerse 4 4 Requires at least: 4.6 5 Tested up to: 5. 45 Tested up to: 5.6 6 6 Stable tag: 4.6 7 7 Requires PHP: 5.2.4 8 8 License: Proprietary 9 9 10 AlleAktien Quantitativ | 10.000 Aktien, 20 Jahre Aktien-Kennzahlen, 100% kostenlos, und interaktiv10 AlleAktien Quantitativ | 20 Jahre Aktien-Kennzahlen, 2.000+ Aktien, 100% kostenlos 11 11 12 12 == Description == … … 19 19 * Interaktive Charts - einzigartiger Mehrwert für die Besucher 20 20 * 20 Jahre fundamentale Kennzahlen 21 * 10.000+ Aktien weltweit21 * 2.000+ Aktien weltweit 22 22 * 100% kostenlos 23 23 * 100% iPhone und iPad optimiert … … 44 44 7. **PayoutRatioChart**: Ausschüttungsquote (Dividenden / Gewinn pro Aktie) 45 45 8. **SharesOutstandingChart**: Anzahl ausstehender Aktien 46 9. **DebtChart**: Zinsdeckungsquote 47 10. **ValuationChart**: KGV, KUV, und EBIT-Multiple 46 9. **ValuationChart**: KGV, KUV, und EBIT-Multiple 48 47 49 48 -
alleaktien-quantitativ/trunk/aaq-fundamentals-plugin.php
r2323961 r2446231 3 3 Plugin Name: AlleAktien Quantitativ 4 4 Plugin URI: https://www.alleaktien.de/quantitativ/ 5 Description: AlleAktien Quantitativ | 10.000 Aktien, 20 Jahre Aktien-Kennzahlen, 100% kostenlos, interaktiv5 Description: AlleAktien Quantitativ | 20 Jahre Aktien-Kennzahlen, 2.000+ Aktien, 100% kostenlos 6 6 Author: AlleAktien 7 Version: 3. 2.37 Version: 3.3.0 8 8 Author URI: https://www.alleaktien.de/quantitativ/impressum 9 9 */ 10 10 11 // Add the shortcode11 // Add the shortcode 12 12 add_shortcode('aaq', 'aaq_fundamentals' ); 13 13 add_shortcode('aaq-fundamentals', 'aaq_fundamentals' ); 14 14 15 // Execute the shortcode with $atts arguments15 // Execute the shortcode with $atts arguments 16 16 function aaq_fundamentals($atts) { 17 17 … … 27 27 $chart = $aaq_atts['chart']; 28 28 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);'> 32 31 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> 33 32 </div>"; 34 33 35 $ output= "<iframe class='aaq-chart aaq-isin-$isin aaq-chart-$chart'34 $aaqIframe = "<iframe class='aaq-chart aaq-isin-$isin aaq-chart-$chart' 36 35 frameborder='0' 37 36 scrolling='no' 38 37 width='800' 39 38 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>"; 41 40 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>"; 43 42 } 44 43
Note: See TracChangeset
for help on using the changeset viewer.