File indexing completed on 2024-04-28 05:56:03

0001 <?php
0002 /**
0003  *  ocs-webserver
0004  *
0005  *  Copyright 2016 by pling GmbH.
0006  *
0007  *    This file is part of ocs-webserver.
0008  *
0009  *    This program is free software: you can redistribute it and/or modify
0010  *    it under the terms of the GNU Affero General Public License as
0011  *    published by the Free Software Foundation, either version 3 of the
0012  *    License, or (at your option) any later version.
0013  *
0014  *    This program is distributed in the hope that it will be useful,
0015  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
0016  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0017  *    GNU Affero General Public License for more details.
0018  *
0019  *    You should have received a copy of the GNU Affero General Public License
0020  *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
0021  **/
0022 
0023 
0024 ?>
0025 
0026 <main id="_plings-page">
0027      <section class="head-wrap">
0028       <section class="wrapper">
0029       <p><h3>FAQ</h3>
0030         <p>Contributors to any part of the Opendesktop platform get a compensation each time their contribution/product is downloaded. Download-clicks are converted into monetary value based on the following terms:</p>
0031         <p></p>
0032         <p>Payout = Number of Downloads * Pling-Factor * 1 $-cent,</p>
0033         <p></p>
0034         <p>where each product category is valued by a so-called “Pling-Factor”.</p>
0035         <p></p>
0036         <p>You can see the value of each category in the list below.</p>
0037         <p></p>
0038         <p>Based on the actual amount of content and downloads, we may adjust these values at any time, even during a month.</p>
0039         <p></p>
0040         <p>Payouts are voluntary and we reserve the right to cancel any single product or payout or all payouts without any reason.</p>
0041         <p></p>
0042         <!--<p>We are currently evaluating using Bitcoin as a payout method in the future.-->
0043         <p>Any product to be paid out requires a libre license. Certain products also require a link to the online source repository (see list below), like e.g. cgit.kde.org or github. This is different from just providing the source-code, but to provide an easy setup for collaboration and transparent changes.</p>
0044         <p></p>
0045         <p>In order to receive any payouts, you need to provide a valid PayPal option under your OpenDesktop account settings.</p>
0046         <p></p>
0047         <p>We hope this form of compensation values those who put time and effort into creating free and open source software & content and leads to an ever increase of quality and sustainability.        </p>
0048 
0049 
0050 
0051     </section>
0052     </section>
0053     <section class="body-wrap" id="cat-list">
0054         <section class="wrapper">
0055             <div class="row title">
0056           <div class="col-md-6">
0057                     <span class="label lable-default left">
0058                             Category
0059                     </span>
0060                 </div>
0061                 <div class="col-md-3">
0062                     <span class="label lable-default right" >
0063                             Pling Factor
0064                     </span>
0065                 </div>
0066                 <div class="col-md-3">
0067                     <span class="label lable-default right" >
0068                             Source-Link required
0069                     </span>
0070 
0071           </div>
0072             </div>
0073             <?php
0074             $categories = $this->listCategories();
0075             foreach ($categories as $key => $element) {
0076                 $depth = (int)$element['depth'];
0077                 $cls = 'depth'.$depth;
0078                 $countSubCat = (int)$element['rgt'] - (int)$element['lft'] - 1;
0079                 $plingFactor='';
0080                 $sourceRequired='';
0081                 if($countSubCat==0){
0082                   $plingFactor = '<span class="right factor">'. $element['dl_pling_factor'].'</span>';
0083                         $sourceRequired = ($element['source_required']?'Yes':'No');
0084                 }
0085                 /*
0086                 echo '<div class="row">';
0087                 echo '<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 '.$cls.'">' . $this->translate($element['title'])
0088                       . $plingFactor.'<span class="right factor">' . $element['source_required'].'</span></div>';
0089                 echo '</div>';
0090                 */
0091                 echo '<div class="row" style="padding-left: 15px; padding-right: 15px;">';
0092                 echo '    <div class="col-md-6 cell-default '.$cls.'">'. $this->translate($element['title']).'</div>';
0093                 echo '    <div class="col-md-3 text-right cell-default">'.$plingFactor.'</div>';
0094                 echo '    <div class="col-md-3 text-right cell-default">'.$sourceRequired.'</div>';
0095                 echo '</div>   ';
0096 
0097             }
0098             ?>
0099 
0100         </section>
0101     </section>
0102 </main>