inherit
173855
0
Apr 23, 2024 9:59:44 GMT -8
Texas
I check in every once in a while...
869
November 2011
petermaggio
|
Post by Texas on Jul 17, 2013 12:17:14 GMT -8
Thanks RedBassett.. If proboards charged you every time you submitted a plugin update... That's a great idea!!! Hold on while I implement this. Ummm, you'd lose all my codes if that happened, cause I'm a penny pincher and in highschool so I don't really have that kind of money... I think you guys should pay us I mean we are semi-helping aren't we Peter Yea, I basically get it. Don't really know much PHP but most of that was fairly basic so I think I get it. Thanks
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jul 17, 2013 12:19:49 GMT -8
nope. no contract was ever established that anyone had to write plugins (that arent official proboards). everything submitted is of your own free will.
perhaps in the future, it will be possible to write a plugin that someone has to pay to download though...
|
|
inherit
173855
0
Apr 23, 2024 9:59:44 GMT -8
Texas
I check in every once in a while...
869
November 2011
petermaggio
|
Post by Texas on Jul 17, 2013 12:22:57 GMT -8
I new someone was going to say that
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jul 17, 2013 12:30:20 GMT -8
its how its always been man. Its also why no one could really "demand" a deadline on a v4 code or v5 plugin. they were free. you get what you pay for. if the current version has a small bug, you say "oops" and submit a new version. it was free. you dont need to apologize for volunteering your time to help someone.
things would change a bit if the plugin costed money. I dont think there would be any "I will write 20 plugins and then leave for a year" kinds of behavior. I think if you charge someone for a plugin, then your attention is demanded to support it. otherwise you should just prepare to give refunds.
|
|
inherit
173855
0
Apr 23, 2024 9:59:44 GMT -8
Texas
I check in every once in a while...
869
November 2011
petermaggio
|
Post by Texas on Jul 17, 2013 12:33:11 GMT -8
Yea, never really actually wanted to be paid though. If I was being paid for this I would end up spending too much time here and not enough in my actual life.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jul 17, 2013 12:58:07 GMT -8
I dont like my actual life very much. Im much cooler online.
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Jul 17, 2013 13:34:29 GMT -8
TexasHere is my class for creating the image if it still interests you... final class Plugin_Statistics_Image {
private $text; private $size; private $color; private $font; private $image; public function __construct($text = "", $size = 18, $color = "000000", $font = ""){ $this -> text = $text; $this -> size = $size; $this -> font = $font; $this -> color = $color; $this -> create_image(); } private function create_image(){ $image_width_height = $this -> create_bounding_box(); $this -> image = imagecreatetruecolor($image_width_height[0], $image_width_height[1]); ImageFill($this -> image, 0, 0, IMG_COLOR_TRANSPARENT); imagesavealpha($this -> image, true); imagealphablending($this -> image, false); $y = (($image_width_height[1] / 2) + ($this -> size / 2)); imagettftext($this -> image, $this -> size, 0, 5, $y, $this -> color, $this -> font, $this -> text); } private function create_bounding_box(){ $type_space = imagettfbbox($this -> size, 0, $this -> font, $this -> text); $image_width = abs($type_space[4] - $type_space[0]) + 10; $image_height = abs($type_space[5] - $type_space[1]) + 10; return array($image_width, $image_height); } public function save($file_name = null){ $name = (isset($file_name) && strlen($file_name))? $file_name : (time() . "_image"); $name .= ".png"; imagepng($this -> image, $name); } public function show(){ header("content-type: image/png"); imagepng($this -> image); imagedestroy($this -> image); exit(); }
} Example of how I am using it... include_once("classes/plugin_statistics.class.php"); include_once("classes/plugin_statistics_image.class.php");
$stats = new Plugin_Statistics("yootil_library");
$installs = $stats -> installs();
$text = $installs . " forum" . (($installs == 1)? "" : "s") . " have the Yootil Library installed"; $image = new Plugin_Statistics_Image($text, 20, "000000", "fonts/TravelingTypewriter.ttf"); $image -> save("yootil_stat_sig"); I would recommend setting up a cron to generate the png every X minutes. Mine is set to every 15 mins.
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Jul 24, 2013 13:38:14 GMT -8
Tim Camara would it possible to add where we get an email when somewhere rates/reviews our plugin/theme. I like to read the reviews, but I don't check the reviews every day. So an email saying that it's happened would be nice.
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Jul 24, 2013 14:25:41 GMT -8
Not at this time.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jul 24, 2013 21:15:02 GMT -8
what about a compromise? when you look at the list of plugins by author, it lists them in some unknown order. could they be sorted by date of last review and then last upload (if those are stored variables)?
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on Aug 1, 2013 13:56:30 GMT -8
The library is continuously being updated and I'm sure Tim has taken these suggestions into account, but I advise just creating a folder of bookmarks with library plugin pages within if you want to keep tabs on your reviews and scores, with a page watcher checking the pages if you want email updates when new reviews come in. That's what I do.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Aug 2, 2013 21:23:46 GMT -8
The library is continuously being updated and I'm sure Tim has taken these suggestions into account, but I advise just creating a folder of bookmarks with library plugin pages within if you want to keep tabs on your reviews and scores, with a page watcher checking the pages if you want email updates when new reviews come in. That's what I do. We know. but we still like to throw out ideas in case the devs latch on to it. I wasnt implying Tim had to drop anything for anything. tossing out new ideas only helps to make the end product that much appealing. as for page watch, Im giving that shot now too. I wasnt even aware these existed! thank you.
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on Aug 3, 2013 8:14:52 GMT -8
You guys come up with the best ideas - I just didn't want to seem like I was speaking on Tim's behalf.
|
|
Former Member
inherit
guest@proboards.com
192162
0
Nov 21, 2024 18:03:02 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Aug 20, 2013 18:02:24 GMT -8
I am woondering, I read that some plug-in boards will close soon. Why close a extremely crucial part of ProBoards?
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Aug 20, 2013 18:15:10 GMT -8
you misunderstood. the plugin subboard will be merged with the regular plugin board.
|
|